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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+30-1Lines changed: 30 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,35 @@
2
2
All notable changes to this project will be documented in this file.
3
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
+
## [2.2.0] - 2018-01-01
6
+
7
+
**Note:** This update uses new dependencies. Please update using the following command: `git pull && npm install`
8
+
9
+
### Changed
10
+
- Calender week is now handled with a variable translation in order to move number language specific.
11
+
- Reverted the Electron dependency back to 1.4.15 since newer version don't seem to work on the Raspberry Pi very well.
12
+
13
+
### Added
14
+
- Add option to use [Nunjucks](https://mozilla.github.io/nunjucks/) templates in modules. (See `helloworld` module as an example.)
15
+
- Add Bulgarian translations for MagicMirror² and Alert module.
16
+
- Add graceful shutdown of modules by calling `stop` function of each `node_helper` on SIGINT before exiting.
17
+
- Link update subtext to Github diff of current version versus tracking branch.
18
+
- Add Catalan translation.
19
+
- Add ability to filter out newsfeed items based on prohibited words found in title (resolves #1071)
20
+
- Add options to truncate description support of a feed in newsfeed module
21
+
- Add reloadInterval option for particular feed in newsfeed module
22
+
- Add no-cache entries of HTTP headers in newsfeed module (fetcher)
23
+
- Add Czech translation.
24
+
- Add option for decimal symbols other than the decimal point for temperature values in both default weather modules: WeatherForecast and CurrentWeather.
25
+
26
+
### Updated
27
+
28
+
### Fixed
29
+
- Fixed issue with calendar module showing more than `maximumEntries` allows
30
+
- WeatherForecast and CurrentWeather are now using HTTPS instead of HTTP
31
+
- Correcting translation for Indonesian language
32
+
- Fix issue where calendar icons wouldn't align correctly
33
+
5
34
## [2.1.3] - 2017-10-01
6
35
7
36
**Note:** This update uses new dependencies. Please update using the following command: `git pull && npm install`
@@ -29,7 +58,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
29
58
- Changed 'default.js' - listen on all attached interfaces by default.
30
59
- Add execution of `npm list` after the test are ran in Travis CI.
31
60
- Change hooks for the vendors e2e tests.
32
-
- Add log when clientonly failed on starting.
61
+
- Add log when clientonly failed on starting.
33
62
- Add warning color when are using full ip whitelist.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ The following properties can be configured:
122
122
|**Option**|**Description**|
123
123
| --- | --- |
124
124
|`port`| The port on which the MagicMirror² server will run on. The default value is `8080`. |
125
-
|`address`| The ip address the accept connections. The default open bind `::` is IPv6 is available or `0.0.0.0` IPv4 run on. Example config: `192.168.10.100`. |
125
+
|`address`| The ip address the accept connections. The default open bind `localhost`. Example config: `192.168.10.100`. |
126
126
|`ipWhitelist`| The list of IPs from which you are allowed to access the MagicMirror². The default value is `["127.0.0.1", "::ffff:127.0.0.1", "::1"]`. It is possible to specify IPs with subnet masks (`["127.0.0.1", "127.0.0.1/24"]`) or define ip ranges (`["127.0.0.1", ["192.168.0.1", "192.168.0.100"]]`). Set `[]` to allow all IP addresses. For more information about how configure this directive see the [follow post ipWhitelist HowTo](https://forum.magicmirror.builders/topic/1326/ipwhitelist-howto)|
127
127
|`zoom`| This allows to scale the mirror contents with a given zoom factor. The default value is `1.0`|
128
128
|`language`| The language of the interface. (Note: Not all elements will be localized.) Possible values are `en`, `nl`, `ru`, `fr`, etc., but the default value is `en`. |
Copy file name to clipboardExpand all lines: modules/README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -555,6 +555,17 @@ start: function() {
555
555
}
556
556
````
557
557
558
+
#### `stop()`
559
+
This method is called when the MagicMirror server receives a `SIGINT` command and is shutting down. This method should include any commands needed to close any open connections, stop any sub-processes and gracefully exit the module.
0 commit comments