Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
nheko
Commits
d4c0c2e9
Verified
Commit
d4c0c2e9
authored
1 year ago
by
Nicolas Werner
Browse files
Options
Downloads
Patches
Plain Diff
Add basic unsigned msix
parent
846f8507
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
appveyor.yml
+9
-1
9 additions, 1 deletion
appveyor.yml
resources/AppxManifest.xml
+40
-0
40 additions, 0 deletions
resources/AppxManifest.xml
with
49 additions
and
1 deletion
appveyor.yml
+
9
−
1
View file @
d4c0c2e9
...
...
@@ -98,13 +98,20 @@ after_build:
-
sed -i "s/__DATE__/%DATE%/" installer\packages\io.github.nhekoreborn.nheko\meta\package.xml
# Copy nheko data
-
xcopy NhekoData\*.* installer\packages\io.github.nhekoreborn.nheko\data\*.* /s /e /c /y
-
move
NhekoRelease\nheko.exe installer\packages\io.github.nhekoreborn.nheko\data
-
copy
NhekoRelease\nheko.exe installer\packages\io.github.nhekoreborn.nheko\data
-
mkdir tools
-
curl -L -O https://download.qt.io/official_releases/qt-installer-framework/4.3.0/QtInstallerFramework-windows-x86-4.3.0.exe
-
7z x QtInstallerFramework-windows-x86-4.3.0.exe -otools -aoa
-
set PATH=%BUILD%\tools\bin;%PATH%
-
binarycreator.exe -f -c installer\config\config.xml -p installer\packages nheko-installer.exe
# build an msix
-
mkdir msix
-
xcopy .\NhekoRelease\*.* msix\*.* /s /e /c /y
-
copy %BUILD%\resources\nheko.png msix
-
copy %BUILD%\resources\AppxManifest.xml msix
-
'
"C:\Program
Files
(x86)\Windows
Kits\10\App
Certification
Kit\makeappx.exe"
pack
-d
msix
-p
nheko.msix'
-
copy nheko-installer.exe nheko-%APPVEYOR_REPO_TAG_NAME%-installer.exe
-
copy nheko-installer.exe nheko-%APPVEYOR_PULL_REQUEST_HEAD_COMMIT%-installer.exe
-
ps
:
.\.ci\upload-nightly.ps1
...
...
@@ -122,5 +129,6 @@ deploy:
artifacts
:
-
path
:
nheko_win_64.zip
-
path
:
nheko.msix
-
path
:
nheko-$(APPVEYOR_REPO_TAG_NAME)-installer.exe
-
path
:
nheko-$(APPVEYOR_PULL_REQUEST_HEAD_COMMIT)-installer.exe
This diff is collapsed.
Click to expand it.
resources/AppxManifest.xml
0 → 100644
+
40
−
0
View file @
d4c0c2e9
<?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>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment