summary refs log tree commit diff
path: root/resources/AppxManifest.xml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-10-29 19:41:22 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-10-31 13:04:35 +0100
commitd4c0c2e945c35c1b9838bc0acca8cfd388b8188a (patch)
tree6e8d000e0cb84e32ae525779a6638271345cbaaa /resources/AppxManifest.xml
parentMerge pull request #1570 from discapes/master (diff)
downloadnheko-d4c0c2e945c35c1b9838bc0acca8cfd388b8188a.tar.xz
Add basic unsigned msix
Diffstat (limited to 'resources/AppxManifest.xml')
-rw-r--r--resources/AppxManifest.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/resources/AppxManifest.xml b/resources/AppxManifest.xml
new file mode 100644
index 00000000..57c7188e
--- /dev/null
+++ b/resources/AppxManifest.xml
@@ -0,0 +1,40 @@
+<?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">
+  <Identity Name="im.nheko.Nheko" Version="0.11.3.4" Publisher="CN=NhekoReborn, O=NhekoReborn, L=Munich, S=Bavaria, C=Germany" ProcessorArchitecture="x64"/>
+  <Properties>
+    <DisplayName>Nheko</DisplayName>
+    <PublisherDisplayName>Nheko-Reborn</PublisherDisplayName>
+    <Description>Matrix client written in Qt</Description>
+    <Logo>nheko.png</Logo>
+  </Properties>
+  <Resources>
+    <Resource Language="en-us" />
+    <Resource Language="de-de" />
+  </Resources>
+  <Dependencies>
+    <TargetDeviceFamily Name="Windows.Desktop"  MinVersion="10.0.14316.0" MaxVersionTested="10.0.15063.0"  />
+  </Dependencies>
+  <Capabilities>
+    <rescap:Capability Name="runFullTrust"/>
+  </Capabilities>
+  <Applications>
+    <Application Id="im.nheko.nheko" Executable="nheko.exe" EntryPoint="Windows.FullTrustApplication"
+      uap10:RuntimeBehavior="packagedClassicApp"
+      uap10:TrustLevel="mediumIL">
+				<uap:VisualElements DisplayName="Nheko" Description="Matrix client written in Qt"	Square150x150Logo="nheko.png"
+					Square44x44Logo="nheko.png" BackgroundColor="#ffffff" />
+				<Extensions>
+					<uap:Extension Category="windows.protocol">
+						<uap:Protocol Name="matrix">
+							<uap:DisplayName>Matrix Link</uap:DisplayName>
+						</uap:Protocol>
+					</uap:Extension>
+				</Extensions>
+    </Application>
+  </Applications>
+</Package>
+