Skip to content

Commit

Permalink
Remove HexEdit via installer due to its crash
Browse files Browse the repository at this point in the history
  • Loading branch information
donho committed May 30, 2021
1 parent ceca915 commit 219dfda
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion PowerEditor/installer/nsisInclude/mainSectionFuncs.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,15 @@ Function removeUnstablePlugins
MessageBox MB_OK "Due to NppSaveAsAdmin plugin's incompatibility issue in version $R0, NppSaveAsAdmin.dll will be deleted. Use Plugins Admin to add back (the latest version of) NppSaveAsAdmin." /SD IDOK
Rename "$INSTDIR\plugins\NppSaveAsAdmin\NppSaveAsAdmin.dll" "$INSTDIR\plugins\disabled\NppSaveAsAdmin.dll"
Delete "$INSTDIR\plugins\NppSaveAsAdmin\NppSaveAsAdmin.dll"

NppSaveAsAdminTestEnd:

; https://github.com/chcg/NPP_HexEdit/issues/51
IfFileExists "$INSTDIR\plugins\HexEditor\HexEditor.dll" 0 HexEditorTestEnd
MessageBox MB_OK "Due to HexEditor plugin's crash issue on Notepad++ v8 (and later versions), HexEditor.dll will be removed." /SD IDOK
Rename "$INSTDIR\plugins\HexEditor\HexEditor.dll" "$INSTDIR\plugins\disabled\HexEditor.dll"
Delete "$INSTDIR\plugins\HexEditor\HexEditor.dll"
HexEditorTestEnd:

FunctionEnd

Function removeOldContextMenu
Expand Down

0 comments on commit 219dfda

Please sign in to comment.