From e770aff94d75ba16ee3c39b7899841148c826443 Mon Sep 17 00:00:00 2001 From: gszo123 Date: Mon, 4 Jul 2016 17:10:29 +0200 Subject: [PATCH 1/4] translation: fixes for polish.xml closes #2044 --- PowerEditor/installer/nativeLang/polish.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PowerEditor/installer/nativeLang/polish.xml b/PowerEditor/installer/nativeLang/polish.xml index 4f6e91c3e..eb3786a04 100644 --- a/PowerEditor/installer/nativeLang/polish.xml +++ b/PowerEditor/installer/nativeLang/polish.xml @@ -290,7 +290,7 @@ - + @@ -803,7 +803,7 @@ - + @@ -849,6 +849,7 @@ + From ec433863c304058729dc24ac50203939febc3389 Mon Sep 17 00:00:00 2001 From: Tmp341 Date: Wed, 20 Jan 2016 08:59:17 +0200 Subject: [PATCH 2/4] translation: updated turkish There was a change in line 89, which states singular other than plural. And id 2036 added too. closes #1393 --- PowerEditor/installer/nativeLang/turkish.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PowerEditor/installer/nativeLang/turkish.xml b/PowerEditor/installer/nativeLang/turkish.xml index 66ed5f442..a2f94bb49 100644 --- a/PowerEditor/installer/nativeLang/turkish.xml +++ b/PowerEditor/installer/nativeLang/turkish.xml @@ -86,7 +86,8 @@ - + + @@ -848,6 +849,7 @@ + From a3bb9d294adf3247972543b016c6c3e3ef56b8d8 Mon Sep 17 00:00:00 2001 From: dail8859 Date: Mon, 20 Jun 2016 17:16:27 -0400 Subject: [PATCH 3/4] Report the correct crashed plugin Closes #1980 --- PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp | 8 ++++---- PowerEditor/src/MISC/PluginsManager/PluginsManager.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp b/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp index c08b5fa07..76c769306 100644 --- a/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp +++ b/PowerEditor/src/MISC/PluginsManager/PluginsManager.cpp @@ -470,10 +470,10 @@ void PluginsManager::notify(const SCNotification *notification) } catch (...) { - TCHAR funcInfo[128]; + TCHAR funcInfo[256]; generic_sprintf(funcInfo, TEXT("notify(SCNotification *notification) : \r notification->nmhdr.code == %d\r notification->nmhdr.hwndFrom == %p\r notification->nmhdr.idFrom == %d"),\ scNotif.nmhdr.code, scNotif.nmhdr.hwndFrom, scNotif.nmhdr.idFrom); - pluginCrashAlert(_pluginsCommands[i]._pluginName.c_str(), funcInfo); + pluginCrashAlert(_pluginInfos[i]->_moduleName.c_str(), funcInfo); } } } @@ -498,7 +498,7 @@ void PluginsManager::relayNppMessages(UINT Message, WPARAM wParam, LPARAM lParam { TCHAR funcInfo[128]; generic_sprintf(funcInfo, TEXT("relayNppMessages(UINT Message : %d, WPARAM wParam : %d, LPARAM lParam : %d)"), Message, wParam, lParam); - pluginCrashAlert(_pluginsCommands[i]._pluginName.c_str(), TEXT("")); + pluginCrashAlert(_pluginInfos[i]->_moduleName.c_str(), funcInfo); } } } @@ -529,7 +529,7 @@ bool PluginsManager::relayPluginMessages(UINT Message, WPARAM wParam, LPARAM lPa { TCHAR funcInfo[128]; generic_sprintf(funcInfo, TEXT("relayPluginMessages(UINT Message : %d, WPARAM wParam : %d, LPARAM lParam : %d)"), Message, wParam, lParam); - pluginCrashAlert(_pluginsCommands[i]._pluginName.c_str(), funcInfo); + pluginCrashAlert(_pluginInfos[i]->_moduleName.c_str(), funcInfo); } return true; } diff --git a/PowerEditor/src/MISC/PluginsManager/PluginsManager.h b/PowerEditor/src/MISC/PluginsManager/PluginsManager.h index eaef46dcd..9eb958223 100644 --- a/PowerEditor/src/MISC/PluginsManager/PluginsManager.h +++ b/PowerEditor/src/MISC/PluginsManager/PluginsManager.h @@ -142,9 +142,9 @@ private: void pluginCrashAlert(const TCHAR *pluginName, const TCHAR *funcSignature) { generic_string msg = pluginName; - msg += TEXT(" just crash in\r"); + msg += TEXT(" just crashed in\r"); msg += funcSignature; - ::MessageBox(NULL, msg.c_str(), TEXT(" just crash in\r"), MB_OK|MB_ICONSTOP); + ::MessageBox(NULL, msg.c_str(), TEXT("Plugin Crash"), MB_OK|MB_ICONSTOP); } bool isInLoadedDlls(const TCHAR *fn) const From 3b1e722ba6ad318f0dc4b1fde070860e0c292917 Mon Sep 17 00:00:00 2001 From: Don HO Date: Wed, 6 Jul 2016 16:33:06 +0200 Subject: [PATCH 4/4] Fix typo --- PowerEditor/bin/change.log | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index 240abf384..5cc945a55 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,6 +1,6 @@ Notepad++ v6.9.2 new features and bug-fixes: -1. Add most wanted feature: Log Mornitoring (tail -f). +1. Add most wanted feature: Log Monitoring (tail -f). 2. Add new feature: Find in Finder. 3. Fix status bar display bug in high dpi environment. 4. Fix open in explorer problem while path contain unusual characters.