Sun, 21 Jan 2018 14:37:36 +0100
Improved executable and Python version determination and merged with remote changes.
.hgtags | file | annotate | diff | comparison | revisions | |
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginPyLint.py | file | annotate | diff | comparison | revisions | |
PluginPyLint.zip | file | annotate | diff | comparison | revisions |
--- a/.hgtags Sun Jan 21 14:33:10 2018 +0100 +++ b/.hgtags Sun Jan 21 14:37:36 2018 +0100 @@ -12,14 +12,8 @@ a781953e37036d7ae391c10e3f64e0955458bccb release-6.1.0 69c4c0e04bf62a0e37fffd7b639306518584c1f8 release-6.1.1 beb6e8b9504fe84b5bd5dc0fa644ad26d2dd153a release-6.1.2 -c47e613f3f371acb4bc67a1fc998e6616a3acaa9 release-6.1.4 -c47e613f3f371acb4bc67a1fc998e6616a3acaa9 release-6.1.4 -0000000000000000000000000000000000000000 release-6.1.4 -0000000000000000000000000000000000000000 release-6.1.4 d0596867f061255ab46e3401acc4bdfe6c435c2a release-6.1.4 971dd1b69f5bfbc06dfbc8f84c53457906491756 release-6.1.5 3d7ca91127c5d08114d030309ef36973fb45571b release-6.1.6 7c2867ac2ee8a14d19717b4781845029dba6a9c2 release-6.1.7 -2de72047671370ec294d7f83a5b103524a0d1130 release-6.1.8 0ed7d5364b4882ca1d469088bb05808944915fc7 release-6.1.8 -0000000000000000000000000000000000000000 release-6.1.8
--- a/ChangeLog Sun Jan 21 14:33:10 2018 +0100 +++ b/ChangeLog Sun Jan 21 14:37:36 2018 +0100 @@ -1,7 +1,11 @@ ChangeLog --------- +Version 6.1.9: +- improved executable and Python version determination + Version 6.1.8: -- improved executable and Python version determination +- extended the executable search algorithm to handle more Linux distribution + variants Version 6.1.7: - fixed an issue preventing the activation of the plug-in with
--- a/PluginPyLint.py Sun Jan 21 14:33:10 2018 +0100 +++ b/PluginPyLint.py Sun Jan 21 14:37:36 2018 +0100 @@ -35,7 +35,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "6.1.8" +version = "6.1.9" className = "PyLintPlugin" packageName = "PyLint" shortDescription = "Show the PyLint dialogs." @@ -192,7 +192,8 @@ # Linux, Unix ... pylintScript = 'pylint' scriptSuffixes = ["", - "-python{0}".format(majorVersion)] + "-python{0}".format(majorVersion), + "{0}".format(majorVersion),] for minorVersion in minorVersions: scriptSuffixes.append( "-python{0}.{1}".format(majorVersion, minorVersion))