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;