1.14.6
This commit is contained in:
parent
13c6c14187
commit
6251c95b22
|
@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
|
||||||
|
## [1.14.6 / 5.69.6] - 2024-07-??
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fixed issue with windows 7 caused by the new CustomLCID option
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.14.5 / 5.69.5] - 2024-07-23
|
## [1.14.5 / 5.69.5] - 2024-07-23
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
#define VERSION_MJR 5
|
#define VERSION_MJR 5
|
||||||
#define VERSION_MIN 69
|
#define VERSION_MIN 69
|
||||||
#define VERSION_REV 5
|
#define VERSION_REV 6
|
||||||
#define VERSION_UPD 0
|
#define VERSION_UPD 0
|
||||||
|
|
||||||
#if VERSION_UPD > 0
|
#if VERSION_UPD > 0
|
||||||
|
|
|
@ -234,7 +234,10 @@ _FX BOOLEAN Kernel_Init()
|
||||||
}
|
}
|
||||||
SBIEDLL_HOOK(Kernel_, GetUserDefaultLCID);
|
SBIEDLL_HOOK(Kernel_, GetUserDefaultLCID);
|
||||||
SBIEDLL_HOOK(Kernel_, GetUserDefaultLangID);
|
SBIEDLL_HOOK(Kernel_, GetUserDefaultLangID);
|
||||||
SBIEDLL_HOOK(Kernel_, GetUserDefaultGeoName);
|
void* GetUserDefaultGeoName = GetProcAddress(Dll_KernelBase ? Dll_KernelBase : Dll_Kernel32, "GetUserDefaultGeoName");
|
||||||
|
if (GetUserDefaultGeoName) {
|
||||||
|
SBIEDLL_HOOK(Kernel_, GetUserDefaultGeoName);
|
||||||
|
}
|
||||||
SBIEDLL_HOOK(Kernel_, GetSystemDefaultUILanguage);
|
SBIEDLL_HOOK(Kernel_, GetSystemDefaultUILanguage);
|
||||||
void* GetSystemDefaultLocaleName = GetProcAddress(Dll_KernelBase ? Dll_KernelBase : Dll_Kernel32, "GetSystemDefaultLocaleName");
|
void* GetSystemDefaultLocaleName = GetProcAddress(Dll_KernelBase ? Dll_KernelBase : Dll_Kernel32, "GetSystemDefaultLocaleName");
|
||||||
if (GetSystemDefaultLocaleName) {
|
if (GetSystemDefaultLocaleName) {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#define VERSION_MJR 1
|
#define VERSION_MJR 1
|
||||||
#define VERSION_MIN 14
|
#define VERSION_MIN 14
|
||||||
#define VERSION_REV 5
|
#define VERSION_REV 6
|
||||||
#define VERSION_UPD 0
|
#define VERSION_UPD 0
|
||||||
|
|
||||||
#ifndef STR
|
#ifndef STR
|
||||||
|
|
Loading…
Reference in New Issue