From ab854ed5edec2e93e944b87989fa844612ee0737 Mon Sep 17 00:00:00 2001 From: PoliEcho Date: Sat, 8 Nov 2025 15:51:52 +0100 Subject: [PATCH] version 1.0.0 --- src/const.h | 2 +- src/main_menu.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/const.h b/src/const.h index f2b2860..355c862 100644 --- a/src/const.h +++ b/src/const.h @@ -1,7 +1,7 @@ #include #ifndef VERSION -#define VERSION "0.8.2" +#define VERSION "1.0.0" #define NAME "bakatui" inline constexpr auto hash_djb2a(const std::string_view sv) { diff --git a/src/main_menu.cpp b/src/main_menu.cpp index 28c1b46..fb5cdea 100644 --- a/src/main_menu.cpp +++ b/src/main_menu.cpp @@ -17,10 +17,10 @@ std::vector main_menu_allocated; void main_menu() { current_allocated = &main_menu_allocated; const wchar_t *choices[] = { - L"login", L"Marks", L"timetable", L"Komens", + L"Marks", L"timetable", L"Komens", L"Homework", L"Absence", L"Exit", nullptr, }; - void (*choicesFuncs[])() = {nullptr, marks_page, timetable_page, komens_menu, + void (*choicesFuncs[])() = {marks_page, timetable_page, komens_menu, nullptr, absence_page, nullptr, nullptr}; complete_menu main_menu;