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.23.0] - 2023-04-04
Thanks to: @angeldeejay, @buxxi, @CarJem, @dariom, @DaveChild, @dWoolridge, @grenagit, @Hirschberger, @KristjanESPERANTO, @MagMar94, @naveensrinivasan, @nfogal, @psieg, @rajniszp, @retroflex, @SkySails and @tomzt.
Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not all) of the work on this release as project collaborators. This version would not be there without their effort. Thank you guys! You are awesome!
### Added
- Added increments for hourly forecasts in weather module (#2996)
- Added tests for hourly weather forecast
- Added possibility to ignore MagicMirror repo in updatenotification module
- Added Pirate Weather as new weather provider (#3005)
- Added possibility to use your own templates in Alert module
- Added error message if `<modulename>.js` file is missing in module folder to get a hint in the logs (#2403)
- Added possibility to use environment variables in `config.js` (#1756)
- Added option `pastDaysCount` to default calendar module to control of how many days past events should be displayed
- Added thai language to alert module
- Added option `sendNotifications` in clock module (#3056)
### Removed
- Removed darksky weather provider
- Removed unneeded (and unwanted) '.' after the year in calendar repeatingCountTitle (#2896)
### Updated
- Use develop as target branch for dependabot
- Update issue template, contributing doc and sample config
- The weather modules clearly separates precipitation amount and probability (risk of rain/snow)
- This requires all providers that only supports probability to change the config from `showPrecipitationAmount` to `showPrecipitationProbability`.
- Update tests for weather and calendar module
- Changed updatenotification module for MagicMirror repo only: Send only notifications for `master` if there is a tag on a newer commit
- Update dates in Calendar widgets every minute
- Cleanup jest coverage for patches
- Update `stylelint` dependencies, switch to `stylelint-config-standard` and handle `stylelint` issues, update `main.css` matching new rules
- Update Eslint config, add new rule and handle issue
- Convert lots of callbacks to async/await
- Revise require imports (#3071 and #3072)
### Fixed
- Fix wrong day labels in envcanada forecast (#2987)
- Fix for missing default class name prefix for customEvents in calendar
- Fix electron flashing white screen on startup (#1919)
- Fix weathergov provider hourly forecast (#3008)
- Fix message display with HTML code into alert module (#2828)
- Fix typo in french translation
- Yr wind direction is no longer inverted
- Fix async node_helper stopping electron start (#2487)
- The wind direction arrow now points in the direction the wind is flowing, not into the wind (#3019)
- Fix precipitation css styles and rounding value
- Fix wrong vertical alignment of calendar title column when wrapEvents is true (#3053)
- Fix empty news feed stopping the reload forever
- Fix e2e tests (failed after async changes) by running calendar and newsfeed tests last
- Lint: Use template literals instead of string concatenation
- Fix default alert module to render HTML for title and message
- Fix Open-Meteo wind speed units
Copy file name to clipboardexpand all lines: .github/CONTRIBUTING.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ We hold our code to standard, and these standards are documented below.
6
6
7
7
## Linters
8
8
9
-
If you wish to run our linters, use `npm run lint` without any arguments.
9
+
We use prettier for automatic linting of all our files: `npm run lint:prettier`.
10
10
11
11
### JavaScript: Run ESLint
12
12
@@ -18,7 +18,7 @@ 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. Our configuration is in our `.stylelintrc` file.
22
22
23
23
To run StyleLint, use `npm run lint:css`.
24
24
@@ -28,7 +28,8 @@ We use [Jest](https://jestjs.io) for JavaScript testing.
28
28
29
29
To run all tests, use `npm run test`.
30
30
31
-
The specific test commands are defined in `package.json`. So you can also run the specific tests with other commands, e.g. `npm run test:unit` or `npx jest tests/e2e/env_spec.js`.
31
+
The specific test commands are defined in `package.json`.
32
+
So you can also run the specific tests with other commands, e.g. `npm run test:unit` or `npx jest tests/e2e/env_spec.js`.
# This workflow scans your pull requests for dependency changes, and will raise an error if any vulnerabilities or invalid licenses are being introduced.
2
+
# For more information see: https://github.com/actions/dependency-review-action
Copy file name to clipboardexpand all lines: CHANGELOG.md
+62-2
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,64 @@ This project adheres to [Semantic Versioning](https://semver.org/).
5
5
6
6
❤️ **Donate:** Enjoying MagicMirror²? [Please consider a donation!](https://magicmirror.builders/donate) With your help we can continue to improve the MagicMirror².
7
7
8
+
## [2.23.0] - 2023-04-04
9
+
10
+
Thanks to: @angeldeejay, @buxxi, @CarJem, @dariom, @DaveChild, @dWoolridge, @grenagit, @Hirschberger, @KristjanESPERANTO, @MagMar94, @naveensrinivasan, @nfogal, @psieg, @rajniszp, @retroflex, @SkySails and @tomzt.
11
+
12
+
Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not all) of the work on this release as project collaborators. This version would not be there without their effort. Thank you guys! You are awesome!
13
+
14
+
### Added
15
+
16
+
- Added increments for hourly forecasts in weather module (#2996)
17
+
- Added tests for hourly weather forecast
18
+
- Added possibility to ignore MagicMirror repo in updatenotification module
19
+
- Added Pirate Weather as new weather provider (#3005)
20
+
- Added possibility to use your own templates in Alert module
21
+
- Added error message if `<modulename>.js` file is missing in module folder to get a hint in the logs (#2403)
22
+
- Added possibility to use environment variables in `config.js` (#1756)
23
+
- Added option `pastDaysCount` to default calendar module to control of how many days past events should be displayed
24
+
- Added thai language to alert module
25
+
- Added option `sendNotifications` in clock module (#3056)
26
+
27
+
### Removed
28
+
29
+
- Removed darksky weather provider
30
+
- Removed unneeded (and unwanted) '.' after the year in calendar repeatingCountTitle (#2896)
31
+
32
+
### Updated
33
+
34
+
- Use develop as target branch for dependabot
35
+
- Update issue template, contributing doc and sample config
36
+
- The weather modules clearly separates precipitation amount and probability (risk of rain/snow)
37
+
- This requires all providers that only supports probability to change the config from `showPrecipitationAmount` to `showPrecipitationProbability`.
38
+
- Update tests for weather and calendar module
39
+
- Changed updatenotification module for MagicMirror repo only: Send only notifications for `master` if there is a tag on a newer commit
40
+
- Update dates in Calendar widgets every minute
41
+
- Cleanup jest coverage for patches
42
+
- Update `stylelint` dependencies, switch to `stylelint-config-standard` and handle `stylelint` issues, update `main.css` matching new rules
43
+
- Update Eslint config, add new rule and handle issue
44
+
- Convert lots of callbacks to async/await
45
+
- Revise require imports (#3071 and #3072)
46
+
47
+
### Fixed
48
+
49
+
- Fix wrong day labels in envcanada forecast (#2987)
50
+
- Fix for missing default class name prefix for customEvents in calendar
51
+
- Fix electron flashing white screen on startup (#1919)
52
+
- Fix weathergov provider hourly forecast (#3008)
53
+
- Fix message display with HTML code into alert module (#2828)
54
+
- Fix typo in french translation
55
+
- Yr wind direction is no longer inverted
56
+
- Fix async node_helper stopping electron start (#2487)
57
+
- The wind direction arrow now points in the direction the wind is flowing, not into the wind (#3019)
58
+
- Fix precipitation css styles and rounding value
59
+
- Fix wrong vertical alignment of calendar title column when wrapEvents is true (#3053)
60
+
- Fix empty news feed stopping the reload forever
61
+
- Fix e2e tests (failed after async changes) by running calendar and newsfeed tests last
62
+
- Lint: Use template literals instead of string concatenation
63
+
- Fix default alert module to render HTML for title and message
64
+
- Fix Open-Meteo wind speed units
65
+
8
66
## [2.22.0] - 2023-01-01
9
67
10
68
Thanks to: @angeldeejay, @buxxi, @dariom, @dWoolridge, @KristjanESPERANTO, @MagMar94, @naveensrinivasan, @retroflex, @SkySails and @Tom.
@@ -13,20 +71,22 @@ Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not al
13
71
14
72
### Added
15
73
74
+
- Added new calendar options for colored entries and improved styling (#3033)
16
75
- Added test for remoteFile option in compliments module
17
76
- Added hourlyWeather functionality to Weather.gov weather provider
18
-
- Removed weatherEndpoint definition from weathergov.js (not used)
19
77
- Added css class names "today" and "tomorrow" for default calendar
20
78
- Added Collaboration.md
21
79
- Added new github action for dependency review (#2862)
22
80
- Added a WeatherProvider for Open-Meteo
23
81
- Added Yr as a weather provider
24
82
- Added config options "ignoreXOriginHeader" and "ignoreContentSecurityPolicy"
25
83
- Added thai language
84
+
- Added workflow rule to make sure PRs are based against develop
26
85
27
86
### Removed
28
87
29
88
- Removed usage of internal fetch function of node until it is more stable
89
+
- Removed weatherEndpoint definition from weathergov.js (not used)
30
90
31
91
### Updated
32
92
@@ -40,7 +100,7 @@ Special thanks to @khassel, @rejas and @sdetweil for taking over most (if not al
40
100
- Reworked how weatherproviders handle units (#2849)
41
101
- Use unix() method for parsing times, fix suntimes on the way (#2950)
42
102
- Refactor conversion functions into utils class (#2958)
43
-
- The `cors`-method in `server.js` now supports sending and recieving HTTP headers
103
+
- The `cors`-method in `server.js` now supports sending and receiving HTTP headers
44
104
- Replace `…` by `…`
45
105
- Cleanup compliments module
46
106
- Updated dependencies including electron to v22 (#2903)
Copy file name to clipboardexpand all lines: Collaboration.md
+6
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,14 @@ This document describes how collaborators of this repository should work togethe
5
5
- never merge your own PR's
6
6
- never merge without someone having approved (approving and merging from same person is allowed)
7
7
- wait for all approvals requested (or the author decides something different in the comments)
8
+
- never merge to `master`, except for releases (because of update notification)
9
+
- merges to master should be tagged with the "mastermerge" label so that the test runs through
8
10
9
11
## Issues
10
12
11
13
- "real" Issues are closed if the problem is solved and the fix is released
12
14
- unrelated Issues (e.g. related to a foreign module) are closed immediately with a comment to open an issue in the module repository or to discuss this further in the forum or discord
0 commit comments