Sat, 26 Apr 2014 16:48:49 +0200
Added the Python2 compatibility flag.
--- a/ChangeLog Sun Mar 09 18:02:57 2014 +0100 +++ b/ChangeLog Sat Apr 26 16:48:49 2014 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 1.2.0 +- added the Python2 compatibility flag + Version 1.1.2 - bug fix
--- a/PluginProjectKivy.py Sun Mar 09 18:02:57 2014 +0100 +++ b/PluginProjectKivy.py Sat Apr 26 16:48:49 2014 +0200 @@ -7,7 +7,7 @@ Module implementing the Kivy project plug-in. """ -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals import os import glob @@ -26,7 +26,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "1.1.2" +version = "1.2.0" className = "ProjectKivyPlugin" packageName = "ProjectKivy" shortDescription = "Project support for Kivy projects." @@ -34,6 +34,7 @@ """This plugin implements project support for Kivy projects.""" needsRestart = False pyqtApi = 2 +python2Compatible = True # End-of-Header error = ""
--- a/ProjectKivy/Documentation/source/Plugin_Project_Kivy.PluginProjectKivy.html Sun Mar 09 18:02:57 2014 +0100 +++ b/ProjectKivy/Documentation/source/Plugin_Project_Kivy.PluginProjectKivy.html Sat Apr 26 16:48:49 2014 +0200 @@ -25,7 +25,7 @@ </p> <h3>Global Attributes</h3> <table> -<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> +<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>python2Compatible</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> </table> <h3>Classes</h3> <table>
--- a/ProjectKivy/KivyLexer.py Sun Mar 09 18:02:57 2014 +0100 +++ b/ProjectKivy/KivyLexer.py Sat Apr 26 16:48:49 2014 +0200 @@ -12,7 +12,7 @@ # Copyright of the original by the Kivy Team. # -from __future__ import unicode_literals # __IGNORE_WARNING__ +from __future__ import unicode_literals from pygments.lexer import RegexLexer, bygroups, using from pygments.lexers.agile import PythonLexer