Skip to content

Commit

Permalink
Cleanups (#3369)
Browse files Browse the repository at this point in the history
- Remove useless css class in clock
- Fix typo in calendar
- Changelog also got a little screwed after last merge
- updated dependencies
  • Loading branch information
rejas authored Jan 27, 2024
1 parent 7f0b8e4 commit fb5fab8
Show file tree
Hide file tree
Showing 5 changed files with 160 additions and 103 deletions.
9 changes: 2 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ _This release is scheduled to be released on 2024-04-01._

### Fixed

- Worked around several issues in the RRULE library that were causing deleted calender events to still show, some
initial and recurring events to not show, and some event times to be off an hour. (#3291)
- Skip changelog requirement when running tests for dependency updates (#3320)
- [newsfeed] Suppress unsightly animation cases when there are 0 or 1 active news items (#3336)
- [newsfeed] Always compute the feed item URL using the same helper function (#3336)
Expand All @@ -36,13 +38,6 @@ _This release is scheduled to be released on 2024-04-01._

- Unneeded file headers (#3358)

## [2.27.0] - UNRELEASED

### Fixed

- Worked around several issues in the RRULE library that were causing deleted calender events to still show, some
initial and recurring events to not show, and some event times to be off an hour. (#3291)

## [2.26.0] - 01-01-2024

Thanks to: @bnitkin, @bugsounet, @dependabot, @jkriegshauser, @kaennchenstruggle, @KristjanESPERANTO and @Ybbet.
Expand Down
4 changes: 2 additions & 2 deletions modules/default/calendar/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ Module.register("calendar", {
Log.info(`Starting module: ${this.name}`);

if (this.config.colored) {
Log.warn("Your are using the deprecated config values 'colored'. Please switch to 'coloredSymbol' & 'coloredText'!");
Log.warn("Your are using the deprecated config values 'colored'. Please switch to 'coloredSymbol' & 'coloredText'!");
this.config.coloredText = true;
this.config.coloredSymbol = true;
}
if (this.config.coloredSymbolOnly) {
Log.warn("Your are using the deprecated config values 'coloredSymbolOnly'. Please switch to 'coloredSymbol' & 'coloredText'!");
Log.warn("Your are using the deprecated config values 'coloredSymbolOnly'. Please switch to 'coloredSymbol' & 'coloredText'!");
this.config.coloredText = false;
this.config.coloredSymbol = true;
}
Expand Down
1 change: 0 additions & 1 deletion modules/default/clock/clock.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ Module.register("clock", {
analogWrapper.className = "clock-circle";
const digitalWrapper = document.createElement("div");
digitalWrapper.className = "digital";
digitalWrapper.style.gridArea = "center";

/************************************
* Create wrappers for DIGITAL clock
Expand Down
Loading

0 comments on commit fb5fab8

Please sign in to comment.