diff --git a/CHANGELOG.md b/CHANGELOG.md index 8571e72f32..7e752a25fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - English translation for "Feels" to "Feels like" - Fixed the example calender url in `config.js.sample` - Update `ical.js` to solve various calendar issues. +- Update weather city list url [#1676](https://github.com/MichMich/MagicMirror/issues/1676) ### Fixed - Handle SIGTERM messages diff --git a/config/config.js.sample b/config/config.js.sample index 195adebc6b..8ec8622f97 100644 --- a/config/config.js.sample +++ b/config/config.js.sample @@ -58,7 +58,7 @@ var config = { position: "top_right", config: { location: "New York", - locationID: "", //ID from http://bulk.openweathermap.org/sample/; unzip the gz file and find your city + locationID: "", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city appid: "YOUR_OPENWEATHER_API_KEY" } }, @@ -68,7 +68,7 @@ var config = { header: "Weather Forecast", config: { location: "New York", - locationID: "5128581", //ID from https://openweathermap.org/city + locationID: "5128581", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city appid: "YOUR_OPENWEATHER_API_KEY" } }, diff --git a/modules/default/currentweather/README.md b/modules/default/currentweather/README.md index ce8cd19eaa..a88eeaf161 100644 --- a/modules/default/currentweather/README.md +++ b/modules/default/currentweather/README.md @@ -19,7 +19,7 @@ modules: [ config: { // See 'Configuration options' for more information. location: "Amsterdam,Netherlands", - locationID: "", //Location ID from http://openweathermap.org/help/city_list.txt + locationID: "", //Location ID from http://bulk.openweathermap.org/sample/city.list.json.gz appid: "abcde12345abcde12345abcde12345ab" //openweathermap.org API key. } } diff --git a/modules/default/weather/forecast.njk b/modules/default/weather/forecast.njk index 8e997c8579..fed0e85c2c 100644 --- a/modules/default/weather/forecast.njk +++ b/modules/default/weather/forecast.njk @@ -28,5 +28,5 @@ {% endif %} - + diff --git a/modules/default/weatherforecast/README.md b/modules/default/weatherforecast/README.md index 4be3d9bf35..a75cb9845d 100644 --- a/modules/default/weatherforecast/README.md +++ b/modules/default/weatherforecast/README.md @@ -19,7 +19,7 @@ modules: [ config: { // See 'Configuration options' for more information. location: "Amsterdam,Netherlands", - locationID: "", //Location ID from http://openweathermap.org/help/city_list.txt + locationID: "", //Location ID from http://bulk.openweathermap.org/sample/city.list.json.gz appid: "abcde12345abcde12345abcde12345ab" //openweathermap.org API key. } }