This commit is contained in:
恍兮惚兮 2024-11-30 10:02:51 +08:00
parent 78e24cd734
commit c33518ac77
4 changed files with 70 additions and 15 deletions

View File

@ -36,8 +36,8 @@ mylinks = {
} }
pluginDirs = ["DLL32", "DLL64", "Locale_Remulator", "Magpie", "NTLEAS"] pluginDirs = ["DLL32", "DLL64", "Magpie"]
pluginDirs_1 = ["DLL32", "DLL64", "NTLEAS"] pluginDirs_1 = ["DLL32", "DLL64"]
vcltlFile = "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.9/VC-LTL-5.0.9-Binary.7z" vcltlFile = "https://github.com/Chuyu-Team/VC-LTL5/releases/download/v5.0.9/VC-LTL-5.0.9-Binary.7z"
@ -133,12 +133,6 @@ def downloadlr():
exist_ok=True, exist_ok=True,
) )
p = subprocess.Popen(f"{fn}/LRProc.exe")
while 1:
if os.path.exists(f"{fn}/LRConfig.xml"):
break
time.sleep(0.1)
p.kill()
for f in [ for f in [
"LRHookx64.dll", "LRHookx64.dll",
"LRHookx32.dll", "LRHookx32.dll",
@ -167,12 +161,6 @@ def downloadLocaleEmulator():
break break
time.sleep(0.1) time.sleep(0.1)
p.kill() p.kill()
p = subprocess.Popen("LocaleEmulator/LEProc.exe")
while 1:
if os.path.exists("LocaleEmulator/LEConfig.xml"):
break
time.sleep(0.1)
p.kill()
for f in [ for f in [
"LoaderDll.dll", "LoaderDll.dll",

1
.gitignore vendored
View File

@ -28,7 +28,6 @@ py/userconfig
py/cache py/cache
py/chrome_cache py/chrome_cache
py/files/ocr py/files/ocr
py/files/plugins
py/files/themes py/files/themes
py/run37.bat py/run37.bat
py/run3732.bat py/run3732.bat

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<LEConfig>
<Profiles>
<Profile Name="Run in Japanese" Guid="10fd7363-085f-489e-a3f7-48d7cffa513a" MainMenu="false">
<Parameter></Parameter>
<Location>ja-JP</Location>
<Timezone>Tokyo Standard Time</Timezone>
<RunAsAdmin>false</RunAsAdmin>
<RedirectRegistry>true</RedirectRegistry>
<IsAdvancedRedirection>false</IsAdvancedRedirection>
<RunWithSuspend>false</RunWithSuspend>
</Profile>
<Profile Name="Run in Japanese (Admin)" Guid="b68acb2b-a3d2-4076-b764-1073d64f0deb" MainMenu="false">
<Parameter></Parameter>
<Location>ja-JP</Location>
<Timezone>Tokyo Standard Time</Timezone>
<RunAsAdmin>true</RunAsAdmin>
<RedirectRegistry>true</RedirectRegistry>
<IsAdvancedRedirection>false</IsAdvancedRedirection>
<RunWithSuspend>false</RunWithSuspend>
</Profile>
</Profiles>
</LEConfig>

View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<LRConfig>
<Profiles Type="exe">
<Profile Name="Run in Japanese" Guid="688d4946-eed5-4983-9915-a0022f0f759c">
<Location>ja-JP</Location>
<CodePage>932</CodePage>
<LCID>1041</LCID>
<TimeZone>Tokyo Standard Time</TimeZone>
<Bias>540</Bias>
<RunAsAdmin>false</RunAsAdmin>
<HookIME>false</HookIME>
<HookLCID>true</HookLCID>
</Profile>
<Profile Name="Run in Japanese (Admin)" Guid="2b13d25c-7296-45a2-81a5-590d53aa05e5">
<Location>ja-JP</Location>
<CodePage>932</CodePage>
<LCID>1041</LCID>
<TimeZone>Tokyo Standard Time</TimeZone>
<Bias>540</Bias>
<RunAsAdmin>true</RunAsAdmin>
<HookIME>true</HookIME>
<HookLCID>true</HookLCID>
</Profile>
<Profile Name="Run in Taiwan (Admin)" Guid="067132fc-aed1-46f5-bce1-4eda638ce44a">
<Location>zh-TW</Location>
<CodePage>950</CodePage>
<LCID>1028</LCID>
<TimeZone>Taipei Standard Time</TimeZone>
<Bias>480</Bias>
<RunAsAdmin>true</RunAsAdmin>
<HookIME>true</HookIME>
<HookLCID>true</HookLCID>
</Profile>
<Profile Name="Run in Korean (Admin)" Guid="e3f96c5f-387f-4ecd-afaa-df5b5ab25364">
<Location>ko-KR</Location>
<CodePage>949</CodePage>
<LCID>1042</LCID>
<TimeZone>Korea Standard Time</TimeZone>
<Bias>540</Bias>
<RunAsAdmin>true</RunAsAdmin>
<HookIME>true</HookIME>
<HookLCID>true</HookLCID>
</Profile>
</Profiles>
</LRConfig>