mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 03:39:55 +00:00
Magic Mirror -> MagicMirror²
Consistent spelling
This commit is contained in:
parent
4b381f33b5
commit
a5668b1b99
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Config Sample
|
/* MagicMirror² Config Sample
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Custom CSS Sample
|
/* MagicMirror² Custom CSS Sample
|
||||||
*
|
*
|
||||||
* Change color and fonts here.
|
* Change color and fonts here.
|
||||||
*
|
*
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* The Core App (Server)
|
* The Core App (Server)
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
*
|
*
|
||||||
* Check the configuration file for errors
|
* Check the configuration file for errors
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global mmPort */
|
/* global mmPort */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Config Defaults
|
* Config Defaults
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
@ -36,7 +36,7 @@ const defaults = {
|
|||||||
position: "upper_third",
|
position: "upper_third",
|
||||||
classes: "large thin",
|
classes: "large thin",
|
||||||
config: {
|
config: {
|
||||||
text: "Magic Mirror<sup>2</sup>"
|
text: "MagicMirror²"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Deprecated Config Options List
|
/* MagicMirror² Deprecated Config Options List
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global defaultModules, vendor */
|
/* global defaultModules, vendor */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module and File loaders.
|
* Module and File loaders.
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Log
|
* Log
|
||||||
*
|
*
|
||||||
* This logger is very simple, but needs to be extended.
|
* This logger is very simple, but needs to be extended.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global Loader, defaults, Translator */
|
/* global Loader, defaults, Translator */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Main System
|
* Main System
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global Class, cloneObject, Loader, MMSocket, nunjucks, Translator */
|
/* global Class, cloneObject, Loader, MMSocket, nunjucks, Translator */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module Blueprint.
|
* Module Blueprint.
|
||||||
* @typedef {Object} Module
|
* @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.
|
* This method can to be subclassed if the module wants to display info on the mirror.
|
||||||
* Alternatively, the getTemplate method could be subclassed.
|
* 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.
|
* 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.
|
* 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.
|
* @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 {string} notification The identifier of the notification.
|
||||||
* @param {*} payload The payload of the notification.
|
* @param {*} payload The payload of the notification.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Node Helper Superclass
|
* Node Helper Superclass
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Server
|
* Server
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global io */
|
/* global io */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* TODO add description
|
* TODO add description
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global translations */
|
/* global translations */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Translator (l10n)
|
* Translator (l10n)
|
||||||
*
|
*
|
||||||
* By Christopher Fenner https://github.com/CFenner
|
* By Christopher Fenner https://github.com/CFenner
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Utils
|
* Utils
|
||||||
*
|
*
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global NotificationFx */
|
/* global NotificationFx */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: alert
|
* Module: alert
|
||||||
*
|
*
|
||||||
* By Paul-Vincent Roll https://paulvincentroll.com/
|
* By Paul-Vincent Roll https://paulvincentroll.com/
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global cloneObject */
|
/* global cloneObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Calendar
|
* Module: Calendar
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Node Helper: Calendar - CalendarFetcher
|
* Node Helper: Calendar - CalendarFetcher
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Calendar Util Methods
|
* Calendar Util Methods
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Node Helper: Calendar
|
* Node Helper: Calendar
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global SunCalc */
|
/* global SunCalc */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Clock
|
* Module: Clock
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Compliments
|
* Module: Compliments
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: CurrentWeather
|
* Module: CurrentWeather
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -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.
|
* Modules listed below can be loaded without the 'default/' prefix. Omitting the default folder name.
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: HelloWorld
|
* Module: HelloWorld
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: NewsFeed
|
* Module: NewsFeed
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Node Helper: Newsfeed - NewsfeedFetcher
|
* Node Helper: Newsfeed - NewsfeedFetcher
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Node Helper: Newsfeed
|
* Node Helper: Newsfeed
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: UpdateNotification
|
* Module: UpdateNotification
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
* Provider: Dark Sky
|
* Provider: Dark Sky
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
* Provider: Environment Canada (EC)
|
* Provider: Environment Canada (EC)
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
* Provider: SMHI
|
* Provider: SMHI
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
*
|
*
|
||||||
* By Malcolm Oakes https://github.com/maloakes
|
* By Malcolm Oakes https://github.com/maloakes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
*
|
*
|
||||||
* By Malcolm Oakes https://github.com/maloakes
|
* By Malcolm Oakes https://github.com/maloakes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
* Provider: Weatherbit
|
* Provider: Weatherbit
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider, WeatherObject */
|
/* global WeatherProvider, WeatherObject */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
* Provider: weather.gov
|
* Provider: weather.gov
|
||||||
* https://weather-gov.github.io/api/general-faqs
|
* https://weather-gov.github.io/api/general-faqs
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global WeatherProvider */
|
/* global WeatherProvider */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global SunCalc */
|
/* global SunCalc */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* global Class */
|
/* global Class */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: Weather
|
* Module: Weather
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Module: CurrentWeather
|
* Module: CurrentWeather
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"magic mirror",
|
"magic mirror",
|
||||||
|
"magicmirror",
|
||||||
"smart mirror",
|
"smart mirror",
|
||||||
"mirror UI",
|
"mirror UI",
|
||||||
"modular"
|
"modular"
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config sample ipWhitelist
|
/* MagicMirror² Test config sample ipWhitelist
|
||||||
*
|
*
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config sample module alert
|
/* MagicMirror² Test config sample module alert
|
||||||
*
|
*
|
||||||
* By rejas
|
* By rejas
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default calendar
|
/* MagicMirror² Test config default calendar
|
||||||
*
|
*
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config custom calendar
|
/* MagicMirror² Test config custom calendar
|
||||||
*
|
*
|
||||||
* By Rejas
|
* By Rejas
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default calendar
|
/* MagicMirror² Test config default calendar
|
||||||
*
|
*
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test calendar calendar
|
/* MagicMirror² Test calendar calendar
|
||||||
*
|
*
|
||||||
* This configuration is a wrong authentication
|
* This configuration is a wrong authentication
|
||||||
*
|
*
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default calendar
|
/* MagicMirror² Test config default calendar
|
||||||
* with authentication old config
|
* with authentication old config
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config custom calendar
|
/* MagicMirror² Test config custom calendar
|
||||||
*
|
*
|
||||||
* By Rejas
|
* By Rejas
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config for default clock module
|
/* MagicMirror² Test config for default clock module
|
||||||
*
|
*
|
||||||
* By Sergey Morozov
|
* By Sergey Morozov
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config for default clock module
|
/* MagicMirror² Test config for default clock module
|
||||||
*
|
*
|
||||||
* By Sergey Morozov
|
* By Sergey Morozov
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config for analog clock face
|
/* MagicMirror² Test config for analog clock face
|
||||||
*
|
*
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config for default clock module
|
/* MagicMirror² Test config for default clock module
|
||||||
*
|
*
|
||||||
* By Sergey Morozov
|
* By Sergey Morozov
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config for default clock module
|
/* MagicMirror² Test config for default clock module
|
||||||
*
|
*
|
||||||
* By Johan Hammar
|
* By Johan Hammar
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config for default clock module
|
/* MagicMirror² Test config for default clock module
|
||||||
*
|
*
|
||||||
* By Johan Hammar
|
* By Johan Hammar
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config for default clock module
|
/* MagicMirror² Test config for default clock module
|
||||||
* Language es for showWeek feature
|
* Language es for showWeek feature
|
||||||
*
|
*
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config compliments with date type
|
/* MagicMirror² Test config compliments with date type
|
||||||
*
|
*
|
||||||
* By Rejas
|
* By Rejas
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rejas
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config newsfeed module
|
/* MagicMirror² Test config newsfeed module
|
||||||
*
|
*
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config newsfeed module
|
/* MagicMirror² Test config newsfeed module
|
||||||
*
|
*
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config newsfeed module
|
/* MagicMirror² Test config newsfeed module
|
||||||
*
|
*
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config newsfeed module
|
/* MagicMirror² Test config newsfeed module
|
||||||
*
|
*
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config current weather compliments
|
/* MagicMirror² Test config current weather compliments
|
||||||
*
|
*
|
||||||
* By rejas https://github.com/rejas
|
* By rejas https://github.com/rejas
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default weather
|
/* MagicMirror² Test config default weather
|
||||||
*
|
*
|
||||||
* By fewieden https://github.com/fewieden
|
* By fewieden https://github.com/fewieden
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default weather
|
/* MagicMirror² Test config default weather
|
||||||
*
|
*
|
||||||
* By fewieden https://github.com/fewieden
|
* By fewieden https://github.com/fewieden
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default weather
|
/* MagicMirror² Test config default weather
|
||||||
*
|
*
|
||||||
* By fewieden https://github.com/fewieden
|
* By fewieden https://github.com/fewieden
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default weather
|
/* MagicMirror² Test config default weather
|
||||||
*
|
*
|
||||||
* By fewieden https://github.com/fewieden
|
* By fewieden https://github.com/fewieden
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default weather
|
/* MagicMirror² Test config default weather
|
||||||
*
|
*
|
||||||
* By fewieden https://github.com/fewieden
|
* By fewieden https://github.com/fewieden
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default weather
|
/* MagicMirror² Test config default weather
|
||||||
*
|
*
|
||||||
* By fewieden https://github.com/fewieden
|
* By fewieden https://github.com/fewieden
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config default weather
|
/* MagicMirror² Test config default weather
|
||||||
*
|
*
|
||||||
* By rejas
|
* By rejas
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror Test config sample ipWhitelist
|
/* MagicMirror² Test config sample ipWhitelist
|
||||||
*
|
*
|
||||||
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -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
|
* By Rodrigo Ramírez Norambuena https://rodrigoramirez.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
|
@ -12,7 +12,7 @@ describe("Check configuration without modules", function () {
|
|||||||
it("Show the message MagicMirror title", function () {
|
it("Show the message MagicMirror title", function () {
|
||||||
helpers.waitForElement("#module_1_helloworld .module-content").then((elem) => {
|
helpers.waitForElement("#module_1_helloworld .module-content").then((elem) => {
|
||||||
expect(elem).not.toBe(null);
|
expect(elem).not.toBe(null);
|
||||||
expect(elem.textContent).toContain("Magic Mirror2");
|
expect(elem.textContent).toContain("MagicMirror²");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Translation Definition
|
* Translation Definition
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
2
vendor/vendor.js
vendored
2
vendor/vendor.js
vendored
@ -1,4 +1,4 @@
|
|||||||
/* Magic Mirror
|
/* MagicMirror²
|
||||||
* Vendor File Definition
|
* Vendor File Definition
|
||||||
*
|
*
|
||||||
* By Michael Teeuw https://michaelteeuw.nl
|
* By Michael Teeuw https://michaelteeuw.nl
|
||||||
|
Loading…
x
Reference in New Issue
Block a user