Sun, 24 Nov 2013 16:46:29 +0100
Changed the name it registers in the lexer registry.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginProjectKivy.py | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Wed Nov 20 18:59:46 2013 +0100 +++ b/ChangeLog Sun Nov 24 16:46:29 2013 +0100 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 1.1.1 +- changed lexer registration + Version 1.1.0 - Python 2 compatibility for Eric 5
--- a/PluginProjectKivy.py Wed Nov 20 18:59:46 2013 +0100 +++ b/PluginProjectKivy.py Sun Nov 24 16:46:29 2013 +0100 @@ -26,7 +26,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "1.1.0" +version = "1.1.1" className = "ProjectKivyPlugin" packageName = "ProjectKivy" shortDescription = "Project support for Kivy projects." @@ -123,7 +123,7 @@ import QScintilla.Lexers if self.__ui.versionIsNewer('5.3.5', '20130611'): QScintilla.Lexers.registerLexer( - "Kivy", + "Pygments|Kivy", self.trUtf8("Kivy"), "dummy.kv", self.getLexer, @@ -134,7 +134,7 @@ else: # work around a bug in older versions QScintilla.Lexers.registerLexer( - "Kivy", + "Pygments|Kivy", self.trUtf8("Kivy"), "dummy.kv", self.getLexer,