Skip to content

Commit

Permalink
chore: update the Christmas logo with original assets
Browse files Browse the repository at this point in the history
Co-authored-by: Emilien Colombier <[email protected]>
  • Loading branch information
acolombier and peineduper committed Dec 20, 2024
1 parent 7de07fc commit 172f014
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 3,467 deletions.
3,563 changes: 98 additions & 3,465 deletions res/images/mixxx-icon-logo-christmas.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/skin/legacy/launchimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
namespace {
bool isIn2024ChristmasHolidays() {
auto currentDate = QDate::currentDate();
return currentDate >= QDate(2024, 12, 24) &&
currentDate <= QDate(2025, 1, 6);
return (currentDate.month() == 12 && currentDate.day() >= 24) ||
(currentDate.month() == 1 && currentDate.day() <= 6);
}
} // namespace

Expand Down

0 comments on commit 172f014

Please sign in to comment.