Skip to content

Commit 39445f2

Browse files
committed
Major update...
- Update assets to the new AOSC OS logo design, closes #20. - Support Windows Terminal JSON fragment extension, closes #21. - Let the app declare support on Windows 10 Version 1607 (OS build 14393), though not tested on that build LOL. - Housekeeping.
1 parent 990a49b commit 39445f2

File tree

56 files changed

+31
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+31
-5
lines changed

AOSCOSLauncher-Appx/AOSCOS.appxmanifest

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
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:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap mp uap2 uap3 rescap desktop">
3-
<Identity Name="20470KexyBiscuit.AOSCOSonWSL" Version="11.0.1.0" Publisher="CN=7A0EF4AF-D8E1-463F-A051-23A700957CE2" ProcessorArchitecture="x64" />
4-
<mp:PhoneIdentity PhoneProductId="f9993335-1509-40e8-bd0a-a3dc8125ed92" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
2+
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap uap3 desktop rescap">
3+
<Identity Name="20470KexyBiscuit.AOSCOSonWSL" Version="11.1.0.0" Publisher="CN=7A0EF4AF-D8E1-463F-A051-23A700957CE2" />
54
<Properties>
65
<DisplayName>AOSC OS on WSL</DisplayName>
76
<PublisherDisplayName>Kexy Biscuit</PublisherDisplayName>
87
<Logo>Assets\StoreLogo.png</Logo>
98
</Properties>
109
<Dependencies>
11-
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
10+
<!-- The doc says this value is ignored, but it's a lie. This value must be correct. https://learn.microsoft.com/en-us/uwp/extension-sdks/device-families-overview#configure-your-target-device-family-version -->
11+
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.22621.0" />
1212
</Dependencies>
1313
<Capabilities>
1414
<rescap:Capability Name="runFullTrust" />
@@ -29,6 +29,13 @@
2929
<desktop:ExecutionAlias Alias="aoscos.exe" />
3030
</uap3:AppExecutionAlias>
3131
</uap3:Extension>
32+
<uap3:Extension Category="windows.appExtension">
33+
<uap3:AppExtension Name="com.microsoft.windows.terminal.settings"
34+
Id="AOSCOS"
35+
DisplayName="AOSC OS on WSL"
36+
PublicFolder="Terminal">
37+
</uap3:AppExtension>
38+
</uap3:Extension>
3239
</Extensions>
3340
</Application>
3441
</Applications>

AOSCOSLauncher-Appx/AOSCOSLauncher-Appx.vcxproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<AppContainerApplication>true</AppContainerApplication>
99
<ApplicationType>Windows Store</ApplicationType>
1010
<WindowsTargetPlatformVersion>10.0.22621.0</WindowsTargetPlatformVersion>
11-
<WindowsTargetPlatformMinVersion>10.0.16215.0</WindowsTargetPlatformMinVersion>
11+
<WindowsTargetPlatformMinVersion>10.0.14393.0</WindowsTargetPlatformMinVersion>
1212
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
1313
<TargetName>aoscos</TargetName>
1414
<ProjectName>AOSCOSLauncher-Appx</ProjectName>
@@ -100,6 +100,7 @@
100100
</AppxManifest>
101101
<None Include="AOSCOSLauncher-Appx_StoreKey.pfx" />
102102
<None Include="AOSCOSLauncher-Appx_TemporaryKey.pfx" />
103+
<Image Include="Terminal\Fragments\terminal.json" />
103104
</ItemGroup>
104105
<ItemGroup Condition="'$(Platform)'=='x64'">
105106
<None Include="..\x64\install.tar.gz">

AOSCOSLauncher-Appx/AOSCOSLauncher-Appx.vcxproj.filters

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@
169169
<Image Include="Assets\Square44x44Logo.altform-lightunplated_targetsize-256.png">
170170
<Filter>Assets</Filter>
171171
</Image>
172+
<Image Include="Terminal\Fragments\terminal.json" />
172173
</ItemGroup>
173174
<ItemGroup>
174175
<AppxManifest Include="AOSCOS.appxmanifest" />
-2.52 KB
-3.33 KB
-4.02 KB
-5.59 KB
-11.4 KB
-757 Bytes
-870 Bytes

0 commit comments

Comments
 (0)