Skip to content

Commit

Permalink
Bump version to 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterSolstice8 committed Nov 11, 2024
1 parent 5e2a547 commit 655ab6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace globals
std::string g_Password = ""; // The password being logged in with.
char g_SessionHash[16] = {}; // Session hash sent from auth
std::string g_Email = ""; // Email, currently unused
std::string g_VersionNumber = "1.1.1"; // xiloader version number sent to auth server. Must be x.x.x with single characters for 'x'. Remember to also change in xiloader.rc.in
std::string g_VersionNumber = "1.1.2"; // xiloader version number sent to auth server. Must be x.x.x with single characters for 'x'. Remember to also change in xiloader.rc.in

char* g_CharacterList = NULL; // Pointer to the character list data being sent from the server.
bool g_IsRunning = false; // Flag to determine if the network threads should hault.
Expand Down Expand Up @@ -458,6 +458,7 @@ int __cdecl main(int argc, char* argv[])
xiloader::console::output(xiloader::color::lightred, "==========================================================");
xiloader::console::output(xiloader::color::lightgreen, "DarkStar Boot Loader (c) 2015 DarkStar Team");
xiloader::console::output(xiloader::color::lightgreen, "LandSandBoat Boot Loader (c) 2021-%d LandSandBoat Team (v%s)", currentYear, globals::g_VersionNumber.c_str());
xiloader::console::output(xiloader::color::lightblue, "Using %s", MBEDTLS_VERSION_STRING_FULL); // this prints "Using Mbed TLS #.#.#"
xiloader::console::output(xiloader::color::lightpurple, "Git Repo : https://github.com/LandSandBoat/xiloader");
xiloader::console::output(xiloader::color::lightpurple, "Bug Reports: https://github.com/LandSandBoat/xiloader/issues");
xiloader::console::output(xiloader::color::lightred, "==========================================================");
Expand Down
2 changes: 1 addition & 1 deletion src/xiloader.rc.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ BEGIN
BEGIN
BLOCK "081604b0"
BEGIN
VALUE "FileVersion", "1.1.1"
VALUE "FileVersion", "1.1.2"
END
END
END

0 comments on commit 655ab6c

Please sign in to comment.