diff --git a/src/kernel/userland/about.c b/src/kernel/userland/about.c index 604f700..6be5506 100644 --- a/src/kernel/userland/about.c +++ b/src/kernel/userland/about.c @@ -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); diff --git a/src/kernel/userland/sysfetch.c b/src/kernel/userland/sysfetch.c index 74671ac..2678845 100644 --- a/src/kernel/userland/sysfetch.c +++ b/src/kernel/userland/sysfetch.c @@ -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);