From 0491c4ad0f294f91be2dee421b5ab79d4d8a5e6c Mon Sep 17 00:00:00 2001 From: boreddevnl Date: Tue, 17 Mar 2026 15:50:25 +0100 Subject: [PATCH] TWEAK: change version number for V1.72 and 3.1.2 --- src/userland/cli/sysfetch.c | 4 ++-- src/userland/gui/about.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/userland/cli/sysfetch.c b/src/userland/cli/sysfetch.c index 33f4592..5bf8721 100644 --- a/src/userland/cli/sysfetch.c +++ b/src/userland/cli/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.71 'Retrowave'"); + strcat(info_lines[info_line_count++], ": BoredOS V1.72 'Retrowave'"); } if (config.kernel_label[0]) { 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]) { uint64_t ticks = sys_system(16, 0, 0, 0, 0); diff --git a/src/userland/gui/about.c b/src/userland/gui/about.c index 8d65456..89a7280 100644 --- a/src/userland/gui/about.c +++ b/src/userland/gui/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.71", 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, "BoredOS Version 1.72", 0xFFFFFFFF); + ui_draw_string(win, offset_x, offset_y + 105 + fh*2, "Kernel Version 3.1.2", 0xFFFFFFFF); // Copyright ui_draw_string(win, offset_x, offset_y + 105 + fh*3, "(C) 2026 boreddevnl.", 0xFFFFFFFF);