version 1.0.0
Some checks failed
/ sync-to-origin (push) Has been cancelled

This commit is contained in:
PoliEcho 2025-11-08 15:51:52 +01:00
parent 0573510962
commit ab854ed5ed
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#include <string_view>
#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) {

View File

@ -17,10 +17,10 @@ std::vector<allocation> 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;