Browse Source

Add Plugin Manager default behaviour

pull/2544/merge
Don Ho 8 years ago
parent
commit
591a07110e
  1. BIN
      PowerEditor/bin/updater/gpup.exe
  2. 3
      PowerEditor/installer/nsisInclude/binariesComponents.nsh
  3. 3
      PowerEditor/installer/packageAll.bat

BIN
PowerEditor/bin/updater/gpup.exe

Binary file not shown.

3
PowerEditor/installer/nsisInclude/binariesComponents.nsh

@ -60,6 +60,8 @@ SectionGroup "Plugins" Plugins
Delete "$INSTDIR\plugins\PluginManager.dll"
SetOutPath "$INSTDIR\plugins"
File "..\bin\plugins\PluginManager.dll"
SetOutPath "$UPDATE_PATH\plugins\Config"
File "..\bin\plugins\Config\PluginManager.ini"
SetOutPath "$INSTDIR\updater"
File "..\bin\updater\gpup.exe"
${MementoSectionEnd}
@ -123,6 +125,7 @@ SectionGroup un.Plugins
Section un.PluginManager
Delete "$INSTDIR\plugins\PluginManager.dll"
Delete "$UPDATE_PATH\plugins\Config\PluginManager.ini"
Delete "$INSTDIR\updater\gpup.exe"
RMDir "$INSTDIR\updater\"
SectionEnd

3
PowerEditor/installer/packageAll.bat

@ -177,10 +177,13 @@ If ErrorLevel 1 goto End
rem plugins manager and its updater
copy /Y "..\bin\plugins\PluginManager.dll" .\zipped.package.release\plugins\
If ErrorLevel 1 goto End
copy /Y "..\bin\plugins\Config\PluginManager.ini" .\zipped.package.release\plugins\Config\
If ErrorLevel 1 goto End
copy /Y "..\bin\updater\gpup.exe" .\zipped.package.release\updater\
If ErrorLevel 1 goto End
rem localizations
copy /Y ".\nativeLang\*.xml" .\zipped.package.release\localization\
If ErrorLevel 1 goto End

Loading…
Cancel
Save