mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-26 12:38:04 +03:00
fix(bundler): Fix path seperators for deep link registry entries (#9185)
* fix(bundler): Fix path seperators for deep link registry entries * Update bundler-deep-link-reg-path.md
This commit is contained in:
parent
ac76a22f38
commit
a799f24f97
5
.changes/bundler-deep-link-reg-path.md
Normal file
5
.changes/bundler-deep-link-reg-path.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'tauri-bundler': 'patch:bug'
|
||||||
|
---
|
||||||
|
|
||||||
|
Fixed an issue that caused the msi bundler to crash when deep link schemes were configured.
|
@ -113,13 +113,13 @@
|
|||||||
</RegistryKey>
|
</RegistryKey>
|
||||||
<!-- Change the Root to HKCU for perUser installations -->
|
<!-- Change the Root to HKCU for perUser installations -->
|
||||||
{{#each deep_link_protocols as |protocol| ~}}
|
{{#each deep_link_protocols as |protocol| ~}}
|
||||||
<RegistryKey Root="HKLM" Key="Software\\Classes\\{{protocol}}">
|
<RegistryKey Root="HKLM" Key="Software\Classes\\{{protocol}}">
|
||||||
<RegistryValue Type="string" Name="URL Protocol" Value=""/>
|
<RegistryValue Type="string" Name="URL Protocol" Value=""/>
|
||||||
<RegistryValue Type="string" Value="URL:{{bundle_id}} protocol"/>
|
<RegistryValue Type="string" Value="URL:{{bundle_id}} protocol"/>
|
||||||
<RegistryKey Key="DefaultIcon">
|
<RegistryKey Key="DefaultIcon">
|
||||||
<RegistryValue Type="string" Value=""[!Path]",0" />
|
<RegistryValue Type="string" Value=""[!Path]",0" />
|
||||||
</RegistryKey>
|
</RegistryKey>
|
||||||
<RegistryKey Key="shell\\open\\command">
|
<RegistryKey Key="shell\open\command">
|
||||||
<RegistryValue Type="string" Value=""[!Path]" "%1"" />
|
<RegistryValue Type="string" Value=""[!Path]" "%1"" />
|
||||||
</RegistryKey>
|
</RegistryKey>
|
||||||
</RegistryKey>
|
</RegistryKey>
|
||||||
|
Loading…
Reference in New Issue
Block a user