mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
V1.70
This commit is contained in:
parent
93b59064c7
commit
43a9735f81
2 changed files with 4 additions and 4 deletions
|
|
@ -97,8 +97,8 @@ static void about_paint(ui_window_t win) {
|
|||
|
||||
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 + fh, "BoredOS Version 1.65", 0xFFFFFFFF);
|
||||
ui_draw_string(win, offset_x, offset_y + 105 + fh*2, "Kernel Version 3.0.1", 0xFFFFFFFF);
|
||||
ui_draw_string(win, offset_x, offset_y + 105 + fh, "BoredOS Version 1.70", 0xFFFFFFFF);
|
||||
ui_draw_string(win, offset_x, offset_y + 105 + fh*2, "Kernel Version 3.1.0", 0xFFFFFFFF);
|
||||
|
||||
// Copyright
|
||||
ui_draw_string(win, offset_x, offset_y + 105 + fh*3, "(C) 2026 boreddevnl.", 0xFFFFFFFF);
|
||||
|
|
|
|||
|
|
@ -239,11 +239,11 @@ int main(int argc, char **argv) {
|
|||
}
|
||||
if (config.os_label[0]) {
|
||||
strcpy(info_lines[info_line_count], config.os_label);
|
||||
strcat(info_lines[info_line_count++], ": BoredOS V1.65 'Retrowave'");
|
||||
strcat(info_lines[info_line_count++], ": BoredOS V1.70 'Retrowave'");
|
||||
}
|
||||
if (config.kernel_label[0]) {
|
||||
strcpy(info_lines[info_line_count], config.kernel_label);
|
||||
strcat(info_lines[info_line_count++], ": Boredkernel V3.0.1 x86_64");
|
||||
strcat(info_lines[info_line_count++], ": Boredkernel V3.1.0 x86_64");
|
||||
}
|
||||
if (config.uptime_label[0]) {
|
||||
uint64_t ticks = sys_system(16, 0, 0, 0, 0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue