Skip to content

Commit 9cdb048

Browse files
committed
Keep backward compat
1 parent 663e1d3 commit 9cdb048

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

src/Files.App (Package)/Package.appxmanifest

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,11 @@
118118
</uap3:AppExtensionHost>
119119
</uap3:Extension>
120120

121+
<uap:Extension Category="windows.protocol">
122+
<!-- This is for backward compatibility -->
123+
<uap:Protocol ReturnResults="none" Name="files-uwp" />
124+
</uap:Extension>
125+
121126
<uap:Extension Category="windows.protocol">
122127
<!-- This value changes based on the build branch (files, files-pre, files-dev). -->
123128
<uap:Protocol ReturnResults="none" Name="files-dev" />
@@ -127,6 +132,8 @@
127132
<uap5:AppExecutionAlias>
128133
<!-- This value changes based on the build branch (files, files-pre, files-dev). -->
129134
<uap5:ExecutionAlias Alias="files-dev.exe" />
135+
<!-- This is for backward compatibility -->
136+
<uap5:ExecutionAlias Alias="files.exe" />
130137
</uap5:AppExecutionAlias>
131138
</uap5:Extension>
132139

src/Files.App/Utils/Taskbar/SystemTrayIcon.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ public sealed class SystemTrayIcon : IDisposable
2929

3030
private readonly static Guid _trayIconGuid = new(
3131
#if DEBUG
32-
"e6fc16c1-e6e2-40a2-9c4e-1bf3b54684ad"
32+
"684F2832-AC2B-4630-98C2-73D6AEBD4001"
3333
#elif PREVIEW
34-
"8bd7e317-ee80-405e-8c90-f4d9866ff9bc"
34+
"684F2832-AC2B-4630-98C2-73D6AEBD4002"
3535
#elif STABLE
36-
"96b3455b-16bf-454e-ada5-191ba32f2f8e"
36+
"684F2832-AC2B-4630-98C2-73D6AEBD4003"
3737
#elif STORE
38-
"01966f57-00cf-471f-b2d5-55f227e0dfe6"
38+
"684F2832-AC2B-4630-98C2-73D6AEBD4004"
3939
#else
40-
"e77abbd8-8721-4d50-a4d2-743d28cdc37b"
40+
"684F2832-AC2B-4630-98C2-73D6AEBD4005"
4141
#endif
4242
);
4343

0 commit comments

Comments
 (0)