diff --git a/Changes b/Changes index cc032c25..41c841f5 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,4 @@ -1.5.0 - DD-Nov-2023 +1.5.0 - 15-Nov-2023 =================== - Added a kernel memory allocator that uses the buddy algorithm to manage requests smaller than PAGE_SIZE (4KiB). @@ -171,6 +171,7 @@ sys_msgrcv(). - Fixed ata_hd_init() to not fail build if CONFIG_PCI is #undef. - Fixed padding in fbcon_insert_char() to use character 0x20 instead of 0x00. +- Fixed vgacon_scroll_screen() to use double-buffering. - Small fixes and cosmetic changes. diff --git a/README.md b/README.md index 26f9e946..52250c9f 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ References License ------- Fiwix is free software licensed under the terms of the MIT License, see the LICENSE file for more details. -Copyright (C) 2018-2022, Jordi Sanfeliu. +Copyright (C) 2018-2023, Jordi Sanfeliu. Credits ------- diff --git a/include/fiwix/system.h b/include/fiwix/system.h index 1285a5f5..f6ad93e8 100644 --- a/include/fiwix/system.h +++ b/include/fiwix/system.h @@ -10,7 +10,7 @@ #define UTS_SYSNAME "Fiwix" #define UTS_NODENAME "(none)" -#define UTS_RELEASE "1.4.0" +#define UTS_RELEASE "1.5.0" #define UTS_DOMAINNAME "(none)" struct sysinfo { diff --git a/include/fiwix/version.h b/include/fiwix/version.h index d8257136..8768f594 100644 --- a/include/fiwix/version.h +++ b/include/fiwix/version.h @@ -1 +1 @@ -#define UTS_VERSION "Tue Nov 15 10:02:21 CET 2022" +#define UTS_VERSION "Wed Nov 15 07:36:37 UTC 2023" diff --git a/kernel/main.c b/kernel/main.c index 55fa204f..6ae46d28 100644 --- a/kernel/main.c +++ b/kernel/main.c @@ -77,7 +77,7 @@ void start_kernel(unsigned int magic, unsigned int info, unsigned int last_boot_ #endif /* CONFIG_QEMU_DEBUGCON */ printk(" Fiwix kernel v%s for i386 architecture\n", UTS_RELEASE); - printk(" Copyright (c) 2018-2022, Jordi Sanfeliu\n"); + printk(" Copyright (c) 2018-2023, Jordi Sanfeliu\n"); printk("\n"); printk(" (built on %s with GCC %s)\n", UTS_VERSION, __VERSION__); printk("\n");