Skip to content

Commit

Permalink
Meta: Update copyright date.
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepy-monax committed Dec 30, 2023
1 parent de8b7c6 commit 62053e7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 3 additions & 1 deletion license.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Copyright © 2018-2023, the skiftOS Developers
MIT License

Copyright © 2018-2024, the skiftOS Develpers

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion src/apps/hideo-about/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Ui::Child app() {
Ui::headlineMedium("skiftOS"),
Ui::versionBadge() | Ui::center()),
Ui::empty(),
Ui::text2("Copyright © 2018-2023\nThe skiftOS Developers\nAll rights reserved."),
Ui::text2("Copyright © 2018-2024\nThe skiftOS Developers\nAll rights reserved."),
Ui::grow(NONE),
Ui::hflow(
8,
Expand Down
4 changes: 2 additions & 2 deletions src/libs/karm-ui/dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ Child versionBadge() {
return hflow(4, badges);
}

static constexpr Str LICENSE = R"(Copyright © 2018-2023, the skiftOS Developers
static constexpr Str LICENSE = R"(Copyright © 2018-2024, the skiftOS Developers
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
Expand Down Expand Up @@ -298,7 +298,7 @@ Child aboutDialog(Mdi::Icon i, String name) {
Ui::TextStyles::labelMedium()
.withAlign(Gfx::TextAlign::CENTER)
.withColor(Ui::GRAY400),
"Copyright © 2018-2023\nThe skiftOS Developers\nAll rights reserved.") |
"Copyright © 2018-2024\nThe skiftOS Developers\nAll rights reserved.") |
Ui::spacing(16));

Children actions = {
Expand Down
4 changes: 1 addition & 3 deletions src/srvs/grund-device/cmos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@ Res<> Rtc::init() {
// we can still do some sanity checks
auto dt = DateTime::fromTimeStamp(try$(this->now()));
logInfo("cmos: rtc date: {}", dt);
if (dt.date.year < Year{2023}) {
if (dt.date.year < Year{2024})
logWarn("cmos: rtc out of date, make sure to set the correct date");
}

return Ok();
}

Expand Down

0 comments on commit 62053e7

Please sign in to comment.