mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
TWEAK: change version number for V1.72 and 3.1.2
This commit is contained in:
parent
c6fe9971d8
commit
0491c4ad0f
2 changed files with 4 additions and 4 deletions
|
|
@ -239,11 +239,11 @@ int main(int argc, char **argv) {
|
||||||
}
|
}
|
||||||
if (config.os_label[0]) {
|
if (config.os_label[0]) {
|
||||||
strcpy(info_lines[info_line_count], config.os_label);
|
strcpy(info_lines[info_line_count], config.os_label);
|
||||||
strcat(info_lines[info_line_count++], ": BoredOS V1.71 'Retrowave'");
|
strcat(info_lines[info_line_count++], ": BoredOS V1.72 'Retrowave'");
|
||||||
}
|
}
|
||||||
if (config.kernel_label[0]) {
|
if (config.kernel_label[0]) {
|
||||||
strcpy(info_lines[info_line_count], config.kernel_label);
|
strcpy(info_lines[info_line_count], config.kernel_label);
|
||||||
strcat(info_lines[info_line_count++], ": Boredkernel V3.1.1 x86_64");
|
strcat(info_lines[info_line_count++], ": Boredkernel V3.1.2 x86_64");
|
||||||
}
|
}
|
||||||
if (config.uptime_label[0]) {
|
if (config.uptime_label[0]) {
|
||||||
uint64_t ticks = sys_system(16, 0, 0, 0, 0);
|
uint64_t ticks = sys_system(16, 0, 0, 0, 0);
|
||||||
|
|
|
||||||
|
|
@ -97,8 +97,8 @@ static void about_paint(ui_window_t win) {
|
||||||
|
|
||||||
int fh = ui_get_font_height();
|
int fh = ui_get_font_height();
|
||||||
ui_draw_string(win, offset_x, offset_y + 105, "BoredOS 'Retrowave'", 0xFFFFFFFF);
|
ui_draw_string(win, offset_x, offset_y + 105, "BoredOS 'Retrowave'", 0xFFFFFFFF);
|
||||||
ui_draw_string(win, offset_x, offset_y + 105 + fh, "BoredOS Version 1.71", 0xFFFFFFFF);
|
ui_draw_string(win, offset_x, offset_y + 105 + fh, "BoredOS Version 1.72", 0xFFFFFFFF);
|
||||||
ui_draw_string(win, offset_x, offset_y + 105 + fh*2, "Kernel Version 3.1.1", 0xFFFFFFFF);
|
ui_draw_string(win, offset_x, offset_y + 105 + fh*2, "Kernel Version 3.1.2", 0xFFFFFFFF);
|
||||||
|
|
||||||
// Copyright
|
// Copyright
|
||||||
ui_draw_string(win, offset_x, offset_y + 105 + fh*3, "(C) 2026 boreddevnl.", 0xFFFFFFFF);
|
ui_draw_string(win, offset_x, offset_y + 105 + fh*3, "(C) 2026 boreddevnl.", 0xFFFFFFFF);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue