app information
This commit is contained in:
parent
b1e2043fb3
commit
d5caf8c601
@ -43,7 +43,7 @@ void launcher::create_main_menu()
|
||||
return DefWindowProcA(*window, message, w_param, l_param);
|
||||
});
|
||||
|
||||
this->main_window_.create("S1x", 750, 420);
|
||||
this->main_window_.create("H1-Mod", 750, 420);
|
||||
this->main_window_.load_html(load_content(MENU_MAIN));
|
||||
this->main_window_.show();
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ namespace tls
|
||||
{
|
||||
namespace
|
||||
{
|
||||
utils::binary_resource tls_dll_file(TLS_DLL, "s1x-tlsdll.dll");
|
||||
utils::binary_resource tls_dll_file(TLS_DLL, "h1-tlsdll.dll");
|
||||
}
|
||||
|
||||
PIMAGE_TLS_DIRECTORY allocate_tls_index()
|
||||
|
@ -70,15 +70,15 @@ BEGIN
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "X Labs"
|
||||
VALUE "FileDescription", "S1x"
|
||||
VALUE "CompanyName", "XLabs"
|
||||
VALUE "FileDescription", "H1-Mod"
|
||||
VALUE "FileVersion", VERSION_FILE
|
||||
VALUE "InternalName", "S1x"
|
||||
VALUE "InternalName", "H1-Mod"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2021 X Labs Project. All rights reserved."
|
||||
VALUE "Licence", "GPLv3"
|
||||
VALUE "Info", "https://github.com/XLabsProject/s1x-client"
|
||||
VALUE "OriginalFilename", "s1x.exe"
|
||||
VALUE "ProductName", "s1x"
|
||||
VALUE "Info", "https://github.com/skkuull/h1-mod/"
|
||||
VALUE "OriginalFilename", "h1-mod.exe"
|
||||
VALUE "ProductName", "h1-mod"
|
||||
VALUE "ProductVersion", VERSION_PRODUCT
|
||||
END
|
||||
END
|
||||
|
@ -28,7 +28,7 @@ namespace exception
|
||||
char pathname[MAX_PATH] = {0};
|
||||
|
||||
GetTempPathA(sizeof(pathname), pathname);
|
||||
GetTempFileNameA(pathname, "S1x-", 0, filename);
|
||||
GetTempFileNameA(pathname, "H1-", 0, filename);
|
||||
return filename;
|
||||
}
|
||||
|
||||
|
@ -27,9 +27,9 @@ namespace utils
|
||||
return success;
|
||||
}
|
||||
|
||||
instance->setAppName(L"S1x");
|
||||
instance->setAppName(L"H1-Mod");
|
||||
instance->setAppUserModelId(
|
||||
WinToastLib::WinToast::configureAUMI(L"X Labs", L"s1x", L"", L"20201212"));
|
||||
WinToastLib::WinToast::configureAUMI(L"X Labs", L"H1-Mod", L"", L"20201212"));
|
||||
|
||||
WinToastLib::WinToast::WinToastError error;
|
||||
success = instance->initialize(&error);
|
||||
|
Loading…
Reference in New Issue
Block a user