Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. ### Changelog
  2. - 2.6.8 (2021-02-04)
  3. - Bugfixes:
  4. - Solve circular imports (#444)
  5. - 2.6.6 (2020-08-23)
  6. - Bugfixes:
  7. - Fixed broken npm package (#417)
  8. - 2.6.5 (2020-08-23)
  9. - Bugfixes:
  10. - `luxon`-less binary should not contain any `luxon` imports (#410)
  11. - Fixed `toText` pluralization of “minutes“ (#415)
  12. - 2.6.4 (2019-12-18)
  13. - Bugfixes:
  14. - Calculating series with unknown timezones will produce infinite loop (#320)
  15. - Internal:
  16. - Upgrade build dependencies
  17. - 2.6.3 (2019-11-24)
  18. - Features
  19. - Allow passing `WeekdayStr` to `byweekday` like the types suggest is possible (#371)
  20. - 2.6.2 (2019-06-08)
  21. - Features
  22. - Allow two digits for `BYDAY` (#330)
  23. - Add a quick way to format `until` in `toText` (#313)
  24. - Add support for parsing an rrule string without frequency (#339)
  25. - Add getters for `rrules`, `exrules`, `rdates`, `exdates` (#347)
  26. - 2.6.0 (2019-01-03)
  27. - Bugfixes:
  28. - Fix sourcemap structure (#303)
  29. - 2.5.6 (2018-09-30)
  30. - Bugfixes:
  31. - Validate date inputs (#281)
  32. - 2.5.5 (2018-09-06)
  33. - Bugfixes:
  34. - Don't emit `RDATE;TZID=UTC` for rdates
  35. - 2.5.3 (2018-09-06)
  36. - Bugfixes:
  37. - Prevented emitting `DTSTART;TZID=UTC` when UTC is explicitly set as tzid
  38. - 2.5.2 (2018-09-05)
  39. - Bugfixes:
  40. - Permitted RRuleSets with no rrules to have tzid
  41. - 2.5.1 (2018-09-02)
  42. - Bugfixes:
  43. - Conformed output & parsing to RFC 5545 (#295)
  44. - 2.4.1 (2018-08-16)
  45. - Features:
  46. - Added codecov (#265)
  47. - Bugfixes:
  48. - Fixed RRULE parsing issue (#266)
  49. - 2.4.0 (2018-08-16)
  50. - Features:
  51. - Implement `TZID` support (#38, #261)
  52. - Bugfixes:
  53. - Fixed an error in Typescript output (#264)
  54. - 2.3.6 (2018-08-14)
  55. - Bugfixes:
  56. - Point package.json to es5-compiled bundle (#260)
  57. - 2.3.5 (2018-08-14)
  58. - Features:
  59. - Return text "every day" when all days are selected
  60. - Bugfixes:
  61. - Sort monthdays correctly from toText() (#101)
  62. - Accept 0 as a valid monthday/weekday value (#153)
  63. - Support 3-digit years (#202)
  64. - 2.3.4 (2018-08-10)
  65. - Fixed support for eastern hemisphere timezones (#247)
  66. - 2.3.3 (2018-08-08)
  67. - Fixed typescript error (#244)
  68. - 2.3.2 (2018-08-07)
  69. - Fixed deploy on npm (#239)
  70. - 2.3.0 (2018-08-06)
  71. - Converted to [Typescript](https://www.typescriptlang.org/) (#229)
  72. - Add es5 and es6 distributions
  73. - Fixed a bug where recurrences in DST were 1 hour off if the host system used DST (#233)
  74. - Fixed numeric handling of weekday strings
  75. - 2.2.8 (2018-02-16)
  76. - Added `fromText()` and `toText()` support for rules with `RRule.MINUTELY` frequency.
  77. - Added support for `VALUE=DATE` as a `RDATE` param.
  78. - Added typescript definitions.
  79. - Merged in the now obsolete `arolson101/rrule` fork (many thanks to @arolson101).
  80. - Fixed `RRule` mutating passed-in `options` in some cases.
  81. - Fixed unexpected results with dates lower than 1970.
  82. - Fixed `RRule.DAILY` frequency when only 1 `BYHOUR` is provided.
  83. - Fixed the internal `isLeapYear()` to only accept integers instead of relying on `instanceof` to check the parameter type.
  84. - 2.2.0 (2017-03-11)
  85. - Added support `RRuleSet`, which allows more complex recurrence setups,
  86. mixing multiple rules, dates, exclusion rules, and exclusion dates.
  87. - Added Millisecond precision
  88. - Millisecond offset extracted from `dtstart` (`dtstart.getTime() % 1000`)
  89. - Each recurrence is returned with the same offset
  90. - Added some NLP support for hourly and byhour.
  91. - Fixed export in nlp.js.
  92. - 2.1.0
  93. - Removed dependency on Underscore.js (thanks, @gsf).
  94. - Various small bugfixes and improvements.
  95. - 2.0.1
  96. - Added bower.json.
  97. - 2.0.0 (2013-07-16)
  98. - Fixed a February 28-related issue.
  99. - More flexible, backwards-incompatible API:
  100. - `freq` is now `options.freq`.
  101. - `options.cache` is now `noCache`.
  102. - `iterator` has to return `true`
  103. - `dtstart` and `options` arguments removed from `RRule.fromString`
  104. (use `RRule.parseString` and modify `options` manually instead).
  105. - `today` argument removed from `Rule.prototype.toText`
  106. (never actually used).
  107. - `rule.toString()` now includes `DTSTART` (if explicitly specified
  108. in `options`).
  109. - Day constants `.clone` is now `.nth`, eg. `RRule.FR.nth(-1)`
  110. (last Friday).
  111. - Added `RRule.parseString`
  112. - Added `RRule.parseText`
  113. - Added `RRule.optionsToString`
  114. - 1.1.0 (2013-05-21)
  115. - Added a [demo app](http://jakubroztocil.github.io/rrule/).
  116. - Handle dates in `UNTIL` in `RRule.fromString`.
  117. - Added support for RequireJS.
  118. - Added `options` argument to `RRule.fromString`.
  119. - 1.0.1 (2013-02-26)
  120. - Fixed leap years (thanks @jessevogt)
  121. - 1.0.0 (2013-01-24)
  122. - Fixed timezone offset issues related to DST (thanks @evro).
  123. - 1.0.0-beta (2012-08-15)
  124. - Initial public release.