From 94ff8a9b047cdf6eef34e307d7eddad365a5f2a5 Mon Sep 17 00:00:00 2001 From: HeikoGr Date: Thu, 2 Jan 2020 14:15:24 +0000 Subject: [PATCH 1/2] force declaration of public ip adress in config file (ISSUE #1852) --- config/config.js.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.js.sample b/config/config.js.sample index 115e2dd2..3b3bb71e 100644 --- a/config/config.js.sample +++ b/config/config.js.sample @@ -12,8 +12,8 @@ var config = { address: "localhost", // Address to listen on, can be: // - "localhost", "127.0.0.1", "::1" to listen on loopback interface // - another specific IPv4/6 to listen on a specific interface - // - "", "0.0.0.0", "::" to listen on any interface - // Default, when address config is left out, is "localhost" + // - "0.0.0.0", "::" to listen on any interface + // Default, when address config is left out or empty, is "localhost" port: 8080, ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses // or add a specific IPv4 of 192.168.1.5 : From 760995773e6595e6bbd22b2e62da2db9f572d606 Mon Sep 17 00:00:00 2001 From: HeikoGr Date: Thu, 2 Jan 2020 16:04:38 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66d87893..b8b0902a 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,19 @@ This project adheres to [Semantic Versioning](http://semver.org/). ❤️ **Donate:** Enjoying MagicMirror²? [Please consider a donation!](https://magicmirror.builders/donate) With your help we can continue to improve the MagicMirror² core. +## [2.11.0] - Unreleased (Develop Branch) + +*This release is scheduled to be released on 2020-04-01.* + +### Added +### Updated +### Fixed +- Force declaration of public ip adress in config file (ISSUE #1852) + ## [2.10.0] - 2020-01-01 +Special thanks to @sdetweil for all his great contributions! + ℹ️ **Note:** This update uses new dependencies. Please update using the following command: `git pull && npm install`. ### Added @@ -27,9 +38,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Fixed issue in weatherforecast module where predicted amount of rain was not using the decimal symbol specified in config.js. - Module header now updates correctly, if a module need to dynamically show/hide its header based on a condition. - Fix handling of config.js for serverOnly mode commented out. -- Fixed issue in calendar module where the debug script didn't work correctly with authentication -- Fixed issue that some full day events were not correctly recognized as such -- Display full day events lasting multiple days as happening today instead of some days ago if they are still ongoing +- Fixed issue in calendar module where the debug script didn't work correctly with authentication. +- Fixed issue that some full day events were not correctly recognized as such. +- Display full day events lasting multiple days as happening today instead of some days ago if they are still ongoing. ## [2.9.0] - 2019-10-01