diff options
author | Nep Nep <nepnep91@protonmail.com> | 2023-12-20 20:31:48 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-20 20:31:48 -0300 |
commit | a691f5de3cec1da57c03a9626a7a55914ef5b3bb (patch) | |
tree | 2f6c9a18d1aac0edee9a16ad28ffcc39943f1a4a /resources | |
parent | Fix memory leak and invite filtering (diff) | |
parent | Bump minimum Windows version to possibly fix msix (diff) | |
download | nheko-a691f5de3cec1da57c03a9626a7a55914ef5b3bb.tar.xz |
Merge branch 'Nheko-Reborn:master' into ignore-command
Diffstat (limited to 'resources')
-rw-r--r-- | resources/AppxManifest.xml | 2 | ||||
-rw-r--r-- | resources/NhekoNightly.appinstaller | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/resources/AppxManifest.xml b/resources/AppxManifest.xml index 417d0229..978fda8c 100644 --- a/resources/AppxManifest.xml +++ b/resources/AppxManifest.xml @@ -16,7 +16,7 @@ <Resource Language="de-de" /> </Resources> <Dependencies> - <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.15063.0" /> + <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19044.0" MaxVersionTested="10.0.19045.0" /> </Dependencies> <Capabilities> <rescap:Capability Name="runFullTrust"/> diff --git a/resources/NhekoNightly.appinstaller b/resources/NhekoNightly.appinstaller new file mode 100644 index 00000000..bd94f5d9 --- /dev/null +++ b/resources/NhekoNightly.appinstaller @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<AppInstaller Uri="https://nheko-reborn.pages.nheko.im/nheko/NhekoNightly.appinstaller" Version="0.0.0.1" xmlns="http://schemas.microsoft.com/appx/appinstaller/2018"> + <MainPackage Name="im.nheko.Nheko" Version="0.11.3.4" Publisher="CN=Nicolas Werner, O=Nicolas Werner, L=Munich, S=Bavaria, C=DE" Uri="https://nheko.im/api/v4/projects/2/packages/generic/windows-nightly/0.11.3.4/nheko.msix" ProcessorArchitecture="x64" /> + <UpdateSettings> + <!-- We can't set this to check only once a month, so just check once a week. If the user doesn't want that ping, they should install the msix directly. --> + <OnLaunch HoursBetweenUpdateChecks="168" ShowPrompt="true" /> + <ForceUpdateFromAnyVersion>true</ForceUpdateFromAnyVersion> + </UpdateSettings> +</AppInstaller> + |