Skip to content

Commit 3b7d3b1

Browse files
lukeblukeb
authored andcommitted
Re-enable multi-instance support
1 parent 0386172 commit 3b7d3b1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Files UWP/Package.appxmanifest

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@
2323
<uap:ShowOn Tile="square310x310Logo" />
2424
</uap:ShowNameOnTiles>
2525
</uap:DefaultTile>
26-
<uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="black" />
26+
<uap:SplashScreen Image="Assets\SplashScreen.png"/>
2727
</uap:VisualElements>
2828
</Application>
2929
</Applications>
3030
<Capabilities>
31-
<Capability Name="internetClient" />
3231
<uap:Capability Name="removableStorage" />
3332
<rescap:Capability Name="broadFileSystemAccess" />
3433
</Capabilities>

FilesUwp.Package/Package.appxmanifest

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" IgnorableNamespaces="uap mp rescap desktop">
2+
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" IgnorableNamespaces="uap mp rescap desktop4 desktop">
33
<Identity Name="85bc74fc-1b61-4232-97b5-1ed702381499" Publisher="CN=lukeb" Version="0.4.9.0" />
44
<Properties>
55
<DisplayName>Files</DisplayName>
@@ -14,7 +14,7 @@
1414
<Resource Language="x-generate" />
1515
</Resources>
1616
<Applications>
17-
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
17+
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$" desktop4:SupportsMultipleInstances="true">
1818
<uap:VisualElements DisplayName="Files" Description="Meet Files, a free and open-source File Manager for Windows 10. Created from the ground up to look and feel amazing, Files is built to replace the dated Windows File Explorer." BackgroundColor="transparent" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png">
1919
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square71x71Logo="Assets\SmallTile.png" Square310x310Logo="Assets\LargeTile.png">
2020
</uap:DefaultTile>
@@ -26,7 +26,6 @@
2626
</Application>
2727
</Applications>
2828
<Capabilities>
29-
<Capability Name="internetClient" />
3029
<uap:Capability Name="removableStorage" />
3130
<rescap:Capability Name="runFullTrust" />
3231
<rescap:Capability Name="broadFileSystemAccess" />

0 commit comments

Comments
 (0)