diff --git a/src/archive.py b/src/archive.py index d97da0c7..1cc6e68d 100644 --- a/src/archive.py +++ b/src/archive.py @@ -118,6 +118,10 @@ def createAppArchive(archive_path): shutil.copy( os.path.join('..', 'build', 'Release', 'libGLESv2.dll'), temp_path ) shutil.copy( os.path.join('..', 'build', 'Release', 'libcef.dll'), temp_path ) shutil.copy( os.path.join('..', 'build', 'Release', 'wow_helper.exe'), temp_path ) + shutil.copy( os.path.join('..', 'build', 'Release', 'cef.pak'), temp_path ) + shutil.copy( os.path.join('..', 'build', 'Release', 'cef_100_percent.pak'), temp_path ) + shutil.copy( os.path.join('..', 'build', 'Release', 'cef_200_percent.pak'), temp_path ) + shutil.copy( os.path.join('..', 'build', 'Release', 'devtools_resources.pak'), temp_path ) shutil.copy( os.path.join('..', 'build', 'Release', 'icudtl.dat'), temp_path ) # Translation files. diff --git a/src/installer.nsi b/src/installer.nsi index ee9b5cb0..02f480a3 100644 --- a/src/installer.nsi +++ b/src/installer.nsi @@ -329,6 +329,10 @@ FunctionEnd File "..\build\Release\libGLESv2.dll" File "..\build\Release\libcef.dll" File "..\build\Release\wow_helper.exe" + File "..\build\Release\cef.pak" + File "..\build\Release\cef_100_percent.pak" + File "..\build\Release\cef_200_percent.pak" + File "..\build\Release\devtools_resources.pak" File "..\build\Release\icudtl.dat" ;Install UI files. @@ -482,6 +486,10 @@ FunctionEnd Delete "$INSTDIR\libGLESv2.dll" Delete "$INSTDIR\libcef.dll" Delete "$INSTDIR\wow_helper.exe" + Delete "$INSTDIR\cef.pak" + Delete "$INSTDIR\cef_100_percent.pak" + Delete "$INSTDIR\cef_200_percent.pak" + Delete "$INSTDIR\devtools_resources.pak" Delete "$INSTDIR\icudtl.dat" ;Remove readme images.