mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 11:55:03 -05:00
Force DesktopAppMigration to make sure that users that have purchased FileBot from the Store, but also have an older legacy version installed, are actually using the Windows Store version, and not inadvertanly running an old version (and then complaining that it doesn't work, ask for donations, etc).
This commit is contained in:
parent
7ae04f7fcf
commit
22257235f5
@ -5,6 +5,7 @@
|
|||||||
xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
|
xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
|
||||||
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
|
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
|
||||||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
||||||
|
xmlns:rescap3="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities/3"
|
||||||
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10">
|
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10">
|
||||||
|
|
||||||
<Identity
|
<Identity
|
||||||
@ -83,6 +84,15 @@
|
|||||||
</uap2:SupportedVerbs>
|
</uap2:SupportedVerbs>
|
||||||
</uap3:FileTypeAssociation>
|
</uap3:FileTypeAssociation>
|
||||||
</uap3:Extension>
|
</uap3:Extension>
|
||||||
|
<rescap3:Extension Category="windows.desktopAppMigration">
|
||||||
|
<rescap3:DesktopAppMigration>
|
||||||
|
<rescap3:DesktopApp AumId="@{application.name}" />
|
||||||
|
<rescap3:DesktopApp AumId="@{package.identifier}" />
|
||||||
|
<rescap3:DesktopApp ShortcutPath="%USERPROFILE%\Desktop\@{application.name}.lnk" />
|
||||||
|
<rescap3:DesktopApp ShortcutPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\@{application.name}.lnk" />
|
||||||
|
<rescap3:DesktopApp ShortcutPath="%APPDATA%\Microsoft\Windows\SendTo\@{application.name}.lnk"/>
|
||||||
|
</rescap3:DesktopAppMigration>
|
||||||
|
</rescap3:Extension>
|
||||||
</Extensions>
|
</Extensions>
|
||||||
</Application>
|
</Application>
|
||||||
</Applications>
|
</Applications>
|
||||||
|
Loading…
Reference in New Issue
Block a user