Page 1 of 1

Can't change the URLprotocol parametres.

Posted: Thu May 02, 2024 7:48 am
by BruciK
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.

Re: Can't change the URLprotocol parametres.

Posted: Fri May 03, 2024 12:41 am
by abstr
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"