From b8e7a0cebd0a90c02bc79b89bc8fb339a71051d4 Mon Sep 17 00:00:00 2001 From: Kristjan ESPERANTO <35647502+KristjanESPERANTO@users.noreply.github.com> Date: Sun, 19 Jan 2025 16:14:12 +0100 Subject: [PATCH] Adapt `start:x11:dev` script --- CHANGELOG.md | 9 +++++---- package.json | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f4252a704..5ce2668ba3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,21 +18,22 @@ planned for 2025-04-01 ### Changed - [core] starting clientonly now checks for needed env var `WAYLAND_DISPLAY` or `DISPLAY` and starts electron with needed parameters (if both are set wayland is used) (#3677) -- [core] Optimize systeminformation calls and output -- [core] Add issue templates for feature requests and bug reports +- [core] Optimize systeminformation calls and output (#3689) +- [core] Add issue templates for feature requests and bug reports (#3695) +- [core] Adapt `start:x11:dev` script ### Removed ### Updated -- [core] Update dependencies and formatting +- [core] Update dependencies and formatting (#3693) ### Fixed - [calendar] Fix clipping events being broadcast (#3678) - [tests] Electron tests: Fixes for running under new github image ubuntu-24.04, replace xserver with labwc, running under xserver and labwc depending on env variable WAYLAND_DISPLAY is set (#3676) - [calendar] Fix arrayed symbols, #3267, again, add testcase, add testcase for #3678 -- [weather] Fix wrong weatherCondition name in openmeteo provider which lead to n/a icon +- [weather] Fix wrong weatherCondition name in openmeteo provider which lead to n/a icon (#3691) - [core] Fix wrong port in log message when starting server only (#3696) ## [2.30.0] - 2025-01-01 diff --git a/package.json b/package.json index 9852fa3730..f7086dd663 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "start:windows": ".\\node_modules\\.bin\\electron js\\electron.js", "start:windows:dev": "npm run start:windows -- dev", "start:x11": "DISPLAY=\"${DISPLAY:=:0}\" ./node_modules/.bin/electron js/electron.js", - "start:x11:dev": "npm run start -- dev", + "start:x11:dev": "npm run start:x11 -- dev", "test": "NODE_ENV=test jest -i --forceExit", "test:calendar": "node ./modules/default/calendar/debug.js", "test:coverage": "NODE_ENV=test jest --coverage -i --verbose false --forceExit",