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
+25-2Lines changed: 25 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,29 @@
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.0.4] - 2016-08-07
6
+
7
+
### Added
8
+
- Brazilian Portuguese Translation.
9
+
- Option to enable Kios mode.
10
+
- Added ability to start the app with Dev Tools.
11
+
- Added ability to turn off the date display in `clock.js` when in analog mode.
12
+
- Greek Translation
13
+
14
+
### Fixed
15
+
- Prevent `getModules()` selectors from returning duplicate entries.
16
+
- Append endpoints of weather modules with `/` to retreive the correct data. (Issue [#337](https://github.com/MichMich/MagicMirror/issues/337))
17
+
- Corrected grammer in `module.js` from 'suspend' to 'suspended'.
18
+
- Fixed openweathermap.org URL in config sample.
19
+
- Prevent currentweather module from crashing when received data object is incorrect.
20
+
- Fix issue where translation loading prevented the UI start-up when the language was set to 'en'. (Issue [#388](https://github.com/MichMich/MagicMirror/issues/388))
21
+
22
+
### Updated
23
+
- Updated package.json to fix possible vulnerabilities. (Using Snyk)
24
+
- Updated weathericons
25
+
- Updated default weatherforecast to work with the new icons.
26
+
- More detailed error message in case config file couldn't be loaded.
27
+
5
28
## [2.0.3] - 2016-07-12
6
29
### Added
7
30
- Add max newsitems parameter to the newsfeed module.
@@ -10,8 +33,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
10
33
- Add an analog clock in addition to the digital one.
11
34
12
35
### Fixed
13
-
- Edit Alert Module to display title & message if they are provided in the notification (Issue #300)
14
-
- Removed 'null' reference from updateModuleContent(). This fixes recent Edge and Internet Explorer browser displays (Issue #319)
36
+
- Edit Alert Module to display title & message if they are provided in the notification (Issue [#300](https://github.com/MichMich/MagicMirror/issues/300))
37
+
- Removed 'null' reference from updateModuleContent(). This fixes recent Edge and Internet Explorer browser displays (Issue [#319](https://github.com/MichMich/MagicMirror/issues/319))
**MagicMirror²** is an open source modular smart mirror platform. With a growing list of installable modules, the **MagicMirror²** allows you to convert your hallway or bathroom mirror into your personal assistant. **MagicMirror²** is built by the creator of [the original MagicMirror](http://michaelteeuw.nl/tagged/magicmirror) with the incredible help of a [growing community of contributors](https://github.com/MichMich/MagicMirror/graphs/contributors).
12
+
**MagicMirror²** is an open source modular smart mirror platform. With a growing list of installable modules, the **MagicMirror²** allows you to convert your hallway or bathroom mirror into your personal assistant. **MagicMirror²** is built by the creator of [the original MagicMirror](http://michaelteeuw.nl/tagged/magicmirror) with the incredible help of a [growing community of contributors](https://github.com/MichMich/MagicMirror/graphs/contributors).
13
13
14
14
MagicMirror² focuses on a modular plugin system and uses [Electron](http://electron.atom.io/) as an application wrapper. So no more web server or browser installs necessary!
15
15
@@ -22,7 +22,7 @@ MagicMirror² focuses on a modular plugin system and uses [Electron](http://elec
Electron, the app wrapper around MagicMirror², only supports the Raspberry Pi 2 & 3. The Raspberry Pi 1 is currently **not** supported. If you want to run this on a Raspberry Pi 1, use the [server only](#server-only) feature and setup a fullscreen browser yourself.
**Important:**`npm start` does **not** work via SSH, use `DISPLAY=:0 nohup npm start &` instead. This starts the mirror on the remote display.
45
45
46
+
**Note:** if you want to debug on Raspberry Pi you can use `npm start dev` which will start the MagicMirror app with Dev Tools enabled.
47
+
46
48
#### Server Only
47
49
48
50
In some cases, you want to start the application without an actual app window. In this case, execute the following command from the MagicMirror folder: `node serveronly`. This will start the server, after which you can open the application in your browser of choice.
@@ -59,9 +61,9 @@ If you want to update your MagicMirror² to the latest version, use your termina
59
61
60
62
````
61
63
git pull
62
-
````
64
+
````
63
65
64
-
If you changed nothing more than the config or the modules, this should work without any problems.
66
+
If you changed nothing more than the config or the modules, this should work without any problems.
65
67
Type `git status` to see your changes, if there are any, you can reset them with `git reset --hard`. After that, git pull should be possible.
66
68
67
69
## Configuration
@@ -75,6 +77,7 @@ The following properties can be configured:
75
77
|**Option**|**Description**|
76
78
| --- | --- |
77
79
|`port`| The port on which the MagicMirror² server will run on. The default value is `8080`. |
80
+
|`kioskmode`| This allows MagicMirror² to run in Kiosk Mode. It protects from other programs popping on top of your screen. The default value is `false`|
78
81
|`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`. |
79
82
|`timeFormat`| The form of time notation that will be used. Possible values are `12` or `24`. The default is `24`. |
80
83
|`units`| The units that will be used in the default weather modules. Possible values are `metric` or `imperial`. The default is `metric`. |
@@ -108,7 +111,7 @@ For more available modules, check out out the wiki page: [MagicMirror² Modules]
108
111
## Known issues
109
112
110
113
- Electron seems to have some issues on certain Raspberry Pi 2's. See [#145](https://github.com/MichMich/MagicMirror/issues/145).
111
-
- MagicMirror² (Electron) sometimes quits without an error after an extended period of use. See [#150](https://github.com/MichMich/MagicMirror/issues/150).
114
+
- MagicMirror² (Electron) sometimes quits without an error after an extended period of use. See [#150](https://github.com/MichMich/MagicMirror/issues/150).
112
115
113
116
## Community
114
117
@@ -120,10 +123,9 @@ Contributions of all kinds are welcome, not only in the form of code but also wi
120
123
121
124
Please keep the following in mind:
122
125
123
-
-**Bug Reports**: Make sure you're running the latest version. If the issue(s) still persist: please open a clearly documented issue with a clear title.
126
+
-**Bug Reports**: Make sure you're running the latest version. If the issue(s) still persist: please open a clearly documented issue with a clear title.
124
127
-**Minor Bug Fixes**: Please send a pull request with a clear explanation of the issue or a link to the issue it solves.
125
128
-**Major Bug Fixes**: please discuss your approach in an GitHub issue before you start to alter a big part of the code.
126
129
-**New Features**: please please discuss in a GitHub issue before you start to alter a big part of the code. Without discussion upfront, the pull request will not be accepted / merged.
127
130
128
-
Thanks for your help in making MagicMirror² better!
129
-
131
+
Thanks for your help in making MagicMirror² better!
Copy file name to clipboardExpand all lines: modules/default/clock/README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,5 +101,12 @@ The following properties can be configured:
101
101
<br><b>Default value:</b> <code>bottom</code>
102
102
</td>
103
103
</tr>
104
+
<tr>
105
+
<td><code>analogShowDate</code></td>
106
+
<td><strong>Specific to the analog clock.</strong> If the clock is used as a separate module and set to analog only, this configures whether a date is also displayed with the clock.<br>
107
+
<br><b>Possible values:</b> <code>false</code>, <code>top</code>, or <code>bottom</code>
0 commit comments