You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
4
+
This project adheres to [Semantic Versioning](https://semver.org/).
5
+
6
+
## [1.4.4] 2024-11-27
7
+
8
+
- Get rid of callback function `cb`
9
+
- Remove useless assignment and unnecessary use of `undefined`
10
+
- Simplify nodeVersion
11
+
- Optimize logging
12
+
- Update dependencies
13
+
- Update URL in `.editorconfig`
14
+
- Move Changelog from README.md to CHANGELOG.md
15
+
- Add link to LICENSE file in README.md
16
+
- Fix Update instructions in README.md
17
+
18
+
## [1.4.3] 2024-10-28 - Maintenance update
19
+
20
+
- Add linting for Markdown
21
+
- Update dependencies
22
+
- Add `eslint-plugin-import`
23
+
- Remove unused `eslint-plugin-prettier`
24
+
- Switch to flat config for prettier and stylelint
25
+
26
+
## [1.4.2] 2024-08-27 - Maintenance update
27
+
28
+
- Upgrade ESLint to v9
29
+
- Switch to ESLint flat config
30
+
- Update dependencies
31
+
- Disable validating JavaScript, CSS and JSON by super-linter
32
+
33
+
## [1.4.1] 2024-01-01 - Maintenance update
34
+
35
+
- Update dependencies
36
+
- Update ESLint env
37
+
- Replace eslint-plugin-json by eslint-plugin-jsonc
38
+
- Update URLs to MagicMirror project
39
+
40
+
## [1.4.0] 2023-10-10
41
+
42
+
- MODIFIED: Replace external package `node-fetch` by internal `fetch` - With this change, node version 18 or newer is required.
43
+
44
+
## [1.3.0] 2022-03-07
45
+
46
+
- MODIFIED: Reduction of linting issues #158
47
+
48
+
## [1.2.0] 2022-02-24
49
+
50
+
- ADDED: Basic auth support. #138
51
+
- MODIFIED: Introduction of Super-Linter and with it a large number of code adjustments (which should have no functional impact). #147
52
+
53
+
## [1.1.0] 2022-02-11
54
+
55
+
- ADDED: Vertical Autosizing, Hidden Footer and Space right of items in week/month view #128
56
+
- MODIFIED: Replace deprecated package `request` by `node-fetch`#135
57
+
- FIXED: `git clone` problem with Windows #137
58
+
59
+
## [1.0.9] 2020-02-14
60
+
61
+
- ADDED: `positionOrder` of `view`. now you can change the order of that view in region(position) against other modules.
62
+
63
+
## [1.0.8] 2020-02-13
64
+
65
+
- ADDED: `isRecurring` property to `event` object. now you can check this event is recurred or not. You can use this in `filter/sort/transform` callbacks. and CSS class `recurred` will be added to that event.
66
+
67
+
## [1.0.7] 2020-01-31
68
+
69
+
- MODIFIED: Default value of `maxItems` to `1000` from `100` to avoid frequently asking issue of `events of nowadays are not shown`
70
+
- MODIFIED: Automatically fixing of unofficial URI from `webcal://` URL to `http://`.
71
+
72
+
## [1.0.6]
73
+
74
+
- ADDED: `title` of view can have callback function as a value. Now you can make view title contextually
75
+
76
+
```js
77
+
title:"My Weekly",
78
+
79
+
or
80
+
81
+
title: (mObj) => { // moment object for first slot of view.
82
+
returnmObj.format("[My Weekly:] Wo")
83
+
},
84
+
// This will show "My Weekly: 49TH" as module title.
85
+
```
86
+
87
+
## [1.0.5]
88
+
89
+
- ADDED: can display name of Month (e.g: August) in `month` view (`monthFormat:"MMMM"`)
90
+
91
+
## [1.0.4]
92
+
93
+
- ADDED: event property `ms_busystatus` is added. (Thanks to @klaernie for the PR)
Copy file name to clipboardExpand all lines: README.md
+14-82Lines changed: 14 additions & 82 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ But if you have no dissatisfaction with `MMM-CalendarExt`, leave it.
64
64
65
65
## Update
66
66
67
-
Just enter the MMM-PublicTransportHafas directory, pull the update and install the dependencies:
67
+
Just enter the MMM-CalendarExt2 directory, pull the update and install the dependencies:
68
68
69
69
```bash
70
70
cd~/MagicMirror/modules/MMM-CalendarExt2
@@ -74,94 +74,26 @@ npm install
74
74
75
75
## Changelog
76
76
77
-
### [1.4.3] 2024-10-28 - Maintenance update
77
+
Check the [CHANGELOG](CHANGELOG.md) file for changes.
78
78
79
-
- Add linting for Markdown
80
-
- Update dependencies
81
-
- Add `eslint-plugin-import`
82
-
- Remove unused `eslint-plugin-prettier`
83
-
- Switch to flat config for prettier and stylelint
79
+
## License
84
80
85
-
### [1.4.2] 2024-08-27 - Maintenance update
81
+
This module is licensed under the MIT License. Check the [LICENSE](LICENSE.md) file for details.
86
82
87
-
- Upgrade ESLint to v9
88
-
- Switch to ESLint flat config
89
-
- Update dependencies
90
-
- Disable validating JavaScript, CSS and JSON by super-linter
83
+
## Contributing
91
84
92
-
### [1.4.1] 2024-01-01 - Maintenance update
85
+
If you find any problems, bugs or have questions, please [open a GitHub issue](https://github.com/MMM-CalendarExt2/MMM-CalendarExt2/issues) in this repository.
93
86
94
-
- Update dependencies
95
-
- Update ESLint env
96
-
- Replace eslint-plugin-json by eslint-plugin-jsonc
97
-
- Update URLs to MagicMirror project
87
+
Pull requests are of course also very welcome 🙂
98
88
99
-
### [1.4.0] 2023-10-10
89
+
### Developer commands
100
90
101
-
- MODIFIED: Replace external package `node-fetch` by internal `fetch` - With this change, node version 18 or newer is required.
102
-
103
-
### [1.3.0] 2022-03-07
104
-
105
-
- MODIFIED: Reduction of linting issues #158
106
-
107
-
### [1.2.0] 2022-02-24
108
-
109
-
- ADDED: Basic auth support. #138
110
-
- MODIFIED: Introduction of Super-Linter and with it a large number of code adjustments (which should have no functional impact). #147
111
-
112
-
### [1.1.0] 2022-02-11
113
-
114
-
- ADDED: Vertical Autosizing, Hidden Footer and Space right of items in week/month view #128
115
-
- MODIFIED: Replace deprecated package `request` by `node-fetch`#135
116
-
- FIXED: `git clone` problem with Windows #137
117
-
118
-
### [1.0.9] 2020-02-14
119
-
120
-
- ADDED: `positionOrder` of `view`. now you can change the order of that view in region(position) against other modules.
121
-
122
-
### [1.0.8] 2020-02-13
123
-
124
-
- ADDED: `isRecurring` property to `event` object. now you can check this event is recurred or not. You can use this in `filter/sort/transform` callbacks. and CSS class `recurred` will be added to that event.
125
-
126
-
### [1.0.7] 2020-01-31
127
-
128
-
- MODIFIED: Default value of `maxItems` to `1000` from `100` to avoid frequently asking issue of `events of nowadays are not shown`
129
-
- MODIFIED: Automatically fixing of unofficial URI from `webcal://` URL to `http://`.
130
-
131
-
### [1.0.6]
132
-
133
-
- ADDED: `title` of view can have callback function as a value. Now you can make view title contextually
134
-
135
-
```js
136
-
title:"My Weekly",
137
-
138
-
or
139
-
140
-
title: (mObj) => { // moment object for first slot of view.
141
-
returnmObj.format("[My Weekly:] Wo")
142
-
},
143
-
// This will show "My Weekly: 49TH" as module title.
144
-
```
145
-
146
-
### [1.0.5]
147
-
148
-
- ADDED: can display name of Month (e.g: August) in `month` view (`monthFormat:"MMMM"`)
149
-
150
-
### [1.0.4]
151
-
152
-
- ADDED: event property `ms_busystatus` is added. (Thanks to @klaernie for the PR)
0 commit comments