Skip to content

Commit c24de64

Browse files
sdetweilMichMichKristjanESPERANTOdependabot[bot]khassel
authored
Release 2.30.0 (#3673)
## [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]>
1 parent 94c3c69 commit c24de64

File tree

145 files changed

+4899
-1919
lines changed

Some content is hidden

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

145 files changed

+4899
-1919
lines changed

.github/CONTRIBUTING.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,28 @@ We hold our code to standard, and these standards are documented below.
66

77
## Linters
88

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.
1010

11-
### JavaScript: Run ESLint
11+
To run prettier, use `npm run lint:prettier`.
1212

13-
We use [ESLint](https://eslint.org) on our JavaScript files.
13+
### JavaScript: Run ESLint
1414

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.
1616

1717
To run ESLint, use `npm run lint:js`.
1818

1919
### CSS: Run StyleLint
2020

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.
2222

2323
To run StyleLint, use `npm run lint:css`.
2424

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+
2531
## Testing
2632

2733
We use [Jest](https://jestjs.io) for JavaScript testing.
@@ -43,7 +49,7 @@ When submitting a new issue, please supply the following information:
4349

4450
**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).
4551

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).
4753

4854
**MagicMirror² Version**: Please let us know which version of MagicMirror² you are running. It can be found in the `package.json` file.
4955

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ When submitting a new issue, please supply the following information:
3535

3636
**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).
3737

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).
3939

4040
**MagicMirror² Version**: Please let us know which version of MagicMirror² you are running. It can be found in the `package.json` file.
4141

.github/stale.yaml

-19
This file was deleted.

.github/workflows/automated-tests.yaml

+21-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,32 @@ permissions:
1313
contents: read
1414

1515
jobs:
16+
code-style-check:
17+
runs-on: ubuntu-latest
18+
timeout-minutes: 15
19+
steps:
20+
- name: "Checkout code"
21+
uses: actions/checkout@v4
22+
- name: "Use Node.js"
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: 23
26+
cache: "npm"
27+
- name: "Install dependencies"
28+
run: |
29+
npm run install-mm:dev
30+
- name: "Run linter tests"
31+
run: |
32+
npm run test:prettier
33+
npm run test:js
34+
npm run test:css
35+
npm run test:markdown
1636
test:
1737
runs-on: ubuntu-latest
1838
timeout-minutes: 30
1939
strategy:
2040
matrix:
21-
node-version: [20.9.0, 20.x, 22.x]
41+
node-version: [20.18.1, 20.x, 22.x, 23.x]
2242
steps:
2343
- name: "Checkout code"
2444
uses: actions/checkout@v4
@@ -36,7 +56,4 @@ jobs:
3656
Xvfb :99 -screen 0 1024x768x16 &
3757
export DISPLAY=:99
3858
touch css/custom.css
39-
npm run test:prettier
40-
npm run test:js
41-
npm run test:css
4259
npm run test

.github/workflows/dep-review.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,3 @@ jobs:
1616
uses: actions/checkout@v4
1717
- name: "Dependency Review"
1818
uses: actions/dependency-review-action@v4
19-
with:
20-
allow-ghsas: GHSA-8hc4-vh64-cxmj

.github/workflows/electron-rebuild.yaml

+3-3
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.9.0, 20.x, 22.x]
11+
node-version: [20.18.1, 20.x, 22.x, 23.x]
1212
steps:
1313
- name: Checkout code
1414
uses: actions/checkout@v4
@@ -23,8 +23,8 @@ jobs:
2323
run: npm install @electron/rebuild
2424
- name: Install node-libgpiod deps
2525
run: sudo apt-get install gpiod libgpiod2 libgpiod-dev
26-
- name: Install some test library to be rebuilded
27-
run: npm install node-libgpiod node-pty drivelist
26+
- name: Install test library (node-libgpiod) to be rebuilded
27+
run: npm install node-libgpiod
2828
- name: Run electron-rebuild
2929
run: npx electron-rebuild
3030
continue-on-error: false

.github/workflows/spellcheck.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow will run a spellcheck on the codebase.
2+
# It runs a few days before each release. At 00:00 on day-of-month 27 in March, June, September, and December.
3+
4+
name: Run Spellcheck
5+
6+
on:
7+
schedule:
8+
- cron: "0 0 27 3,6,9,12 *"
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
spellcheck:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
with:
20+
ref: develop
21+
- name: Set up Node.js
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: "22"
25+
check-latest: true
26+
cache: "npm"
27+
- name: Install dependencies
28+
run: |
29+
npm run install-mm:dev
30+
- name: Run Spellcheck
31+
run: npm run test:spellcheck

.github/workflows/stale.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Close stale issues and PRs"
2+
3+
on:
4+
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."
18+
days-before-issue-stale: 60
19+
days-before-issue-close: 7
20+
operations-per-run: 100
21+
stale-issue-label: "wontfix"
22+
exempt-issue-labels: "pinned,security,under investigation,pr welcome"

.husky/pre-commit

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22

3-
if command -v npm &> /dev/null; then
4-
npm run lint:staged
3+
if command -v npx &> /dev/null; then
4+
npx lint-staged
55
fi

.markdownlint.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"line_length": false,
3+
"no-duplicate-heading": false,
4+
"no-inline-html": false,
5+
"no-trailing-punctuation": false
6+
}

.prettierrc.json

-3
This file was deleted.

CHANGELOG.md

+119-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,74 @@
1-
# MagicMirror² Change Log
1+
# Changelog
22

33
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).
57

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

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
71+
872
## [2.29.0] - 2024-10-01
973

