Skip to content

Commit 39a614e

Browse files
rejasMichMichKristjanESPERANTOdependabot[bot]khassel
authored
Release 2.31.0 (#3758)
Thanks to: @Developer-Incoming, @eltociear, @geraki, @khassel, @KristjanESPERANTO, @MagMar94, @mixasgr, @n8many, @OWL4C, @rejas, @savvadam, @sdetweil. > ⚠️ This release needs nodejs version `v22.14.0 or higher` ### Added - Add CSS support to the digital clock hour/minute/second through the use of the classes `clock-hour-digital`, `clock-minute-digital`, and `clock-second-digital`. - Add Arabic (#3719) and Esperanto translation. - Mark option `secondsColor` as deprecated in clock module. - Add Greek translation to Alerts module. - [newsfeed] Add specific ignoreOlderThan value (override) per feed (#3360) - [weather] Added option Humidity to hourly View - [weather] Added option to hide hourly entries that are Zero, hiding the entire column if empty. - [updatenotification] Added option to iterate over modules directory instead using modules defined in `config.js` (#3739) ### 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 (#3689) - [core] Add issue templates for feature requests and bug reports (#3695) - [core] Adapt `start:x11:dev` script - [weather/yr] The Yr weather provider now enforces a minimum `updateInterval` of 600 000 ms (10 minutes) to comply with the terms of service. If a lower value is set, it will be automatically increased to this minimum. - [weather/weatherflow] Fixed icons and added hourly support as well as UV, precipitation, and location name support. - [workflow] Run `sudo apt-get update` before installing packages to avoid install errors - [workflow] Exclude issues with label `ready (coming with next release)` from stale job ### Removed ### Updated - [core] Update requirements and dependencies including electron to v35 and formatting (#3593, #3693, #3717) - [core] Update prettier, ESLint and simplify config - Update Greek translation ### Fixed - [calendar] Fix clipping events being broadcast (#3678) - [tests] Fix Electron tests by running them 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 (#3691) - [core] Fix wrong port in log message when starting server only (#3696) - [calendar] Fix NewYork event processed on system in Central timezone shows wrong time #3701 - [weather/yr] The Yr weather provider is now able to recover from bad API responses instead of freezing (#3296) - [compliments] Fix evening events being shown during the day (#3727) - [weather] Fixed minor spacing issues when using UV Index in Hourly - [workflow] Fix command to run spellcheck --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: Michael Teeuw <[email protected]> Co-authored-by: Kristjan ESPERANTO <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Karsten Hassel <[email protected]> Co-authored-by: Ross Younger <[email protected]> Co-authored-by: Bugsounet - Cédric <[email protected]> Co-authored-by: jkriegshauser <[email protected]> Co-authored-by: illimarkangur <[email protected]> Co-authored-by: sam detweiler <[email protected]> Co-authored-by: vppencilsharpener <[email protected]> Co-authored-by: Paranoid93 <[email protected]> Co-authored-by: Brian O'Connor <[email protected]> Co-authored-by: WallysWellies <[email protected]> Co-authored-by: Jason Stieber <[email protected]> Co-authored-by: jargordon <[email protected]> Co-authored-by: Daniel <[email protected]> Co-authored-by: Ryan Williams <[email protected]> Co-authored-by: Panagiotis Skias <[email protected]> Co-authored-by: Marc Landis <[email protected]> Co-authored-by: HeikoGr <[email protected]> Co-authored-by: Pedro Lamas <[email protected]> Co-authored-by: veeck <[email protected]> Co-authored-by: Magnus <[email protected]> Co-authored-by: Ikko Eltociear Ashimine <[email protected]> Co-authored-by: DevIncomin <[email protected]> Co-authored-by: Nathan <[email protected]> Co-authored-by: mixasgr <[email protected]> Co-authored-by: Savvas Adamtziloglou <[email protected]> Co-authored-by: Konstantinos <[email protected]> Co-authored-by: OWL4C <[email protected]>
1 parent 9c9a535 commit 39a614e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+2255
-1096
lines changed

.github/workflows/automated-tests.yaml

+13-5
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,16 @@ jobs:
3434
npm run test:css
3535
npm run test:markdown
3636
test:
37-
runs-on: ubuntu-latest
37+
runs-on: ubuntu-24.04
3838
timeout-minutes: 30
3939
strategy:
4040
matrix:
41-
node-version: [20.18.1, 20.x, 22.x, 23.x]
41+
node-version: [22.14.0, 22.x, 23.x]
4242
steps:
43+
- name: Install electron dependencies and labwc
44+
run: |
45+
sudo apt-get update
46+
sudo apt-get install -y libnss3 libasound2t64 labwc
4347
- name: "Checkout code"
4448
uses: actions/checkout@v4
4549
- name: "Use Node.js ${{ matrix.node-version }}"
@@ -48,12 +52,16 @@ jobs:
4852
node-version: ${{ matrix.node-version }}
4953
check-latest: true
5054
cache: "npm"
51-
- name: "Install dependencies"
55+
- name: "Install MagicMirror²"
5256
run: |
5357
npm run install-mm:dev
5458
- name: "Run tests"
5559
run: |
56-
Xvfb :99 -screen 0 1024x768x16 &
57-
export DISPLAY=:99
60+
# Fix chrome-sandbox permissions:
61+
sudo chown root:root ./node_modules/electron/dist/chrome-sandbox
62+
sudo chmod 4755 ./node_modules/electron/dist/chrome-sandbox
63+
# Start labwc
64+
WLR_BACKENDS=headless WLR_LIBINPUT_NO_DEVICES=1 WLR_RENDERER=pixman labwc &
65+
export WAYLAND_DISPLAY=wayland-0
5866
touch css/custom.css
5967
npm run test

.github/workflows/electron-rebuild.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
node-version: [20.18.1, 20.x, 22.x, 23.x]
11+
node-version: [22.14.0, 22.x, 23.x]
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v4
@@ -22,7 +22,9 @@ jobs:
2222
- name: Install @electron/rebuild
2323
run: npm install @electron/rebuild
2424
- name: Install node-libgpiod deps
25-
run: sudo apt-get install gpiod libgpiod2 libgpiod-dev
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install gpiod libgpiod2 libgpiod-dev
2628
- name: Install test library (node-libgpiod) to be rebuilded
2729
run: npm install node-libgpiod
2830
- name: Run electron-rebuild

.github/workflows/spellcheck.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
run: |
2929
npm run install-mm:dev
3030
- name: Run Spellcheck
31-
run: npm run test:spellcheck
31+
run: npm run test:spelling

.github/workflows/stale.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
days-before-issue-close: 7
2020
operations-per-run: 100
2121
stale-issue-label: "wontfix"
22-
exempt-issue-labels: "pinned,security,under investigation,pr welcome"
22+
exempt-issue-labels: "pinned,security,under investigation,pr welcome,ready (coming with next release)"

CHANGELOG.md

+53-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
❤️ **Donate:** Enjoying MagicMirror²? [Please consider a donation!](https://magicmirror.builders/#donate) With your help we can continue to improve the MagicMirror².
99

10+
## [2.31.0] - 2025-04-01
11+
12+
Thanks to: @Developer-Incoming, @eltociear, @geraki, @khassel, @KristjanESPERANTO, @MagMar94, @mixasgr, @n8many, @OWL4C, @rejas, @savvadam, @sdetweil.
13+
14+
> ⚠️ This release needs nodejs version `v22.14.0 or higher`
15+
16+
### Added
17+
18+
- Add CSS support to the digital clock hour/minute/second through the use of the classes `clock-hour-digital`, `clock-minute-digital`, and `clock-second-digital`.
19+
- Add Arabic (#3719) and Esperanto translation.
20+
- Mark option `secondsColor` as deprecated in clock module.
21+
- Add Greek translation to Alerts module.
22+
- [newsfeed] Add specific ignoreOlderThan value (override) per feed (#3360)
23+
- [weather] Added option Humidity to hourly View
24+
- [weather] Added option to hide hourly entries that are Zero, hiding the entire column if empty.
25+
- [updatenotification] Added option to iterate over modules directory instead using modules defined in `config.js` (#3739)
26+
27+
### Changed
28+
29+
- [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)
30+
- [core] Optimize systeminformation calls and output (#3689)
31+
- [core] Add issue templates for feature requests and bug reports (#3695)
32+
- [core] Adapt `start:x11:dev` script
33+
- [weather/yr] The Yr weather provider now enforces a minimum `updateInterval` of 600 000 ms (10 minutes) to comply with the terms of service. If a lower value is set, it will be automatically increased to this minimum.
34+
- [weather/weatherflow] Fixed icons and added hourly support as well as UV, precipitation, and location name support.
35+
- [workflow] Run `sudo apt-get update` before installing packages to avoid install errors
36+
- [workflow] Exclude issues with label `ready (coming with next release)` from stale job
37+
38+
### Removed
39+
40+
### Updated
41+
42+
- [core] Update requirements and dependencies including electron to v35 and formatting (#3593, #3693, #3717)
43+
- [core] Update prettier, ESLint and simplify config
44+
- Update Greek translation
45+
46+
### Fixed
47+
48+
- [calendar] Fix clipping events being broadcast (#3678)
49+
- [tests] Fix Electron tests by running them 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)
50+
- [calendar] Fix arrayed symbols, #3267, again, add testcase, add testcase for #3678
51+
- [weather] Fix wrong weatherCondition name in openmeteo provider which lead to n/a icon (#3691)
52+
- [core] Fix wrong port in log message when starting server only (#3696)
53+
- [calendar] Fix NewYork event processed on system in Central timezone shows wrong time #3701
54+
- [weather/yr] The Yr weather provider is now able to recover from bad API responses instead of freezing (#3296)
55+
- [compliments] Fix evening events being shown during the day (#3727)
56+
- [weather] Fixed minor spacing issues when using UV Index in Hourly
57+
- [workflow] Fix command to run spellcheck
58+
1059
## [2.30.0] - 2025-01-01
1160

1261
Thanks to: @xsorifc28, @HeikoGr, @bugsounet, @khassel, @KristjanESPERANTO, @rejas, @sdetweil.
@@ -24,7 +73,7 @@ Thanks to: @xsorifc28, @HeikoGr, @bugsounet, @khassel, @KristjanESPERANTO, @reja
2473
- [linter] Re-add `eslint-plugin-import`now that it supports ESLint v9 (#3586)
2574
- [linter] Re-activate `eslint-plugin-package-json` to lint `package.json` (#3643)
2675
- [linter] Add linting for markdown files (#3646)
27-
- [linter] Add some handy ESLint rules.
76+
- [linter] Add some handy ESLint rules (#3665)
2877
- [calendar] Add ability to display end date for full date events, where end is not same day (showEnd=true) (#3650)
2978
- [core] Add text to the config.js.sample file about the locale variable (#3654, #3655)
3079
- [core] Add fetch timeout for all node_helpers (thru undici, forces node 20.18.1 minimum) to help on slower systems. (#3660) (3661)
@@ -103,7 +152,7 @@ Thanks to: @bugsounet, @dkallen78, @jargordon, @khassel, @KristjanESPERANTO, @Ma
103152
- [core] Detail optimizations in `config_check.js`
104153
- [core] Updated minimal needed node version in `package.json` (currently v20.9.0) (#3559) and except for v21 (no security updates) (#3561)
105154
- [linter] Switch to ESLint v9 and flat config and replace `eslint-plugin-unicorn` by `@eslint/js`
106-
- [core] fix discovering module positions twice after #3450
155+
- [core] Fix discovering module positions twice after #3450
107156

108157
### Fixed
109158

@@ -167,7 +216,7 @@ For more info, please read the following post: [A New Chapter for MagicMirror: T
167216

168217
### Updated
169218

170-
- Update updatenotification (update_helper.js): Recode with pm2 library (#3332)
219+
- [updatenotification] Recode update_helper.js with pm2 library (#3332)
171220
- Removing lodash dependency by replacing merge by spread operator (#3339)
172221
- Use node prefix for build-in modules (#3340)
173222
- Rework logging colors (#3350)
@@ -1671,6 +1720,7 @@ It includes (but is not limited to) the following features:
16711720

16721721
This was part of the blogpost: [https://michaelteeuw.nl/post/83916869600/magic-mirror-part-vi-production-of-the](https://michaelteeuw.nl/post/83916869600/magic-mirror-part-vi-production-of-the)
16731722

1723+
[2.31.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.30.0...v2.31.0
16741724
[2.30.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.29.0...v2.30.0
16751725
[2.29.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.28.0...v2.29.0
16761726
[2.28.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.27.0...v2.28.0

Collaboration.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,16 @@ Are done by
3030
### Deployment steps
3131

3232
- [ ] pull latest `develop` branch
33-
- [ ] update `package.json` and `package-lock.json` to reflect correct version number `2.xx.0`
34-
- [ ] test `develop` branch
35-
- [ ] update `CHANGELOG.md`
36-
- [ ] add all contributor names: `...`
37-
- [ ] add min. node version: > ⚠️ This release needs nodejs version `v20` or `v22`, minimum version is `v20.9.0`
38-
- [ ] check release link at the bottom of the file
39-
- [ ] commit and push all changes
33+
- [ ] create `prep-release` branch from `develop`
34+
- [ ] update `package.json` and `package-lock.json` to reflect correct version number `2.xx.0`
35+
- [ ] test `prep-release` branch
36+
- [ ] update `CHANGELOG.md`
37+
- [ ] add all contributor names: `...`
38+
- [ ] add min. node version: > ⚠️ This release needs nodejs version `v22.14.0` or higher
39+
- [ ] check release link at the bottom of the file
40+
- [ ] commit and push all changes
41+
- [ ] create pull request from `prep-release` to `develop` branch with title `Prepare Release 2.xx.0`
42+
- [ ] after successful test run via github actions: merge pull request to `develop`
4043
- [ ] after successful test run via github actions: create pull request from `develop` to `master` branch
4144
- [ ] add label `mastermerge`
4245
- [ ] title of the PR is `Release 2.xx.0`
@@ -54,6 +57,7 @@ Are done by
5457
- [ ] draft new section in `CHANGELOG.md`
5558
- [ ] create new release link at the bottom of the file
5659
- [ ] commit and publish `develop` branch
60+
- [ ] if new release will be in January, update the year in LICENSE.md
5761

5862
### After release
5963

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The MIT License (MIT)
22

3-
Copyright © 2016-2024 Michael Teeuw
3+
Copyright © 2016-2025 Michael Teeuw
44

55
Permission is hereby granted, free of charge, to any person
66
obtaining a copy of this software and associated documentation

clientonly/index.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,17 @@
8383
if (["localhost", "127.0.0.1", "::1", "::ffff:127.0.0.1", undefined].indexOf(config.address) === -1) {
8484
getServerConfig(`${prefix}${config.address}:${config.port}/config/`)
8585
.then(function (configReturn) {
86+
// check environment for DISPLAY or WAYLAND_DISPLAY
87+
const elecParams = ["js/electron.js"];
88+
if (process.env.WAYLAND_DISPLAY) {
89+
console.log(`Client: Using WAYLAND_DISPLAY=${process.env.WAYLAND_DISPLAY}`);
90+
elecParams.push("--enable-features=UseOzonePlatform");
91+
elecParams.push("--ozone-platform=wayland");
92+
} else if (process.env.DISPLAY) {
93+
console.log(`Client: Using DISPLAY=${process.env.DISPLAY}`);
94+
} else {
95+
fail("Error: Requires environment variable WAYLAND_DISPLAY or DISPLAY, none is provided.");
96+
}
8697
// Pass along the server config via an environment variable
8798
const env = Object.create(process.env);
8899
env.clientonly = true; // set to pass to electron.js
@@ -94,7 +105,7 @@
94105

95106
// Spawn electron application
96107
const electron = require("electron");
97-
const child = require("node:child_process").spawn(electron, ["js/electron.js"], options);
108+
const child = require("node:child_process").spawn(electron, elecParams, options);
98109

99110
// Pipe all child process output to current stdout
100111
child.stdout.on("data", function (buf) {

cspell.config.json

+7
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"eddiehung",
5959
"Edgardos",
6060
"Ekristoffe",
61+
"elec",
6162
"envcanada",
6263
"envsub",
6364
"envsubst",
@@ -85,6 +86,7 @@
8586
"GHSA",
8687
"ghsas",
8788
"grenagit",
89+
"Heiko",
8890
"Hirschberger",
8991
"hourlyweather",
9092
"Hwind",
@@ -117,6 +119,7 @@
117119
"krekos",
118120
"Kristjan",
119121
"krukle",
122+
"labwc",
120123
"Landis",
121124
"larryare",
122125
"letsencrypt",
@@ -132,6 +135,8 @@
132135
"martingron",
133136
"marvai",
134137
"mastermerge",
138+
"matchtype",
139+
"maxentries",
135140
"Meteo",
136141
"michaelteeuw",
137142
"michmich",
@@ -195,6 +200,7 @@
195200
"sunaction",
196201
"suncalc",
197202
"suntimes",
203+
"symboltest",
198204
"systeminformation",
199205
"tada",
200206
"taglist",
@@ -228,6 +234,7 @@
228234
"xlarge",
229235
"xrandr",
230236
"xsmall",
237+
"xsorifc",
231238
"xwindows",
232239
"xxxe",
233240
"Ybbet",

eslint.config.mjs

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
import eslintPluginImport from "eslint-plugin-import";
22
import eslintPluginJest from "eslint-plugin-jest";
33
import eslintPluginJs from "@eslint/js";
4-
import eslintPluginPackageJson from "eslint-plugin-package-json/configs/recommended";
4+
import eslintPluginPackageJson from "eslint-plugin-package-json";
55
import eslintPluginStylistic from "@stylistic/eslint-plugin";
66
import globals from "globals";
77

88
const config = [
9-
eslintPluginJs.configs.recommended,
109
eslintPluginImport.flatConfigs.recommended,
11-
eslintPluginPackageJson,
10+
eslintPluginJest.configs["flat/recommended"],
11+
eslintPluginJs.configs.recommended,
12+
eslintPluginPackageJson.configs.recommended,
13+
eslintPluginStylistic.configs.all,
1214
{
1315
files: ["**/*.js"],
1416
languageOptions: {
@@ -24,13 +26,7 @@ const config = [
2426
moment: "readonly"
2527
}
2628
},
27-
plugins: {
28-
...eslintPluginStylistic.configs["all-flat"].plugins,
29-
...eslintPluginJest.configs["flat/recommended"].plugins
30-
},
3129
rules: {
32-
...eslintPluginStylistic.configs["all-flat"].rules,
33-
...eslintPluginJest.configs["flat/recommended"].rules,
3430
"@stylistic/array-element-newline": ["error", "consistent"],
3531
"@stylistic/arrow-parens": ["error", "always"],
3632
"@stylistic/brace-style": "off",
@@ -99,11 +95,7 @@ const config = [
9995
},
10096
sourceType: "module"
10197
},
102-
plugins: {
103-
...eslintPluginStylistic.configs["all-flat"].plugins
104-
},
10598
rules: {
106-
...eslintPluginStylistic.configs["all-flat"].rules,
10799
"@stylistic/array-element-newline": "off",
108100
"@stylistic/indent": ["error", "tab"],
109101
"@stylistic/padded-blocks": ["error", "never"],

fonts/package-lock.json

+16-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fonts/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"license": "MIT",
1313
"dependencies": {
14-
"@fontsource/roboto": "^5.1.1",
15-
"@fontsource/roboto-condensed": "^5.1.1"
14+
"@fontsource/roboto": "^5.2.5",
15+
"@fontsource/roboto-condensed": "^5.2.5"
1616
}
1717
}

0 commit comments

Comments
 (0)