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
2 changed files with 14 additions and 7 deletions

View File

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

View File

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