Can't change the URLprotocol parametres. Topic is solved

How-to's and other software related queries

Moderator: abstr

Post Reply
User avatar
BruciK
Posts: 17
Joined: Tue Feb 20, 2024 2:40 pm

Can't change the URLprotocol parametres.

Post by BruciK » Thu May 02, 2024 7:48 am

First of all let's pop the champagne 🍾 for the new release 8.3.0 stable

So, the dark mode is currently only available trough -dm argument.

not a problem so far to open directly my .tdl files in darkmode I changed the value of

HKLM\SOFTWARE\Classes\tdl_Tasklist\shell\open\command default to

Code: Select all

"C:\mypath\ToDoList.exe" "-dm" "%1"
but for the URLprotocol tdl:// this is a different story.

the default value in HKCR\tdl\shell\open\command is

Code: Select all

C:\mypath\ToDoList.exe -l "%1"
I tried to change to

Code: Select all

C:\mypath\ToDoList.exe -l -dm "%1"
but then ToDoList open but blank (no files open :/ in use with tdl://C:\example.tdl )

If tried few variations but nothing work... So i don't know if the problem is on Windows 8.1 side or TodoList ?

Cheers.

User avatar
abstr
Site Admin
Posts: 370
Joined: Sun Jul 28, 2019 12:22 pm

Re: Can't change the URLprotocol parametres.

Post by abstr » Fri May 03, 2024 12:41 am

BruciK wrote:
Thu May 02, 2024 7:48 am
but then ToDoList open but blank (no files open :/ in use with tdl://C:\example.tdl )
In this case the quoted path must immediately follow the '-l', so the following should work (it did for me):

Code: Select all

C:\mypath\ToDoList.exe -dm -l "%1"

Post Reply