diff --git a/PowerEditor/installer/nsisInclude/autoCompletion.nsh b/PowerEditor/installer/nsisInclude/autoCompletion.nsh index d7d212747..094c3a671 100644 --- a/PowerEditor/installer/nsisInclude/autoCompletion.nsh +++ b/PowerEditor/installer/nsisInclude/autoCompletion.nsh @@ -152,6 +152,13 @@ SectionGroup "Auto-completion Files" autoCompletionComponent SetOutPath "$INSTDIR\autoCompletion" File ".\APIs\typescript.xml" ${MementoSectionEnd} + + ${MementoSection} "PowerShell" PowerShell + SetOutPath "$INSTDIR\autoCompletion" + File ".\APIs\powershell.xml" + ${MementoSectionEnd} + + SectionGroupEnd @@ -265,4 +272,9 @@ SectionGroup un.autoCompletionComponent Delete "$INSTDIR\autoCompletion\typescript.xml" SectionEnd + Section un.PowerShell + Delete "$INSTDIR\autoCompletion\powershell.xml" + SectionEnd + + SectionGroupEnd diff --git a/PowerEditor/installer/nsisInclude/functionList.nsh b/PowerEditor/installer/nsisInclude/functionList.nsh index 23bc4cabd..ec6f637f8 100644 --- a/PowerEditor/installer/nsisInclude/functionList.nsh +++ b/PowerEditor/installer/nsisInclude/functionList.nsh @@ -183,6 +183,16 @@ SectionGroup "Function List Files" functionListComponent File ".\functionList\typescript.xml" ${MementoSectionEnd} + ${MementoSection} "Pascal" Pascal + SetOutPath "$INSTDIR\functionList" + File ".\functionList\pascl.xml" + ${MementoSectionEnd} + + ${MementoSection} "NppExecScript" NppExecScript + SetOutPath "$INSTDIR\functionList" + File ".\functionList\nppexec.xml" + ${MementoSectionEnd} + SetOverwrite off ${MementoSection} "Override Map" OverrideMap_FL SetOutPath "$INSTDIR\functionList" @@ -329,5 +339,12 @@ SectionGroup un.functionListComponent Delete "$INSTDIR\functionList\typescript.xml" SectionEnd + Section un.Pascal + Delete "$INSTDIR\functionList\pascal.xml" + SectionEnd + + Section un.NppExecScript + Delete "$INSTDIR\functionList\nppexec.xml" + SectionEnd SectionGroupEnd diff --git a/PowerEditor/installer/packageAll.bat b/PowerEditor/installer/packageAll.bat index 050499331..e2231b00e 100644 --- a/PowerEditor/installer/packageAll.bat +++ b/PowerEditor/installer/packageAll.bat @@ -251,6 +251,8 @@ copy /Y ..\src\stylers.model.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\src\contextMenu.xml .\zipped.package.release\ If ErrorLevel 1 goto End +copy /Y ..\src\tabContextMenu_example.xml .\zipped.package.release\ +If ErrorLevel 1 goto End copy /Y ..\src\shortcuts.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\bin\doLocalConf.xml .\zipped.package.release\ @@ -274,6 +276,8 @@ copy /Y ..\src\stylers.model.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\src\contextMenu.xml .\zipped.package.release64\ If ErrorLevel 1 goto End +copy /Y ..\src\tabContextMenu_example.xml .\zipped.package.release64\ +If ErrorLevel 1 goto End copy /Y ..\src\shortcuts.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\bin\doLocalConf.xml .\zipped.package.release64\ @@ -297,6 +301,8 @@ copy /Y ..\src\stylers.model.xml .\zipped.package.releaseArm64\ If ErrorLevel 1 goto End copy /Y ..\src\contextMenu.xml .\zipped.package.releaseArm64\ If ErrorLevel 1 goto End +copy /Y ..\src\tabContextMenu_example.xml .\zipped.package.releaseArm64\ +If ErrorLevel 1 goto End copy /Y ..\src\shortcuts.xml .\zipped.package.releaseArm64\ If ErrorLevel 1 goto End copy /Y ..\bin\doLocalConf.xml .\zipped.package.releaseArm64\