mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-26 15:14:13 +08:00
.
This commit is contained in:
parent
78e24cd734
commit
c33518ac77
16
.github/scripts/build_lunatranslator.py
vendored
16
.github/scripts/build_lunatranslator.py
vendored
@ -36,8 +36,8 @@ mylinks = {
|
||||
}
|
||||
|
||||
|
||||
pluginDirs = ["DLL32", "DLL64", "Locale_Remulator", "Magpie", "NTLEAS"]
|
||||
pluginDirs_1 = ["DLL32", "DLL64", "NTLEAS"]
|
||||
pluginDirs = ["DLL32", "DLL64", "Magpie"]
|
||||
pluginDirs_1 = ["DLL32", "DLL64"]
|
||||
|
||||
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,
|
||||
)
|
||||
|
||||
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 [
|
||||
"LRHookx64.dll",
|
||||
"LRHookx32.dll",
|
||||
@ -167,12 +161,6 @@ def downloadLocaleEmulator():
|
||||
break
|
||||
time.sleep(0.1)
|
||||
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 [
|
||||
"LoaderDll.dll",
|
||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -28,7 +28,6 @@ py/userconfig
|
||||
py/cache
|
||||
py/chrome_cache
|
||||
py/files/ocr
|
||||
py/files/plugins
|
||||
py/files/themes
|
||||
py/run37.bat
|
||||
py/run3732.bat
|
||||
|
23
py/files/plugins/Locale/Locale.Emulator/LEConfig.xml
Normal file
23
py/files/plugins/Locale/Locale.Emulator/LEConfig.xml
Normal 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>
|
45
py/files/plugins/Locale/Locale_Remulator/LRConfig.xml
Normal file
45
py/files/plugins/Locale/Locale_Remulator/LRConfig.xml
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user