Compare commits

..

2 Commits

Author SHA1 Message Date
Mihai 2a48059186 fix: skip maximise if starting to tray
Signed-off-by: Mihai <cristian@mihaimuresan.com>
2026-03-06 14:48:17 +01:00
stoat-tofu[bot] b57faa2c59 chore: modify .github/workflows/release-webhook.yml 2026-02-18 20:28:00 +00:00
2 changed files with 8 additions and 4 deletions
+6 -2
View File
@@ -12,8 +12,12 @@ jobs:
steps:
- name: Send release notification webhook
env:
TAG_NAME: ${{ github.event.release.tag_name }}
REPOSITORY: ${{ github.repository }}
WEBHOOK_URL: ${{ secrets.STOAT_WEBHOOK_UPDATES_URL }}
run: |
RELEASE_URL="https://github.com/${{ github.repository }}/releases/tag/${{ github.event.release.tag_name }}"
curl -X POST "${{ secrets.STOAT_WEBHOOK_UPDATES_URL }}" \
RELEASE_URL="https://github.com/${REPOSITORY}/releases/tag/${TAG_NAME}"
curl -X POST "$WEBHOOK_URL" \
-H "Content-Type: application/json" \
-d "{\"content\": \"$RELEASE_URL\"}"
+1 -1
View File
@@ -79,7 +79,7 @@ export function createMainWindow() {
}
// maximise the window if it was maximised before
if (config.windowState.isMaximised) {
if (config.windowState.isMaximised && !startHidden) {
mainWindow.maximize();
}