Skip to content

Commit a192caf

Browse files
Merge branch 'develop' into fetch
2 parents c26ac4d + 3b79791 commit a192caf

File tree

4 files changed

+16
-227
lines changed

4 files changed

+16
-227
lines changed

.gitignore

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ lib-cov
99
coverage
1010
.lock-wscript
1111
build/Release
12-
/node_modules/**/*
13-
!/tests/node_modules/**/*
12+
node_modules
1413
jspm_modules
1514
.npm
1615
.node_repl_history
@@ -56,21 +55,15 @@ Temporary Items
5655
.Trash-*
5756

5857
# Ignore all modules except the default modules.
59-
/modules/**
60-
!/modules/default
61-
!/modules/default/**
62-
!/modules/README.md**
58+
modules
59+
!modules/default
6360

64-
# Ignore changes to the custom css files but keep the sample and main.
65-
/css/*
66-
!/css/custom.css.sample
67-
!/css/main.css
68-
!/css/roboto.css
69-
!/css/font-awesome.css
61+
# Ignore changes to the custom css files but keep others.
62+
css/custom.css
7063

7164
# Ignore users config file but keep the sample.
72-
/config/*
73-
!/config/config.js.sample
65+
config
66+
!config/config.js.sample
7467

7568
# Vim
7669
## swap

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ planned for 2026-01-01
1616
- [weather] feat: add configurable forecast date format option (#3918)
1717
- [core] Add new `server:watch` script to run MagicMirror² server-only with automatic restarts when files (defined in `config.watchTargets`) change (#3920)
1818

19+
### Removed
20+
21+
- [weather] Removed deprecated ukmetoffice datapoint provider (#3842, #3952)
22+
1923
### Changed
2024

2125
- [core] refactor: replace `module-alias` dependency with internal alias resolver (#3893)
@@ -25,6 +29,7 @@ planned for 2026-01-01
2529
- [tests] migrate from `jest` to `vitest` (#3940, #3941)
2630
- [ci] Add concurrency to automated tests workflow to cancel outdated runs (#3943)
2731
- [tests] replace `node-libgpiod` with `serialport` in electron-rebuild workflow (#3945)
32+
- [calendar] hide repeatingCountTitle if the event count is zero (#3949)
2833
- [core] refactor: replace `XMLHttpRequest` with `fetch` in `translator.js` (#3950)
2934
- [tests] migrate e2e tests to Playwright (#3950)
3035

@@ -39,7 +44,7 @@ planned for 2026-01-01
3944

4045
### Updated
4146

42-
- [core] Update dependencies (#3909, #3916, #3921, #3925, #3934)
47+
- [core] Update dependencies incl. electron to v39 (#3909, #3916, #3921, #3925, #3934)
4348
- [logger] Add prefixes to most Log messages (#3923, #3926)
4449

4550
## [2.33.0] - 2025-10-01

modules/default/calendar/calendar.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,9 @@ Module.register("calendar", {
330330
const thisYear = eventStartDateMoment.year(),
331331
yearDiff = thisYear - event.firstYear;
332332

333-
repeatingCountTitle = `, ${yearDiff} ${repeatingCountTitle}`;
333+
if (yearDiff > 0) {
334+
repeatingCountTitle = `, ${yearDiff} ${repeatingCountTitle}`;
335+
}
334336
}
335337
}
336338

modules/default/weather/providers/ukmetoffice.js

Lines changed: 0 additions & 211 deletions
This file was deleted.

0 commit comments

Comments
 (0)