Switch to rrule-alt. Issue: #565

This commit is contained in:
Michael Teeuw 2017-01-14 19:31:24 +01:00
parent 0623ae1f87
commit 2f7be0559a
3 changed files with 7 additions and 4 deletions

View File

@ -3,10 +3,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## [2.1.1] - Unreleased ## [2.1.1] - Unreleased
- Make mouse events pass through the region fullscreen_above to modules below.
**Note:** This update uses new dependencies. Please update using the following command: `git pull && npm install`
### Changed ### Changed
- Installer: Use init config.js from config.js.sample. - Installer: Use init config.js from config.js.sample.
- Switched out `rrule` package for `rrule-alt` in order to improve calendar issues. (Experimental: [#565](https://github.com/MichMich/MagicMirror/issues/565))
- Make mouse events pass through the region fullscreen_above to modules below.
### Added ### Added
- Add loaded function to modules, providing an async callback. - Add loaded function to modules, providing an async callback.
@ -136,7 +139,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed ### Fixed
- Added reference to Italian Translation. - Added reference to Italian Translation.
- Added the missing NE translation to all languages. [#334](https://github.com/MichMich/MagicMirror/issues/344) - Added the missing NE translation to all languages. [#565](https://github.com/MichMich/MagicMirror/issues/344)
- Added proper User-Agent string to calendar call. - Added proper User-Agent string to calendar call.
### Changed ### Changed

View File

@ -17,7 +17,7 @@ exports.parseFile = function(filename){
} }
var rrule = require('rrule').RRule var rrule = require('rrule-alt').RRule
ical.objectHandlers['RRULE'] = function(val, params, curr, stack, line){ ical.objectHandlers['RRULE'] = function(val, params, curr, stack, line){
curr.rrule = line; curr.rrule = line;

View File

@ -44,7 +44,7 @@
"iconv-lite": "latest", "iconv-lite": "latest",
"moment": "latest", "moment": "latest",
"request": "^2.78.0", "request": "^2.78.0",
"rrule": "latest", "rrule-alt": "^2.2.3",
"simple-git": "^1.62.0", "simple-git": "^1.62.0",
"socket.io": "^1.5.1", "socket.io": "^1.5.1",
"valid-url": "latest", "valid-url": "latest",