Browse Source

Merge pull request #75 from ionite34/ms-store-stuff

pull/5/head
Ionite 1 year ago committed by GitHub
parent
commit
a43a883ed8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      StabilityMatrix/App.xaml.cs
  2. 30
      StabilityMatrix/AppxManifest.xml
  3. BIN
      StabilityMatrix/Assets/LockScreenLogo.scale-200.png
  4. BIN
      StabilityMatrix/Assets/STABILITYMATRIX-Square150x150Logo.png
  5. BIN
      StabilityMatrix/Assets/STABILITYMATRIX-Square310x310Logo.png
  6. BIN
      StabilityMatrix/Assets/STABILITYMATRIX-Square44x44Logo.png
  7. BIN
      StabilityMatrix/Assets/STABILITYMATRIX-Square71x71Logo.png
  8. BIN
      StabilityMatrix/Assets/STABILITYMATRIX-Wide310x150Logo.png
  9. BIN
      StabilityMatrix/Assets/SplashScreen.scale-200.png
  10. BIN
      StabilityMatrix/Assets/Square150x150Logo.scale-200.png
  11. BIN
      StabilityMatrix/Assets/Square44x44Logo.scale-200.png
  12. BIN
      StabilityMatrix/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
  13. BIN
      StabilityMatrix/Assets/StoreLogo.png
  14. BIN
      StabilityMatrix/Assets/Wide310x150Logo.scale-200.png
  15. 31
      StabilityMatrix/StabilityMatrix.csproj

2
StabilityMatrix/App.xaml.cs

@ -50,7 +50,7 @@ namespace StabilityMatrix
{ {
Config = new ConfigurationBuilder() Config = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory()) .SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true) .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true) .AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
.Build(); .Build();
// This needs to be done before OnStartup // This needs to be done before OnStartup

30
StabilityMatrix/AppxManifest.xml

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap uap10 rescap">
<!--Package created by MSIX Packaging Tool version: 1.2023.319.0-->
<Identity Name="StabilityMatrix" Publisher="CN=Lykos, O=Lykos, C=US" Version="1.0.2.0" ProcessorArchitecture="x64" />
<Properties>
<DisplayName>Stability Matrix</DisplayName>
<PublisherDisplayName>Stability Matrix LLC</PublisherDisplayName>
<Description>None</Description>
<Logo>Assets\StoreLogo.png</Logo>
<uap10:PackageIntegrity>
<uap10:Content Enforcement="on" />
</uap10:PackageIntegrity>
</Properties>
<Resources>
<Resource Language="en-us" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22000.1" />
</Dependencies>
<Applications>
<Application Id="STABILITYMATRIX" Executable="StabilityMatrix.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements BackgroundColor="transparent" DisplayName="StabilityMatrix" Square150x150Logo="Assets\STABILITYMATRIX-Square150x150Logo.png" Square44x44Logo="Assets\STABILITYMATRIX-Square44x44Logo.png" Description="StabilityMatrix">
<uap:DefaultTile Wide310x150Logo="Assets\STABILITYMATRIX-Wide310x150Logo.png" Square310x310Logo="Assets\STABILITYMATRIX-Square310x310Logo.png" Square71x71Logo="Assets\STABILITYMATRIX-Square71x71Logo.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities>
</Package>

BIN
StabilityMatrix/Assets/LockScreenLogo.scale-200.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 432 B

BIN
StabilityMatrix/Assets/STABILITYMATRIX-Square150x150Logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
StabilityMatrix/Assets/STABILITYMATRIX-Square310x310Logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

BIN
StabilityMatrix/Assets/STABILITYMATRIX-Square44x44Logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

BIN
StabilityMatrix/Assets/STABILITYMATRIX-Square71x71Logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
StabilityMatrix/Assets/STABILITYMATRIX-Wide310x150Logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

BIN
StabilityMatrix/Assets/SplashScreen.scale-200.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

BIN
StabilityMatrix/Assets/Square150x150Logo.scale-200.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

BIN
StabilityMatrix/Assets/Square44x44Logo.scale-200.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 637 B

BIN
StabilityMatrix/Assets/Square44x44Logo.targetsize-24_altform-unplated.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 283 B

BIN
StabilityMatrix/Assets/StoreLogo.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 456 B

After

Width:  |  Height:  |  Size: 10 KiB

BIN
StabilityMatrix/Assets/Wide310x150Logo.scale-200.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

31
StabilityMatrix/StabilityMatrix.csproj

@ -40,13 +40,9 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="Assets\SplashScreen.scale-200.png" /> <Content Include="Assets\StoreLogo.png">
<Content Include="Assets\LockScreenLogo.scale-200.png" /> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Content Include="Assets\Square150x150Logo.scale-200.png" /> </Content>
<Content Include="Assets\Square44x44Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Assets\StoreLogo.png" />
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
<None Remove="Assets\Icon.ico" /> <None Remove="Assets\Icon.ico" />
<Resource Include="Assets\Icon.ico" /> <Resource Include="Assets\Icon.ico" />
<None Update="appsettings.json"> <None Update="appsettings.json">
@ -63,11 +59,30 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content> </Content>
<Resource Include="Assets\noimage.png" /> <Resource Include="Assets\noimage.png" />
<None Update="Assets\STABILITYMATRIX-Square44x44Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assets\STABILITYMATRIX-Square71x71Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assets\STABILITYMATRIX-Square150x150Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assets\STABILITYMATRIX-Square310x310Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Assets\STABILITYMATRIX-Wide310x150Logo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Remove="AppxManifest.xml" />
<Content Include="AppxManifest.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Content Include="Assets\Python310\**"> <Content Include="Assets\Python310\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content> </Content>
</ItemGroup> </ItemGroup>

Loading…
Cancel
Save