1074
Thanks to: @bugsounet, @dkallen78, @jargordon, @khassel, @KristjanESPERANTO, @MarcLandis, @rejas, @ryan-d-williams, @sdetweil, @skpanagiotis.
@@ -13,7 +77,7 @@ Thanks to: @bugsounet, @dkallen78, @jargordon, @khassel, @KristjanESPERANTO, @Ma
1377
1478
### Added
1579

16-
- [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)
1781
- [core] Check config at every start of MagicMirror² (#3450)
1882
- [core] Add spelling check (cspell): `npm run test:spelling` and handle spelling issues (#3544)
1983
- [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)
@@ -43,9 +107,9 @@ Thanks to: @bugsounet, @dkallen78, @jargordon, @khassel, @KristjanESPERANTO, @Ma
43107

44108
### Fixed
45109

46-
- Fixed `checks` badge in README.md
110+
- [docs] Fixed `checks` badge in README.md
47111
- [weather] Fixed issue with the UK Met Office provider following a change in their API paths and header info.
48-
- [core] add check for node_helper loading for multiple instances of same module (#3502)
112+
- [core] Add check for node_helper loading for multiple instances of same module (#3502)
49113
- [weather] Fixed issue for respecting unit config on broadcasted notifications
50114
- [tests] Fixes calendar test by moving it from e2e to electron with fixed date (#3532)
51115
- [calendar] fixed sliceMultiDayEvents getting wrong count and displaying incorrect entries, Europe/Berlin (#3542)
@@ -117,7 +181,7 @@ For more info, please read the following post: [A New Chapter for MagicMirror: T
117181

118182
### Fixed
119183

120-
- Correct apiBase of weathergov weatherProvider to match documentation (#2926)
184+
- [weather] Correct apiBase of weathergov weatherProvider to match documentation (#2926)
121185
- Worked around several issues in the RRULE library that were causing deleted calender events to still show, some
122186
initial and recurring events to not show, and some event times to be off an hour. (#3291)
123187
- 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
269333

270334
### Updated
271335

272-
- Added support for precipitation probability with openmeteo weather-provider
336+
- [weather] Added support for precipitation probability with openmeteo weather-provider
273337
- Update electron to v25.2 and other dependencies
274338
- Use node v20 in github workflow (replacing v14)
275339
- Refactor formatTime into common util function for default modules
@@ -442,7 +506,7 @@ Special thanks to the following contributors: @eouia, @khassel, @kolbyjack, @Kri
442506

443507
### Added
444508

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).
446510
- Show endDate for calendar events when dateHeader is enabled and showEnd is set to true (#2192).
447511
- Added the notification emitting from the weather module on information updated.
448512
- Use recommended file extension for YAML files (#2864).
@@ -1606,3 +1670,50 @@ It includes (but is not limited to) the following features:
16061670
### Initial release of MagicMirror
16071671

16081672
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)
1673+
1674+
[2.30.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.29.0...v2.30.0
1675+
[2.29.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.28.0...v2.29.0
1676+
[2.28.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.27.0...v2.28.0
1677+
[2.27.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.26.0...v2.27.0
1678+
[2.26.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.25.0...v2.26.0
1679+
[2.25.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.24.0...v2.25.0
1680+
[2.24.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.23.0...v2.24.0
1681+
[2.23.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.22.0...v2.23.0
1682+
[2.22.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.21.0...v2.22.0
1683+
[2.21.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.20.0...v2.21.0
1684+
[2.20.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.19.0...v2.20.0
1685+
[2.19.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.18.0...v2.19.0
1686+
[2.18.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.17.1...v2.18.0
1687+
[2.17.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.17.0...v2.17.1
1688+
[2.17.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.16.0...v2.17.0
1689+
[2.16.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.15.0...v2.16.0
1690+
[2.15.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.14.0...v2.15.0
1691+
[2.14.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.13.0...v2.14.0
1692+
[2.13.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.12.0...v2.13.0
1693+
[2.12.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.11.0...v2.12.0
1694+
[2.11.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.10.1...v2.11.0
1695+
[2.10.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.10.0...v2.10.1
1696+
[2.10.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.9.0...v2.10.0
1697+
[2.9.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.8.0...v2.9.0
1698+
[2.8.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.7.1...v2.8.0
1699+
[2.7.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.7.0...v2.7.1
1700+
[2.7.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.6.0...v2.7.0
1701+
[2.6.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.5.0...v2.6.0
1702+
[2.5.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.4.1...v2.5.0
1703+
[2.4.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.4.0...v2.4.1
1704+
[2.4.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.3.1...v2.4.0
1705+
[2.3.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.3.0...v2.3.1
1706+
[2.3.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.2.2...v2.3.0
1707+
[2.2.2]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.2.1...v2.2.2
1708+
[2.2.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.2.0...v2.2.1
1709+
[2.2.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.1.3...v2.2.0
1710+
[2.1.3]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.1.2...v2.1.3
1711+
[2.1.2]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.1.1...v2.1.2
1712+
[2.1.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.1.0...v2.1.1
1713+
[2.1.0]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.0.5...v2.1.0
1714+
[2.0.5]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.0.4...v2.0.5
1715+
[2.0.4]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.0.3...v2.0.4
1716+
[2.0.3]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.0.2...v2.0.3
1717+
[2.0.2]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.0.1...v2.0.2
1718+
[2.0.1]: https://github.com/MagicMirrorOrg/MagicMirror/compare/v2.0.0...v2.0.1
1719+
[2.0.0]: https://github.com/MagicMirrorOrg/MagicMirror/releases/tag/v2.0.0

0 commit comments

Comments
 (0)