mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
Update changelog and commen tags
This commit is contained in:
parent
9ec329b7ae
commit
ec187fe109
@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- Cleaned up alert module code
|
- Cleaned up alert module code
|
||||||
- Cleaned up check_config code
|
- Cleaned up check_config code
|
||||||
- Replaced grunt-based linters with their non-grunt equivalents
|
- Replaced grunt-based linters with their non-grunt equivalents
|
||||||
|
- Switch to most of the eslint:recommended rules and fix warnings
|
||||||
|
|
||||||
### Deleted
|
### Deleted
|
||||||
- Removed truetype (ttf) fonts
|
- Removed truetype (ttf) fonts
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
/* global config, vendor, MM, Log, Module */
|
/* global config, vendor, MM, Log, Module */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* Magic Mirror
|
||||||
* Module and File loaders.
|
* Module and File loaders.
|
||||||
*
|
*
|
||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var Loader = (function() {
|
var Loader = (function() {
|
||||||
|
|
||||||
/* Create helper variables */
|
/* Create helper variables */
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* global Log, Loader, Module, config, defaults */
|
/* global Log, Loader, Module, config, defaults */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* Magic Mirror
|
||||||
* Main System
|
* Main System
|
||||||
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var MM = (function() {
|
var MM = (function() {
|
||||||
|
|
||||||
var modules = [];
|
var modules = [];
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
* By Paul-Vincent Roll http://paulvincentroll.com
|
* By Paul-Vincent Roll http://paulvincentroll.com
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("alert",{
|
Module.register("alert",{
|
||||||
defaults: {
|
defaults: {
|
||||||
// scale|slide|genie|jelly|flip|bouncyflip|exploader
|
// scale|slide|genie|jelly|flip|bouncyflip|exploader
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("calendar", {
|
Module.register("calendar", {
|
||||||
|
|
||||||
// Define module defaults
|
// Define module defaults
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
/* global Log, Module, moment, config */
|
/* global Log, Module, moment, config */
|
||||||
|
|
||||||
/* Magic Mirror
|
/* Magic Mirror
|
||||||
* Module: Clock
|
* Module: Clock
|
||||||
*
|
*
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("currentweather",{
|
Module.register("currentweather",{
|
||||||
|
|
||||||
// Default module config.
|
// Default module config.
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("helloworld",{
|
Module.register("helloworld",{
|
||||||
|
|
||||||
// Default module config.
|
// Default module config.
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("newsfeed",{
|
Module.register("newsfeed",{
|
||||||
|
|
||||||
// Default module config.
|
// Default module config.
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
*
|
*
|
||||||
* This class is the blueprint for a weather provider.
|
* This class is the blueprint for a weather provider.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
WeatherProvider.register("openweathermap", {
|
WeatherProvider.register("openweathermap", {
|
||||||
|
|
||||||
// Set the name of the provider.
|
// Set the name of the provider.
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
*
|
*
|
||||||
* This class is a provider for UK Met Office Datapoint.
|
* This class is a provider for UK Met Office Datapoint.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
WeatherProvider.register("ukmetoffice", {
|
WeatherProvider.register("ukmetoffice", {
|
||||||
|
|
||||||
// Set the name of the provider.
|
// Set the name of the provider.
|
||||||
|
@ -11,7 +11,6 @@
|
|||||||
* Note that this is only for US locations (lat and lon) and does not require an API key
|
* Note that this is only for US locations (lat and lon) and does not require an API key
|
||||||
* Since it is free, there are some items missing - like sunrise, sunset, humidity, etc.
|
* Since it is free, there are some items missing - like sunrise, sunset, humidity, etc.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
WeatherProvider.register("weathergov", {
|
WeatherProvider.register("weathergov", {
|
||||||
|
|
||||||
// Set the name of the provider.
|
// Set the name of the provider.
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("weather",{
|
Module.register("weather",{
|
||||||
// Default module config.
|
// Default module config.
|
||||||
defaults: {
|
defaults: {
|
||||||
|
@ -7,11 +7,10 @@
|
|||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*
|
*
|
||||||
* This class is the blueprint for a day which includes weather information.
|
* This class is the blueprint for a day which includes weather information.
|
||||||
|
*
|
||||||
|
* Currently this is focused on the information which is necessary for the current weather.
|
||||||
|
* As soon as we start implementing the forecast, mode properties will be added.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Currently this is focused on the information which is necessary for the current weather.
|
|
||||||
// As soon as we start implementing the forecast, mode properties will be added.
|
|
||||||
|
|
||||||
class WeatherObject {
|
class WeatherObject {
|
||||||
constructor(units, tempUnits, windUnits) {
|
constructor(units, tempUnits, windUnits) {
|
||||||
|
|
||||||
|
@ -8,10 +8,6 @@
|
|||||||
*
|
*
|
||||||
* This class is the blueprint for a weather provider.
|
* This class is the blueprint for a weather provider.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
|
||||||
* Base BluePrint for the WeatherProvider
|
|
||||||
*/
|
|
||||||
var WeatherProvider = Class.extend({
|
var WeatherProvider = Class.extend({
|
||||||
// Weather Provider Properties
|
// Weather Provider Properties
|
||||||
providerName: null,
|
providerName: null,
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("weatherforecast",{
|
Module.register("weatherforecast",{
|
||||||
|
|
||||||
// Default module config.
|
// Default module config.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user