You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## [2.30.0] - 2025-01-01
Thanks to: @xsorifc28, @HeikoGr, @bugsounet, @khassel,
@KristjanESPERANTO, @rejas, @sdetweil.
> ⚠️ This release needs nodejs version `v20` or `v22 or higher`, minimum
version is `v20.18.1`
### Added
- [core] Add wayland and windows start options to `package.json` (#3594)
- [docs] Add step for npm publishing in release process (#3595)
- [core] Add GitHub workflow to run spellcheck a few days before each
release (#3623)
- [core] Add test flag to `index.html` to pass to module js for test
mode detection (needed by #3630)
- [core] Add export on animation names (#3644)
- [compliments] Add support for refreshing remote compliments file, and
test cases (#3630)
- [linter] Re-add `eslint-plugin-import`now that it supports ESLint v9
(#3586)
- [linter] Re-activate `eslint-plugin-package-json` to lint
`package.json` (#3643)
- [linter] Add linting for markdown files (#3646)
- [linter] Add some handy ESLint rules.
- [calendar] Add ability to display end date for full date events, where
end is not same day (showEnd=true) (#3650)
- [core] Add text to the config.js.sample file about the locale variable
(#3654, #3655)
- [core] Add fetch timeout for all node_helpers (thru undici, forces
node 20.18.1 minimum) to help on slower systems. (#3660) (3661)
### Changed
- [core] Run code style checks in workflow only once (#3648)
- [core] Fix animations export #3644 only on server side (#3649)
- [core] Use project URL in fallback config (#3656)
- [core] Fix Access Denied crash writing js/positions.js (on synology
nas) #3651. new message, MM starts, but no modules showing (#3652)
- [linter] Switch to 'npx' for lint-staged in pre-commit hook (#3658)
### Removed
- [tests] Remove `node-pty` and `drivelist` from rebuilded test (#3575)
- [deps] Remove `@eslint/js` dependency. Already installed with `eslint`
in deep (#3636)
### Updated
- [repo] Reactivate `stale.yaml` as GitHub action to mark issues as
stale after 60 days and close them 7 days later (if no activity) (#3577,
#3580, #3581)
- [core] Update electron dependency to v32 (test electron rebuild) and
all other dependencies too (#3657)
- [tests] All test configs have been updated to allow full external
access, allowing for easier debugging (especially when running as a
container)
- [core] Run and test with node 23 (#3588)
- [workflow] delete exception `allow-ghsas: GHSA-8hc4-vh64-cxmj` in
`dep-review.yaml` (#3659)
### Fixed
- [updatenotification] Fix pm2 using detection when pm2 script is inside
or outside MagicMirror root folder (#3576) (#3605) (#3626) (#3628)
- [core] Fix loading node_helper of modules: avoid black screen, display
errors and continue loading with next module (#3578)
- [weather] Change default value for weatherEndpoint of provider
openweathermap to "/onecall" (#3574)
- [tests] Fix electron tests with mock dates, the mock on server side
was missing (#3597)
- [tests] Fix testcases with hard coded Date.now (#3597)
- [core] Fix missing `basePath` where `location.host` is used (#3613)
- [compliments] croner library changed filenames used in latest version
(#3624)
- [linter] Fix ESLint ignore pattern which caused that default modules
not to be linted (#3632)
- [core] Fix module path in case of sub/sub folder is used and use
path.resolve for resolve `moduleFolder` and `defaultModuleFolder` in
app.js (#3653)
- [calendar] Update to resolve issues #3098#3144#3351#3422#3443#3467#3537 related to timezone changes
- [calendar] Fix#3267 (styles array), also fixes event with both exdate
AND recurrence(and testcase)
- [calendar] Fix showEndsOnlyWithDuration not working, #3598, applies
ONLY to full day events
- [calendar] Fix showEnd for Full Day events (#3602)
- [tests] Suppress "module is not defined" in e2e tests (#3647)
- [calendar] Fix#3267 (styles array, really this time!)
- [core] Fix#3662 js/positions.js created incorrectly
---------
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: Veeck <[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: vppencilsharpener <[email protected]>
Co-authored-by: veeck <[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]>
Copy file name to clipboardexpand all lines: .github/CONTRIBUTING.md
+12-6
Original file line number
Diff line number
Diff line change
@@ -6,22 +6,28 @@ We hold our code to standard, and these standards are documented below.
6
6
7
7
## Linters
8
8
9
-
We use prettier for automatic linting of all our files: `npm run lint:prettier`.
9
+
We use [prettier](https://prettier.io/) for automatic formatting a lot all our files. The configuration is in our `prettier.config.mjs` file.
10
10
11
-
### JavaScript: Run ESLint
11
+
To run prettier, use `npm run lint:prettier`.
12
12
13
-
We use [ESLint](https://eslint.org) on our JavaScript files.
13
+
### JavaScript: Run ESLint
14
14
15
-
The ESLint configuration is in our `eslint.config.mjs` file.
15
+
We use [ESLint](https://eslint.org) to lint our JavaScript files. The configuration is in our `eslint.config.mjs` file.
16
16
17
17
To run ESLint, use `npm run lint:js`.
18
18
19
19
### CSS: Run StyleLint
20
20
21
-
We use [StyleLint](https://stylelint.io) to lint our CSS. Our configuration is in our `.stylelintrc` file.
21
+
We use [StyleLint](https://stylelint.io) to lint our CSS. The configuration is in our `.stylelintrc.json` file.
22
22
23
23
To run StyleLint, use `npm run lint:css`.
24
24
25
+
### Markdown: Run markdownlint
26
+
27
+
We use [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2) to lint our markdown files. The configuration is in our `.markdownlint.json` file.
28
+
29
+
To run markdownlint, use `npm run markdownlint:css`.
30
+
25
31
## Testing
26
32
27
33
We use [Jest](https://jestjs.io) for JavaScript testing.
@@ -43,7 +49,7 @@ When submitting a new issue, please supply the following information:
43
49
44
50
**Platform**: Place your platform here... give us your web browser/Electron version _and_ your hardware (Raspberry Pi 2/3/4, Windows, Mac, Linux, System V UNIX).
45
51
46
-
**Node Version**: Make sure it's version 18 or later (recommended is 20).
52
+
**Node Version**: Make sure it's version 20 or later (recommended is 22).
47
53
48
54
**MagicMirror² Version**: Please let us know which version of MagicMirror² you are running. It can be found in the `package.json` file.
Copy file name to clipboardexpand all lines: .github/ISSUE_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ When submitting a new issue, please supply the following information:
35
35
36
36
**Platform**: Place your platform here... give us your web browser/Electron version _and_ your hardware (Raspberry Pi 2/3/4, Windows, Mac, Linux, System V UNIX).
37
37
38
-
**Node Version**: Make sure it's version 18 or later (recommended is 20).
38
+
**Node Version**: Make sure it's version 20 or later (recommended is 22).
39
39
40
40
**MagicMirror² Version**: Please let us know which version of MagicMirror² you are running. It can be found in the `package.json` file.
workflow_dispatch: # needed for manually running this workflow
5
+
schedule:
6
+
- cron: "30 1 * * 6"# every Saturday at 1:30
7
+
8
+
permissions:
9
+
issues: write
10
+
11
+
jobs:
12
+
stale:
13
+
runs-on: ubuntu-latest
14
+
steps:
15
+
- uses: actions/stale@v9
16
+
with:
17
+
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."
Copy file name to clipboardexpand all lines: CHANGELOG.md
+119-8
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,74 @@
1
-
# MagicMirror² Change Log
1
+
# Changelog
2
2
3
3
All notable changes to this project will be documented in this file.
4
-
This project adheres to [Semantic Versioning](https://semver.org/).
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
7
6
8
❤️ **Donate:** Enjoying MagicMirror²? [Please consider a donation!](https://magicmirror.builders/#donate) With your help we can continue to improve the MagicMirror².
7
9
10
+
## [2.30.0] - 2025-01-01
11
+
12
+
Thanks to: @xsorifc28, @HeikoGr, @bugsounet, @khassel, @KristjanESPERANTO, @rejas, @sdetweil.
13
+
14
+
> ⚠️ This release needs nodejs version `v20` or `v22 or higher`, minimum version is `v20.18.1`
15
+
16
+
### Added
17
+
18
+
-[core] Add wayland and windows start options to `package.json` (#3594)
19
+
-[docs] Add step for npm publishing in release process (#3595)
20
+
-[core] Add GitHub workflow to run spellcheck a few days before each release (#3623)
21
+
-[core] Add test flag to `index.html` to pass to module js for test mode detection (needed by #3630)
22
+
-[core] Add export on animation names (#3644)
23
+
-[compliments] Add support for refreshing remote compliments file, and test cases (#3630)
24
+
-[linter] Re-add `eslint-plugin-import`now that it supports ESLint v9 (#3586)
25
+
-[linter] Re-activate `eslint-plugin-package-json` to lint `package.json` (#3643)
26
+
-[linter] Add linting for markdown files (#3646)
27
+
-[linter] Add some handy ESLint rules.
28
+
-[calendar] Add ability to display end date for full date events, where end is not same day (showEnd=true) (#3650)
29
+
-[core] Add text to the config.js.sample file about the locale variable (#3654, #3655)
30
+
-[core] Add fetch timeout for all node_helpers (thru undici, forces node 20.18.1 minimum) to help on slower systems. (#3660) (3661)
31
+
32
+
### Changed
33
+
34
+
-[core] Run code style checks in workflow only once (#3648)
35
+
-[core] Fix animations export #3644 only on server side (#3649)
36
+
-[core] Use project URL in fallback config (#3656)
37
+
-[core] Fix Access Denied crash writing js/positions.js (on synology nas) #3651. new message, MM starts, but no modules showing (#3652)
38
+
-[linter] Switch to 'npx' for lint-staged in pre-commit hook (#3658)
39
+
40
+
### Removed
41
+
42
+
-[tests] Remove `node-pty` and `drivelist` from rebuilded test (#3575)
43
+
-[deps] Remove `@eslint/js` dependency. Already installed with `eslint` in deep (#3636)
44
+
45
+
### Updated
46
+
47
+
-[repo] Reactivate `stale.yaml` as GitHub action to mark issues as stale after 60 days and close them 7 days later (if no activity) (#3577, #3580, #3581)
48
+
-[core] Update electron dependency to v32 (test electron rebuild) and all other dependencies too (#3657)
49
+
-[tests] All test configs have been updated to allow full external access, allowing for easier debugging (especially when running as a container)
50
+
-[core] Run and test with node 23 (#3588)
51
+
-[workflow] delete exception `allow-ghsas: GHSA-8hc4-vh64-cxmj` in `dep-review.yaml` (#3659)
52
+
53
+
### Fixed
54
+
55
+
-[updatenotification] Fix pm2 using detection when pm2 script is inside or outside MagicMirror root folder (#3576) (#3605) (#3626) (#3628)
56
+
-[core] Fix loading node_helper of modules: avoid black screen, display errors and continue loading with next module (#3578)
57
+
-[weather] Change default value for weatherEndpoint of provider openweathermap to "/onecall" (#3574)
58
+
-[tests] Fix electron tests with mock dates, the mock on server side was missing (#3597)
59
+
-[tests] Fix testcases with hard coded Date.now (#3597)
60
+
-[core] Fix missing `basePath` where `location.host` is used (#3613)
61
+
-[compliments] croner library changed filenames used in latest version (#3624)
62
+
-[linter] Fix ESLint ignore pattern which caused that default modules not to be linted (#3632)
63
+
-[core] Fix module path in case of sub/sub folder is used and use path.resolve for resolve `moduleFolder` and `defaultModuleFolder` in app.js (#3653)
64
+
-[calendar] Update to resolve issues #3098#3144#3351#3422#3443#3467#3537 related to timezone changes
65
+
-[calendar] Fix #3267 (styles array), also fixes event with both exdate AND recurrence(and testcase)
66
+
-[calendar] Fix showEndsOnlyWithDuration not working, #3598, applies ONLY to full day events
67
+
-[calendar] Fix showEnd for Full Day events (#3602)
68
+
-[tests] Suppress "module is not defined" in e2e tests (#3647)
69
+
-[calendar] Fix #3267 (styles array, really this time!)
70
+
-[core] Fix #3662 js/positions.js created incorrectly
-[compliments] Added support for cron type date/time format entries mm hh DD MM dow (minutes/hours/days/months and day of week) see https://crontab.cronhub.io for construction (#3481)
80
+
-[compliments] Added support for cron type date/time format entries mm hh DD MM dow (minutes/hours/days/months and day of week) see <https://crontab.cronhub.io> for construction (#3481)
17
81
-[core] Check config at every start of MagicMirror² (#3450)
18
82
-[core] Add spelling check (cspell): `npm run test:spelling` and handle spelling issues (#3544)
19
83
-[core] removed `config.paths.vendor` (could not work because `vendor` is hardcoded in `index.html`), renamed `config.paths.modules` to `config.foreignModulesDir`, added variable `MM_CUSTOMCSS_FILE` which - if set - overrides `config.customCss`, added variable `MM_MODULES_DIR` which - if set - overrides `config.foreignModulesDir`, added test for `MM_MODULES_DIR` (#3530)
@@ -117,7 +181,7 @@ For more info, please read the following post: [A New Chapter for MagicMirror: T
117
181
118
182
### Fixed
119
183
120
-
- Correct apiBase of weathergov weatherProvider to match documentation (#2926)
184
+
-[weather]Correct apiBase of weathergov weatherProvider to match documentation (#2926)
121
185
- Worked around several issues in the RRULE library that were causing deleted calender events to still show, some
122
186
initial and recurring events to not show, and some event times to be off an hour. (#3291)
123
187
- Skip changelog requirement when running tests for dependency updates (#3320)
@@ -269,7 +333,7 @@ Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not al
269
333
270
334
### Updated
271
335
272
-
- Added support for precipitation probability with openmeteo weather-provider
336
+
-[weather]Added support for precipitation probability with openmeteo weather-provider
273
337
- Update electron to v25.2 and other dependencies
274
338
- Use node v20 in github workflow (replacing v14)
275
339
- Refactor formatTime into common util function for default modules
@@ -442,7 +506,7 @@ Special thanks to the following contributors: @eouia, @khassel, @kolbyjack, @Kri
442
506
443
507
### Added
444
508
445
-
- Added a new config option `httpHeaders` used by helmet (see https://helmetjs.github.io/). You can now set own httpHeaders which will override the defaults in `js/defaults.js` which is useful e.g. if you want to embed MagicMirror into another website (solves #2847).
509
+
- Added a new config option `httpHeaders` used by helmet (see <https://helmetjs.github.io/>). You can now set own httpHeaders which will override the defaults in `js/defaults.js` which is useful e.g. if you want to embed MagicMirror into another website (solves #2847).
446
510
- Show endDate for calendar events when dateHeader is enabled and showEnd is set to true (#2192).
447
511
- Added the notification emitting from the weather module on information updated.
448
512
- Use recommended file extension for YAML files (#2864).
@@ -1606,3 +1670,50 @@ It includes (but is not limited to) the following features:
1606
1670
### Initial release of MagicMirror
1607
1671
1608
1672
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)
0 commit comments