Tue, 13 Apr 2021 17:38:21 +0200
bug fix
AssistantEric/Assistant.py | file | annotate | diff | comparison | revisions | |
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginAssistantEric.py | file | annotate | diff | comparison | revisions | |
PluginAssistantEric.zip | file | annotate | diff | comparison | revisions |
--- a/AssistantEric/Assistant.py Sat Mar 06 15:54:30 2021 +0100 +++ b/AssistantEric/Assistant.py Tue Apr 13 17:38:21 2021 +0200 @@ -100,9 +100,8 @@ """ for editor in self.__editors[:]: self.__editorClosed(editor) - if enabled: - for editor in self.__viewmanager.getOpenEditors(): - self.__editorOpened(editor) + for editor in self.__viewmanager.getOpenEditors(): + self.__editorOpened(editor) def __editorOpened(self, editor): """
--- a/ChangeLog Sat Mar 06 15:54:30 2021 +0100 +++ b/ChangeLog Tue Apr 13 17:38:21 2021 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 5.2.1: +- bug fixes + Version 5.2.0: - changed the enum handling
--- a/PluginAssistantEric.py Sat Mar 06 15:54:30 2021 +0100 +++ b/PluginAssistantEric.py Tue Apr 13 17:38:21 2021 +0200 @@ -24,7 +24,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "5.2.0" +version = "5.2.1" className = "AssistantEricPlugin" packageName = "AssistantEric" shortDescription = "Alternative autocompletion and calltips provider."