Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Sep 22, 2021
1 parent 96738ee commit 48996a3
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions LiteLoader/LiteLoader.cpp
Original file line number Diff line number Diff line change
@@ -140,8 +140,7 @@ static void entry(bool fix_cwd) {
Event::addEventListener([](ServerStartedEV) { // Server started event
startWBThread();
LOG("LiteLoader is distributed under the GPLv3 License");
LOG(u8"感谢旋律云(rhymc.com)对本项目的支持 | Thanks to [rhymc.com] for supporting this "
u8"project");
LOG("Thanks to rhymc.com for supporting this project");
checkUpdate();
});

@@ -155,9 +154,8 @@ static void entry(bool fix_cwd) {
THook(int, "main", int a, void *b) {
std::ios::sync_with_stdio(false);
HWND hwnd = GetConsoleWindow();
std::wstring s = L"LiteLoaderBDS " + s2ws(LITELOADER_VERSION) + L" for BDS";
std::wstring s = L"LiteLoaderBDS " + s2ws(LITELOADER_VERSION);
SetWindowText(hwnd, s.c_str());
// system("chcp 65001");
entry(a > 1);
return original(a, b);
}
2 changes: 1 addition & 1 deletion headers/liteloader.h
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
# define LIAPI __declspec(dllexport)
#endif
#define LITELOADER_VERSION "1.2.0"
#define LITELOADER_VERSION_NUMBER 13ui8
#define LITELOADER_VERSION_NUMBER 14
typedef unsigned char uchar;

namespace loaderapi {

0 comments on commit 48996a3

Please # to comment.