Compare commits

..

2 Commits

Author SHA1 Message Date
litruv
3df5432127 fix: use desktop.entry for electron-builder 26.x
Some checks failed
Build / increment-version (push) Successful in 7s
Build / build-linux (push) Failing after 1m39s
Build / build-windows (push) Failing after 3m21s
Build / create-release (push) Has been skipped
2026-02-21 17:58:50 +11:00
litruv
1e455a00f2 fix: handle submodules manually on Windows to avoid path issue 2026-02-21 17:57:32 +11:00
3 changed files with 15 additions and 8 deletions

View File

@@ -64,9 +64,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
submodules: false
ref: ${{ github.ref_name }}
- name: Checkout submodules manually
shell: powershell
run: |
git submodule update --init --recursive
- name: Pull latest (after version bump)
if: github.ref == 'refs/heads/main'
shell: powershell

View File

@@ -48,12 +48,14 @@
"category": "Network;InstantMessaging",
"icon": "icons/icon.png",
"desktop": {
"Name": "Paarrot",
"GenericName": "Matrix Client",
"Comment": "A Matrix client built with Cinny",
"Categories": "Network;InstantMessaging;",
"Keywords": "matrix;chat;messaging;",
"StartupWMClass": "paarrot"
"entry": {
"Name": "Paarrot",
"GenericName": "Matrix Client",
"Comment": "A Matrix client built with Cinny",
"Categories": "Network;InstantMessaging;",
"Keywords": "matrix;chat;messaging;",
"StartupWMClass": "paarrot"
}
}
},
"appImage": {

View File

@@ -1,6 +1,6 @@
{
"name": "paarrot",
"version": "4.10.3",
"version": "4.10.2",
"description": "Yet another matrix client",
"main": "electron/main.js",
"engines": {