diff --git a/config/config.js.sample b/config/config.js.sample index 1c9ffdc0..9ab4e659 100644 --- a/config/config.js.sample +++ b/config/config.js.sample @@ -1,4 +1,4 @@ -/* Magic Mirror Config Sample +/* MagicMirror² Config Sample * * By Michael Teeuw https://michaelteeuw.nl * MIT Licensed. diff --git a/css/custom.css.sample b/css/custom.css.sample index ac5b5e2e..48cc17a0 100644 --- a/css/custom.css.sample +++ b/css/custom.css.sample @@ -1,4 +1,4 @@ -/* Magic Mirror Custom CSS Sample +/* MagicMirror² Custom CSS Sample * * Change color and fonts here. * diff --git a/js/app.js b/js/app.js index 9ead45b2..fe66b0ce 100644 --- a/js/app.js +++ b/js/app.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * The Core App (Server) * * By Michael Teeuw https://michaelteeuw.nl diff --git a/js/check_config.js b/js/check_config.js index 60b4cdf3..abc0940b 100644 --- a/js/check_config.js +++ b/js/check_config.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * * Check the configuration file for errors * diff --git a/js/defaults.js b/js/defaults.js index 0173a594..53f9c90d 100644 --- a/js/defaults.js +++ b/js/defaults.js @@ -1,6 +1,6 @@ /* global mmPort */ -/* Magic Mirror +/* MagicMirror² * Config Defaults * * By Michael Teeuw https://michaelteeuw.nl @@ -36,7 +36,7 @@ const defaults = { position: "upper_third", classes: "large thin", config: { - text: "Magic Mirror2" + text: "MagicMirror²" } }, { diff --git a/js/deprecated.js b/js/deprecated.js index 6bf4a626..e2c70322 100644 --- a/js/deprecated.js +++ b/js/deprecated.js @@ -1,4 +1,4 @@ -/* Magic Mirror Deprecated Config Options List +/* MagicMirror² Deprecated Config Options List * * By Michael Teeuw https://michaelteeuw.nl * MIT Licensed. diff --git a/js/loader.js b/js/loader.js index e3c88be4..70ed32c5 100644 --- a/js/loader.js +++ b/js/loader.js @@ -1,6 +1,6 @@ /* global defaultModules, vendor */ -/* Magic Mirror +/* MagicMirror² * Module and File loaders. * * By Michael Teeuw https://michaelteeuw.nl diff --git a/js/logger.js b/js/logger.js index 0ea523d7..e6a244cb 100644 --- a/js/logger.js +++ b/js/logger.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Log * * This logger is very simple, but needs to be extended. diff --git a/js/main.js b/js/main.js index dfb79708..8d1db9ea 100644 --- a/js/main.js +++ b/js/main.js @@ -1,6 +1,6 @@ /* global Loader, defaults, Translator */ -/* Magic Mirror +/* MagicMirror² * Main System * * By Michael Teeuw https://michaelteeuw.nl diff --git a/js/module.js b/js/module.js index 84222fa3..bb78c383 100644 --- a/js/module.js +++ b/js/module.js @@ -1,6 +1,6 @@ /* global Class, cloneObject, Loader, MMSocket, nunjucks, Translator */ -/* Magic Mirror +/* MagicMirror² * Module Blueprint. * @typedef {Object} Module * @@ -74,7 +74,7 @@ const Module = Class.extend({ }, /** - * Generates the dom which needs to be displayed. This method is called by the Magic Mirror core. + * Generates the dom which needs to be displayed. This method is called by the MagicMirror² core. * This method can to be subclassed if the module wants to display info on the mirror. * Alternatively, the getTemplate method could be subclassed. * @@ -109,7 +109,7 @@ const Module = Class.extend({ /** * Generates the header string which needs to be displayed if a user has a header configured for this module. - * This method is called by the Magic Mirror core, but only if the user has configured a default header for the module. + * This method is called by the MagicMirror² core, but only if the user has configured a default header for the module. * This method needs to be subclassed if the module wants to display modified headers on the mirror. * * @returns {string} The header to display above the header. @@ -141,7 +141,7 @@ const Module = Class.extend({ }, /** - * Called by the Magic Mirror core when a notification arrives. + * Called by the MagicMirror² core when a notification arrives. * * @param {string} notification The identifier of the notification. * @param {*} payload The payload of the notification. diff --git a/js/node_helper.js b/js/node_helper.js index 86ad3aa4..067ae64a 100644 --- a/js/node_helper.js +++ b/js/node_helper.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Node Helper Superclass * * By Michael Teeuw https://michaelteeuw.nl diff --git a/js/server.js b/js/server.js index 3e48323d..de07bfcc 100644 --- a/js/server.js +++ b/js/server.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Server * * By Michael Teeuw https://michaelteeuw.nl diff --git a/js/socketclient.js b/js/socketclient.js index acb8cfdc..8b3aec82 100644 --- a/js/socketclient.js +++ b/js/socketclient.js @@ -1,6 +1,6 @@ /* global io */ -/* Magic Mirror +/* MagicMirror² * TODO add description * * By Michael Teeuw https://michaelteeuw.nl diff --git a/js/translator.js b/js/translator.js index d69a9a1a..78f2e5b5 100644 --- a/js/translator.js +++ b/js/translator.js @@ -1,6 +1,6 @@ /* global translations */ -/* Magic Mirror +/* MagicMirror² * Translator (l10n) * * By Christopher Fenner https://github.com/CFenner diff --git a/js/utils.js b/js/utils.js index 1043ae3e..d111afca 100644 --- a/js/utils.js +++ b/js/utils.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Utils * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com diff --git a/modules/default/alert/alert.js b/modules/default/alert/alert.js index 0ed34fb0..76bacc02 100644 --- a/modules/default/alert/alert.js +++ b/modules/default/alert/alert.js @@ -1,6 +1,6 @@ /* global NotificationFx */ -/* Magic Mirror +/* MagicMirror² * Module: alert * * By Paul-Vincent Roll https://paulvincentroll.com/ diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index 9612bbee..4c3a26f5 100755 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -1,6 +1,6 @@ /* global cloneObject */ -/* Magic Mirror +/* MagicMirror² * Module: Calendar * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/calendar/calendarfetcher.js b/modules/default/calendar/calendarfetcher.js index 16f1db90..f27025d7 100644 --- a/modules/default/calendar/calendarfetcher.js +++ b/modules/default/calendar/calendarfetcher.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Node Helper: Calendar - CalendarFetcher * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/calendar/calendarutils.js b/modules/default/calendar/calendarutils.js index f7409b5c..c00e50d8 100644 --- a/modules/default/calendar/calendarutils.js +++ b/modules/default/calendar/calendarutils.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Calendar Util Methods * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/calendar/node_helper.js b/modules/default/calendar/node_helper.js index 5b1a8bad..21fa7e0e 100644 --- a/modules/default/calendar/node_helper.js +++ b/modules/default/calendar/node_helper.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Node Helper: Calendar * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/clock/clock.js b/modules/default/clock/clock.js index df2364a4..7c9310f0 100644 --- a/modules/default/clock/clock.js +++ b/modules/default/clock/clock.js @@ -1,6 +1,6 @@ /* global SunCalc */ -/* Magic Mirror +/* MagicMirror² * Module: Clock * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/compliments/compliments.js b/modules/default/compliments/compliments.js index 054a409f..c1168295 100644 --- a/modules/default/compliments/compliments.js +++ b/modules/default/compliments/compliments.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Module: Compliments * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js index f7b3ffe3..60f584e0 100644 --- a/modules/default/currentweather/currentweather.js +++ b/modules/default/currentweather/currentweather.js @@ -1,6 +1,6 @@ /* eslint-disable */ -/* Magic Mirror +/* MagicMirror² * Module: CurrentWeather * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/defaultmodules.js b/modules/default/defaultmodules.js index 46bb5b87..beba69b4 100644 --- a/modules/default/defaultmodules.js +++ b/modules/default/defaultmodules.js @@ -1,4 +1,4 @@ -/* Magic Mirror Default Modules List +/* MagicMirror² Default Modules List * Modules listed below can be loaded without the 'default/' prefix. Omitting the default folder name. * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/helloworld/helloworld.js b/modules/default/helloworld/helloworld.js index 68eb22fc..53357d0f 100644 --- a/modules/default/helloworld/helloworld.js +++ b/modules/default/helloworld/helloworld.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Module: HelloWorld * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/newsfeed/newsfeed.js b/modules/default/newsfeed/newsfeed.js index b963c643..67eb63bf 100644 --- a/modules/default/newsfeed/newsfeed.js +++ b/modules/default/newsfeed/newsfeed.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Module: NewsFeed * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/newsfeed/newsfeedfetcher.js b/modules/default/newsfeed/newsfeedfetcher.js index 78bb1ab7..dc69e4ce 100644 --- a/modules/default/newsfeed/newsfeedfetcher.js +++ b/modules/default/newsfeed/newsfeedfetcher.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Node Helper: Newsfeed - NewsfeedFetcher * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/newsfeed/node_helper.js b/modules/default/newsfeed/node_helper.js index 32656a9f..e8816b83 100644 --- a/modules/default/newsfeed/node_helper.js +++ b/modules/default/newsfeed/node_helper.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Node Helper: Newsfeed * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/updatenotification/updatenotification.js b/modules/default/updatenotification/updatenotification.js index 8c3bb6af..7b4945c9 100644 --- a/modules/default/updatenotification/updatenotification.js +++ b/modules/default/updatenotification/updatenotification.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Module: UpdateNotification * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/weather/providers/darksky.js b/modules/default/weather/providers/darksky.js index 451ac98b..16355dd0 100755 --- a/modules/default/weather/providers/darksky.js +++ b/modules/default/weather/providers/darksky.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * Provider: Dark Sky * diff --git a/modules/default/weather/providers/envcanada.js b/modules/default/weather/providers/envcanada.js index 868ee6e2..5208e005 100644 --- a/modules/default/weather/providers/envcanada.js +++ b/modules/default/weather/providers/envcanada.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * Provider: Environment Canada (EC) * diff --git a/modules/default/weather/providers/openweathermap.js b/modules/default/weather/providers/openweathermap.js index c1258d3c..f009e09a 100755 --- a/modules/default/weather/providers/openweathermap.js +++ b/modules/default/weather/providers/openweathermap.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/weather/providers/smhi.js b/modules/default/weather/providers/smhi.js index 603aa814..e01b0749 100644 --- a/modules/default/weather/providers/smhi.js +++ b/modules/default/weather/providers/smhi.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * Provider: SMHI * diff --git a/modules/default/weather/providers/ukmetoffice.js b/modules/default/weather/providers/ukmetoffice.js index 158592bd..23ec29bf 100755 --- a/modules/default/weather/providers/ukmetoffice.js +++ b/modules/default/weather/providers/ukmetoffice.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * * By Malcolm Oakes https://github.com/maloakes diff --git a/modules/default/weather/providers/ukmetofficedatahub.js b/modules/default/weather/providers/ukmetofficedatahub.js index bab1220d..216f6619 100644 --- a/modules/default/weather/providers/ukmetofficedatahub.js +++ b/modules/default/weather/providers/ukmetofficedatahub.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * * By Malcolm Oakes https://github.com/maloakes diff --git a/modules/default/weather/providers/weatherbit.js b/modules/default/weather/providers/weatherbit.js index 17f27812..06a3f503 100644 --- a/modules/default/weather/providers/weatherbit.js +++ b/modules/default/weather/providers/weatherbit.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * Provider: Weatherbit * diff --git a/modules/default/weather/providers/weathergov.js b/modules/default/weather/providers/weathergov.js index 31934784..9cc0e6f6 100755 --- a/modules/default/weather/providers/weathergov.js +++ b/modules/default/weather/providers/weathergov.js @@ -1,6 +1,6 @@ /* global WeatherProvider, WeatherObject */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * Provider: weather.gov * https://weather-gov.github.io/api/general-faqs diff --git a/modules/default/weather/weather.js b/modules/default/weather/weather.js index e4acc733..350c4f2d 100644 --- a/modules/default/weather/weather.js +++ b/modules/default/weather/weather.js @@ -1,6 +1,6 @@ /* global WeatherProvider */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/weather/weatherobject.js b/modules/default/weather/weatherobject.js index 4501f681..e9359345 100755 --- a/modules/default/weather/weatherobject.js +++ b/modules/default/weather/weatherobject.js @@ -1,6 +1,6 @@ /* global SunCalc */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/weather/weatherprovider.js b/modules/default/weather/weatherprovider.js index 5721dad6..d08dc30f 100644 --- a/modules/default/weather/weatherprovider.js +++ b/modules/default/weather/weatherprovider.js @@ -1,6 +1,6 @@ /* global Class */ -/* Magic Mirror +/* MagicMirror² * Module: Weather * * By Michael Teeuw https://michaelteeuw.nl diff --git a/modules/default/weatherforecast/weatherforecast.js b/modules/default/weatherforecast/weatherforecast.js index 54216986..c94fabf7 100644 --- a/modules/default/weatherforecast/weatherforecast.js +++ b/modules/default/weatherforecast/weatherforecast.js @@ -1,6 +1,6 @@ /* eslint-disable */ -/* Magic Mirror +/* MagicMirror² * Module: CurrentWeather * * By Michael Teeuw https://michaelteeuw.nl diff --git a/package.json b/package.json index b3cae096..f014ef58 100644 --- a/package.json +++ b/package.json @@ -32,6 +32,7 @@ }, "keywords": [ "magic mirror", + "magicmirror", "smart mirror", "mirror UI", "modular" diff --git a/tests/configs/default.js b/tests/configs/default.js index 5568e5e0..7d0f8eed 100644 --- a/tests/configs/default.js +++ b/tests/configs/default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test default config for modules +/* MagicMirror² Test default config for modules * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/empty_ipWhiteList.js b/tests/configs/empty_ipWhiteList.js index cdf637c5..d49f7a9f 100644 --- a/tests/configs/empty_ipWhiteList.js +++ b/tests/configs/empty_ipWhiteList.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config sample ipWhitelist +/* MagicMirror² Test config sample ipWhitelist * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/alert/default.js b/tests/configs/modules/alert/default.js index 423260c7..45ffefe5 100644 --- a/tests/configs/modules/alert/default.js +++ b/tests/configs/modules/alert/default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config sample module alert +/* MagicMirror² Test config sample module alert * * By rejas * MIT Licensed. diff --git a/tests/configs/modules/calendar/auth-default.js b/tests/configs/modules/calendar/auth-default.js index a120c7ca..a4ef4ba1 100644 --- a/tests/configs/modules/calendar/auth-default.js +++ b/tests/configs/modules/calendar/auth-default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default calendar with auth by default +/* MagicMirror² Test config default calendar with auth by default * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/calendar/basic-auth.js b/tests/configs/modules/calendar/basic-auth.js index ebca135a..9290a43b 100644 --- a/tests/configs/modules/calendar/basic-auth.js +++ b/tests/configs/modules/calendar/basic-auth.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default calendar +/* MagicMirror² Test config default calendar * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/calendar/changed-port.js b/tests/configs/modules/calendar/changed-port.js index 05d6d1ff..09aeb589 100644 --- a/tests/configs/modules/calendar/changed-port.js +++ b/tests/configs/modules/calendar/changed-port.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default calendar with auth by default +/* MagicMirror² Test config default calendar with auth by default * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/calendar/custom.js b/tests/configs/modules/calendar/custom.js index 068db9be..2b396f80 100644 --- a/tests/configs/modules/calendar/custom.js +++ b/tests/configs/modules/calendar/custom.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config custom calendar +/* MagicMirror² Test config custom calendar * * By Rejas * MIT Licensed. diff --git a/tests/configs/modules/calendar/default.js b/tests/configs/modules/calendar/default.js index 0c9b8151..cd50a0ae 100644 --- a/tests/configs/modules/calendar/default.js +++ b/tests/configs/modules/calendar/default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default calendar +/* MagicMirror² Test config default calendar * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/calendar/fail-basic-auth.js b/tests/configs/modules/calendar/fail-basic-auth.js index 1d2f8c76..39c17927 100644 --- a/tests/configs/modules/calendar/fail-basic-auth.js +++ b/tests/configs/modules/calendar/fail-basic-auth.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test calendar calendar +/* MagicMirror² Test calendar calendar * * This configuration is a wrong authentication * diff --git a/tests/configs/modules/calendar/old-basic-auth.js b/tests/configs/modules/calendar/old-basic-auth.js index 743ff04d..c1fb5590 100644 --- a/tests/configs/modules/calendar/old-basic-auth.js +++ b/tests/configs/modules/calendar/old-basic-auth.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default calendar +/* MagicMirror² Test config default calendar * with authentication old config * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/calendar/recurring.js b/tests/configs/modules/calendar/recurring.js index 567a366c..a513d35d 100644 --- a/tests/configs/modules/calendar/recurring.js +++ b/tests/configs/modules/calendar/recurring.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config custom calendar +/* MagicMirror² Test config custom calendar * * By Rejas * MIT Licensed. diff --git a/tests/configs/modules/clock/clock_12hr.js b/tests/configs/modules/clock/clock_12hr.js index 6b8917bd..18170e7c 100644 --- a/tests/configs/modules/clock/clock_12hr.js +++ b/tests/configs/modules/clock/clock_12hr.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Sergey Morozov * MIT Licensed. diff --git a/tests/configs/modules/clock/clock_24hr.js b/tests/configs/modules/clock/clock_24hr.js index 27f89d0c..f9bd4514 100644 --- a/tests/configs/modules/clock/clock_24hr.js +++ b/tests/configs/modules/clock/clock_24hr.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Sergey Morozov * MIT Licensed. diff --git a/tests/configs/modules/clock/clock_analog.js b/tests/configs/modules/clock/clock_analog.js index cbe3fecc..fdca5615 100644 --- a/tests/configs/modules/clock/clock_analog.js +++ b/tests/configs/modules/clock/clock_analog.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for analog clock face +/* MagicMirror² Test config for analog clock face * * MIT Licensed. */ diff --git a/tests/configs/modules/clock/clock_displaySeconds_false.js b/tests/configs/modules/clock/clock_displaySeconds_false.js index 57bf006a..cf333320 100644 --- a/tests/configs/modules/clock/clock_displaySeconds_false.js +++ b/tests/configs/modules/clock/clock_displaySeconds_false.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/clock/clock_showPeriodUpper.js b/tests/configs/modules/clock/clock_showPeriodUpper.js index 1e01644f..3dd8b5c5 100644 --- a/tests/configs/modules/clock/clock_showPeriodUpper.js +++ b/tests/configs/modules/clock/clock_showPeriodUpper.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Sergey Morozov * MIT Licensed. diff --git a/tests/configs/modules/clock/clock_showTime.js b/tests/configs/modules/clock/clock_showTime.js index 37bdc5cc..17ea4590 100644 --- a/tests/configs/modules/clock/clock_showTime.js +++ b/tests/configs/modules/clock/clock_showTime.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Johan Hammar * MIT Licensed. diff --git a/tests/configs/modules/clock/clock_showWeek.js b/tests/configs/modules/clock/clock_showWeek.js index 2c421e85..71377e0b 100644 --- a/tests/configs/modules/clock/clock_showWeek.js +++ b/tests/configs/modules/clock/clock_showWeek.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Johan Hammar * MIT Licensed. diff --git a/tests/configs/modules/clock/es/clock_12hr.js b/tests/configs/modules/clock/es/clock_12hr.js index 07e5206a..44444c06 100644 --- a/tests/configs/modules/clock/es/clock_12hr.js +++ b/tests/configs/modules/clock/es/clock_12hr.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/clock/es/clock_24hr.js b/tests/configs/modules/clock/es/clock_24hr.js index 469f4e3b..66b5304d 100644 --- a/tests/configs/modules/clock/es/clock_24hr.js +++ b/tests/configs/modules/clock/es/clock_24hr.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/clock/es/clock_showPeriodUpper.js b/tests/configs/modules/clock/es/clock_showPeriodUpper.js index 0253c28c..5e1fbb4b 100644 --- a/tests/configs/modules/clock/es/clock_showPeriodUpper.js +++ b/tests/configs/modules/clock/es/clock_showPeriodUpper.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/clock/es/clock_showWeek.js b/tests/configs/modules/clock/es/clock_showWeek.js index dd8f6cd2..73635c0e 100644 --- a/tests/configs/modules/clock/es/clock_showWeek.js +++ b/tests/configs/modules/clock/es/clock_showWeek.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default clock module +/* MagicMirror² Test config for default clock module * Language es for showWeek feature * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com diff --git a/tests/configs/modules/compliments/compliments_anytime.js b/tests/configs/modules/compliments/compliments_anytime.js index 2034b379..89253d91 100644 --- a/tests/configs/modules/compliments/compliments_anytime.js +++ b/tests/configs/modules/compliments/compliments_anytime.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config compliments with anytime type +/* MagicMirror² Test config compliments with anytime type * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/compliments/compliments_date.js b/tests/configs/modules/compliments/compliments_date.js index a89dd7de..d84a6bde 100644 --- a/tests/configs/modules/compliments/compliments_date.js +++ b/tests/configs/modules/compliments/compliments_date.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config compliments with date type +/* MagicMirror² Test config compliments with date type * * By Rejas * MIT Licensed. diff --git a/tests/configs/modules/compliments/compliments_only_anytime.js b/tests/configs/modules/compliments/compliments_only_anytime.js index 5261e58b..f1da683a 100644 --- a/tests/configs/modules/compliments/compliments_only_anytime.js +++ b/tests/configs/modules/compliments/compliments_only_anytime.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config compliments with anytime type +/* MagicMirror² Test config compliments with anytime type * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/compliments/compliments_parts_day.js b/tests/configs/modules/compliments/compliments_parts_day.js index 08c9d94e..ff34803a 100644 --- a/tests/configs/modules/compliments/compliments_parts_day.js +++ b/tests/configs/modules/compliments/compliments_parts_day.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for default compliments +/* MagicMirror² Test config for default compliments * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/display.js b/tests/configs/modules/display.js index 03aa4f19..a4166077 100644 --- a/tests/configs/modules/display.js +++ b/tests/configs/modules/display.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for display setters module using the helloworld module +/* MagicMirror² Test config for display setters module using the helloworld module * * By Rejas * MIT Licensed. diff --git a/tests/configs/modules/helloworld/helloworld.js b/tests/configs/modules/helloworld/helloworld.js index 39480bc1..72256621 100644 --- a/tests/configs/modules/helloworld/helloworld.js +++ b/tests/configs/modules/helloworld/helloworld.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config sample module hello world +/* MagicMirror² Test config sample module hello world * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/helloworld/helloworld_default.js b/tests/configs/modules/helloworld/helloworld_default.js index ea95ad83..06e6fe8d 100644 --- a/tests/configs/modules/helloworld/helloworld_default.js +++ b/tests/configs/modules/helloworld/helloworld_default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config sample module hello world default config +/* MagicMirror² Test config sample module hello world default config * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/newsfeed/default.js b/tests/configs/modules/newsfeed/default.js index 7758da0c..00bf569d 100644 --- a/tests/configs/modules/newsfeed/default.js +++ b/tests/configs/modules/newsfeed/default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config newsfeed module +/* MagicMirror² Test config newsfeed module * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/newsfeed/ignore_items.js b/tests/configs/modules/newsfeed/ignore_items.js index 8b12a10a..bbcf4db2 100644 --- a/tests/configs/modules/newsfeed/ignore_items.js +++ b/tests/configs/modules/newsfeed/ignore_items.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config newsfeed module +/* MagicMirror² Test config newsfeed module * * MIT Licensed. */ diff --git a/tests/configs/modules/newsfeed/incorrect_url.js b/tests/configs/modules/newsfeed/incorrect_url.js index 522fa2d1..f9d75b09 100644 --- a/tests/configs/modules/newsfeed/incorrect_url.js +++ b/tests/configs/modules/newsfeed/incorrect_url.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config newsfeed module +/* MagicMirror² Test config newsfeed module * * MIT Licensed. */ diff --git a/tests/configs/modules/newsfeed/prohibited_words.js b/tests/configs/modules/newsfeed/prohibited_words.js index 68d22f54..42eb572f 100644 --- a/tests/configs/modules/newsfeed/prohibited_words.js +++ b/tests/configs/modules/newsfeed/prohibited_words.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config newsfeed module +/* MagicMirror² Test config newsfeed module * * MIT Licensed. */ diff --git a/tests/configs/modules/positions.js b/tests/configs/modules/positions.js index 186c25f9..6086fadd 100644 --- a/tests/configs/modules/positions.js +++ b/tests/configs/modules/positions.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config for position setters module using the helloworld module +/* MagicMirror² Test config for position setters module using the helloworld module * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/modules/weather/currentweather_compliments.js b/tests/configs/modules/weather/currentweather_compliments.js index 6efd43fe..4af54466 100644 --- a/tests/configs/modules/weather/currentweather_compliments.js +++ b/tests/configs/modules/weather/currentweather_compliments.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config current weather compliments +/* MagicMirror² Test config current weather compliments * * By rejas https://github.com/rejas * MIT Licensed. diff --git a/tests/configs/modules/weather/currentweather_default.js b/tests/configs/modules/weather/currentweather_default.js index d7efb0a3..e2ef16b7 100644 --- a/tests/configs/modules/weather/currentweather_default.js +++ b/tests/configs/modules/weather/currentweather_default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default weather +/* MagicMirror² Test config default weather * * By fewieden https://github.com/fewieden * MIT Licensed. diff --git a/tests/configs/modules/weather/currentweather_options.js b/tests/configs/modules/weather/currentweather_options.js index db4f8ff7..bd433f64 100644 --- a/tests/configs/modules/weather/currentweather_options.js +++ b/tests/configs/modules/weather/currentweather_options.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default weather +/* MagicMirror² Test config default weather * * By fewieden https://github.com/fewieden * MIT Licensed. diff --git a/tests/configs/modules/weather/currentweather_units.js b/tests/configs/modules/weather/currentweather_units.js index 48c46f60..ac007314 100644 --- a/tests/configs/modules/weather/currentweather_units.js +++ b/tests/configs/modules/weather/currentweather_units.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default weather +/* MagicMirror² Test config default weather * * By fewieden https://github.com/fewieden * MIT Licensed. diff --git a/tests/configs/modules/weather/forecastweather_absolute.js b/tests/configs/modules/weather/forecastweather_absolute.js index 92db7acf..9972383b 100644 --- a/tests/configs/modules/weather/forecastweather_absolute.js +++ b/tests/configs/modules/weather/forecastweather_absolute.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default weather +/* MagicMirror² Test config default weather * * By fewieden https://github.com/fewieden * MIT Licensed. diff --git a/tests/configs/modules/weather/forecastweather_default.js b/tests/configs/modules/weather/forecastweather_default.js index 05dc10ea..6f535b39 100644 --- a/tests/configs/modules/weather/forecastweather_default.js +++ b/tests/configs/modules/weather/forecastweather_default.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default weather +/* MagicMirror² Test config default weather * * By fewieden https://github.com/fewieden * MIT Licensed. diff --git a/tests/configs/modules/weather/forecastweather_options.js b/tests/configs/modules/weather/forecastweather_options.js index 755407e5..23cda84f 100644 --- a/tests/configs/modules/weather/forecastweather_options.js +++ b/tests/configs/modules/weather/forecastweather_options.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default weather +/* MagicMirror² Test config default weather * * By fewieden https://github.com/fewieden * MIT Licensed. diff --git a/tests/configs/modules/weather/forecastweather_units.js b/tests/configs/modules/weather/forecastweather_units.js index 6fc2d456..7e1ac86f 100644 --- a/tests/configs/modules/weather/forecastweather_units.js +++ b/tests/configs/modules/weather/forecastweather_units.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config default weather +/* MagicMirror² Test config default weather * * By rejas * MIT Licensed. diff --git a/tests/configs/noIpWhiteList.js b/tests/configs/noIpWhiteList.js index 40655480..36035c16 100644 --- a/tests/configs/noIpWhiteList.js +++ b/tests/configs/noIpWhiteList.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config sample ipWhitelist +/* MagicMirror² Test config sample ipWhitelist * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/port_8090.js b/tests/configs/port_8090.js index 7756fb76..df6bf7dc 100644 --- a/tests/configs/port_8090.js +++ b/tests/configs/port_8090.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test config sample environment set port 8090 +/* MagicMirror² Test config sample environment set port 8090 * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/configs/without_modules.js b/tests/configs/without_modules.js index 50ff521e..51ce02f6 100644 --- a/tests/configs/without_modules.js +++ b/tests/configs/without_modules.js @@ -1,4 +1,4 @@ -/* Magic Mirror Test default config for modules +/* MagicMirror² Test default config for modules * * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. diff --git a/tests/e2e/without_modules.js b/tests/e2e/without_modules.js index 7ebd5d77..41320631 100644 --- a/tests/e2e/without_modules.js +++ b/tests/e2e/without_modules.js @@ -12,7 +12,7 @@ describe("Check configuration without modules", function () { it("Show the message MagicMirror title", function () { helpers.waitForElement("#module_1_helloworld .module-content").then((elem) => { expect(elem).not.toBe(null); - expect(elem.textContent).toContain("Magic Mirror2"); + expect(elem.textContent).toContain("MagicMirror²"); }); }); diff --git a/translations/translations.js b/translations/translations.js index e321d8f7..0be9ebde 100644 --- a/translations/translations.js +++ b/translations/translations.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Translation Definition * * By Michael Teeuw https://michaelteeuw.nl diff --git a/vendor/vendor.js b/vendor/vendor.js index 69d300e8..7d7a2a8e 100755 --- a/vendor/vendor.js +++ b/vendor/vendor.js @@ -1,4 +1,4 @@ -/* Magic Mirror +/* MagicMirror² * Vendor File Definition * * By Michael Teeuw https://michaelteeuw.nl