mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-04 19:12:28 -04:00
Merge branch 'next-gen' of https://github.com/manuelcortez/TWBlue into next-gen
This commit is contained in:
commit
31611d8429
@ -45,6 +45,9 @@ var StartMenuFolder
|
|||||||
!insertmacro MUI_LANGUAGE "Galician"
|
!insertmacro MUI_LANGUAGE "Galician"
|
||||||
!insertmacro MUI_LANGUAGE "Catalan"
|
!insertmacro MUI_LANGUAGE "Catalan"
|
||||||
!insertmacro MUI_LANGUAGE "Basque"
|
!insertmacro MUI_LANGUAGE "Basque"
|
||||||
|
!insertmacro MUI_LANGUAGE "Croatian"
|
||||||
|
!insertmacro MUI_LANGUAGE "Japanese"
|
||||||
|
!insertmacro MUI_LANGUAGE "SerbianLatin"
|
||||||
!insertmacro MUI_RESERVEFILE_LANGDLL
|
!insertmacro MUI_RESERVEFILE_LANGDLL
|
||||||
Section
|
Section
|
||||||
SetShellVarContext All
|
SetShellVarContext All
|
||||||
|
@ -2,15 +2,25 @@ from pywintypes import com_error
|
|||||||
import win32com
|
import win32com
|
||||||
import paths
|
import paths
|
||||||
win32com.__gen_path__=paths.data_path("com_cache")
|
win32com.__gen_path__=paths.data_path("com_cache")
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
sys.path.append(os.path.join(win32com.__gen_path__, "."))
|
||||||
from win32com.client import gencache
|
from win32com.client import gencache
|
||||||
|
fixed=False
|
||||||
|
|
||||||
def prepare_gencache():
|
def prepare_gencache():
|
||||||
gencache.is_readonly = False
|
gencache.is_readonly = False
|
||||||
gencache.GetGeneratePath()
|
gencache.GetGeneratePath()
|
||||||
|
|
||||||
|
def patched_getmodule(modname):
|
||||||
|
mod=__import__(modname)
|
||||||
|
return sys.modules[modname]
|
||||||
|
|
||||||
def load_com(*names):
|
def load_com(*names):
|
||||||
|
global fixed
|
||||||
|
if fixed==False:
|
||||||
|
gencache._GetModule=patched_getmodule
|
||||||
|
fixed=True
|
||||||
result = None
|
result = None
|
||||||
for name in names:
|
for name in names:
|
||||||
try:
|
try:
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 4d106f04f7e6d2f9e160aca54ce107efb46ee099
|
Subproject commit 571c37bbc1654d75b887a8ce5c1c603996ea9eb0
|
Loading…
x
Reference in New Issue
Block a user