Got rid of the manually set version numbers.

Sat, 12 Nov 2016 17:28:22 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 12 Nov 2016 17:28:22 +0100
changeset 5316
31cbc97d4974
parent 5314
76013775e623
child 5319
a512d3951a13

Got rid of the manually set version numbers.

APIs/Python3/eric6.api file | annotate | diff | comparison | revisions
Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Source/eric6.UI.Info.html file | annotate | diff | comparison | revisions
Documentation/Source/index-eric6.html file | annotate | diff | comparison | revisions
Documentation/Source/index.html file | annotate | diff | comparison | revisions
Plugins/PluginAbout.py file | annotate | diff | comparison | revisions
Plugins/PluginCodeStyleChecker.py file | annotate | diff | comparison | revisions
Plugins/PluginEricapi.py file | annotate | diff | comparison | revisions
Plugins/PluginEricdoc.py file | annotate | diff | comparison | revisions
Plugins/PluginSyntaxChecker.py file | annotate | diff | comparison | revisions
Plugins/PluginTabnanny.py file | annotate | diff | comparison | revisions
Plugins/PluginVcsMercurial.py file | annotate | diff | comparison | revisions
Plugins/PluginVcsPySvn.py file | annotate | diff | comparison | revisions
Plugins/PluginVcsSubversion.py file | annotate | diff | comparison | revisions
Plugins/PluginVmListspace.py file | annotate | diff | comparison | revisions
Plugins/PluginVmTabview.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardE5MessageBox.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardPyRegExp.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardQColorDialog.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardQFileDialog.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardQFontDialog.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardQInputDialog.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardQMessageBox.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardQRegExp.py file | annotate | diff | comparison | revisions
Plugins/PluginWizardQRegularExpression.py file | annotate | diff | comparison | revisions
UI/Info.py file | annotate | diff | comparison | revisions
__init__.py file | annotate | diff | comparison | revisions
--- a/APIs/Python3/eric6.api	Fri Nov 11 18:41:16 2016 +0100
+++ b/APIs/Python3/eric6.api	Sat Nov 12 17:28:22 2016 +0100
@@ -8533,6 +8533,7 @@
 eric6.UI.Info.Homepage?7
 eric6.UI.Info.Program?7
 eric6.UI.Info.Version?7
+eric6.UI.Info.VersionOnly?7
 eric6.UI.LogView.LogViewer.appendToStderr?4(txt)
 eric6.UI.LogView.LogViewer.appendToStdout?4(txt)
 eric6.UI.LogView.LogViewer.preferencesChanged?4()
Binary file Documentation/Help/source.qch has changed
--- a/Documentation/Source/eric6.UI.Info.html	Fri Nov 11 18:41:16 2016 +0100
+++ b/Documentation/Source/eric6.UI.Info.html	Sat Nov 12 17:28:22 2016 +0100
@@ -25,7 +25,7 @@
 </p>
 <h3>Global Attributes</h3>
 <table>
-<tr><td>BugAddress</td></tr><tr><td>Copyright</td></tr><tr><td>FeatureAddress</td></tr><tr><td>Homepage</td></tr><tr><td>Program</td></tr><tr><td>Version</td></tr>
+<tr><td>BugAddress</td></tr><tr><td>Copyright</td></tr><tr><td>FeatureAddress</td></tr><tr><td>Homepage</td></tr><tr><td>Program</td></tr><tr><td>Version</td></tr><tr><td>VersionOnly</td></tr>
 </table>
 <h3>Classes</h3>
 <table>
--- a/Documentation/Source/index-eric6.html	Fri Nov 11 18:41:16 2016 +0100
+++ b/Documentation/Source/index-eric6.html	Sat Nov 12 17:28:22 2016 +0100
@@ -21,7 +21,7 @@
 <body>
 <h1>eric6</h1>
 <p>
-Package implementing the eric6 Python IDE (version 6.2).
+Package implementing the eric6 Python IDE.
 </p><p>
 To get more information about eric6 please see the
 <a href="http://eric-ide.python-projects.org/index.html">eric web site</a>.
--- a/Documentation/Source/index.html	Fri Nov 11 18:41:16 2016 +0100
+++ b/Documentation/Source/index.html	Sat Nov 12 17:28:22 2016 +0100
@@ -26,7 +26,7 @@
 <table>
 <tr>
 <td><a href="index-eric6.html">eric6</a></td>
-<td>Package implementing the eric6 Python IDE (version 6.2).</td>
+<td>Package implementing the eric6 Python IDE.</td>
 </tr>
 </table>
 
--- a/Plugins/PluginAbout.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginAbout.py	Sat Nov 12 17:28:22 2016 +0100
@@ -23,7 +23,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "AboutPlugin"
 packageName = "__core__"
 shortDescription = "Show the About dialogs."
--- a/Plugins/PluginCodeStyleChecker.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginCodeStyleChecker.py	Sat Nov 12 17:28:22 2016 +0100
@@ -19,13 +19,14 @@
 from Utilities import determinePythonVersion
 
 import Preferences
+import UI.Info
 
 # Start-Of-Header
 name = "Code Style Checker Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "CodeStyleCheckerPlugin"
 packageName = "__core__"
 shortDescription = "Show the Python Code Style Checker dialog."
--- a/Plugins/PluginEricapi.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginEricapi.py	Sat Nov 12 17:28:22 2016 +0100
@@ -19,6 +19,7 @@
 from E5Gui.E5Action import E5Action
 
 import Utilities
+import UI.Info
 
 from eric6config import getConfig
 
@@ -27,7 +28,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "EricapiPlugin"
 packageName = "__core__"
 shortDescription = "Show the Ericapi dialogs."
--- a/Plugins/PluginEricdoc.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginEricdoc.py	Sat Nov 12 17:28:22 2016 +0100
@@ -19,6 +19,7 @@
 from E5Gui.E5Action import E5Action
 
 import Utilities
+import UI.Info
 
 from eric6config import getConfig
 
@@ -27,7 +28,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "EricdocPlugin"
 packageName = "__core__"
 shortDescription = "Show the Ericdoc dialogs."
--- a/Plugins/PluginSyntaxChecker.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginSyntaxChecker.py	Sat Nov 12 17:28:22 2016 +0100
@@ -20,13 +20,14 @@
 from Project.ProjectBrowserModel import ProjectBrowserFileItem
 
 import Preferences
+import UI.Info
 
 # Start-Of-Header
 name = "Syntax Checker Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "SyntaxCheckerPlugin"
 packageName = "__core__"
 shortDescription = "Show the Syntax Checker dialog."
--- a/Plugins/PluginTabnanny.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginTabnanny.py	Sat Nov 12 17:28:22 2016 +0100
@@ -19,13 +19,14 @@
 from Utilities import determinePythonVersion
 
 import Preferences
+import UI.Info
 
 # Start-Of-Header
 name = "Tabnanny Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "TabnannyPlugin"
 packageName = "__core__"
 shortDescription = "Show the Tabnanny dialog."
--- a/Plugins/PluginVcsMercurial.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginVcsMercurial.py	Sat Nov 12 17:28:22 2016 +0100
@@ -21,13 +21,14 @@
 from VcsPlugins.vcsMercurial.HgUtilities import getConfigPath
 
 import Utilities
+import UI.Info
 
 # Start-Of-Header
 name = "Mercurial Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = False
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 pluginType = "version_control"
 pluginTypename = "Mercurial"
 className = "VcsMercurialPlugin"
--- a/Plugins/PluginVcsPySvn.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginVcsPySvn.py	Sat Nov 12 17:28:22 2016 +0100
@@ -17,6 +17,7 @@
 
 import Preferences
 from Preferences.Shortcuts import readShortcuts
+import UI.Info
 
 from VcsPlugins.vcsPySvn.SvnUtilities import getConfigPath, getServersPath
 
@@ -25,7 +26,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = False
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 pluginType = "version_control"
 pluginTypename = "PySvn"
 className = "VcsPySvnPlugin"
--- a/Plugins/PluginVcsSubversion.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginVcsSubversion.py	Sat Nov 12 17:28:22 2016 +0100
@@ -21,13 +21,14 @@
 from VcsPlugins.vcsSubversion.SvnUtilities import getConfigPath, getServersPath
 
 import Utilities
+import UI.Info
 
 # Start-Of-Header
 name = "Subversion Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = False
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 pluginType = "version_control"
 pluginTypename = "Subversion"
 className = "VcsSubversionPlugin"
--- a/Plugins/PluginVmListspace.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginVmListspace.py	Sat Nov 12 17:28:22 2016 +0100
@@ -14,12 +14,14 @@
 from PyQt5.QtCore import QT_TRANSLATE_NOOP, QObject
 from PyQt5.QtGui import QPixmap
 
+import UI.Info
+
 # Start-Of-Header
 name = "Listspace Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = False
 deactivateable = False
-version = "6.2.0"
+version = UI.Info.VersionOnly
 pluginType = "viewmanager"
 pluginTypename = "listspace"
 displayString = QT_TRANSLATE_NOOP('VmListspacePlugin', 'Listspace')
--- a/Plugins/PluginVmTabview.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginVmTabview.py	Sat Nov 12 17:28:22 2016 +0100
@@ -14,12 +14,14 @@
 from PyQt5.QtCore import QT_TRANSLATE_NOOP, QObject
 from PyQt5.QtGui import QPixmap
 
+import UI.Info
+
 # Start-Of-Header
 name = "Tabview Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = False
 deactivateable = False
-version = "6.2.0"
+version = UI.Info.VersionOnly
 pluginType = "viewmanager"
 pluginTypename = "tabview"
 displayString = QT_TRANSLATE_NOOP('VmTabviewPlugin', 'Tabbed View')
--- a/Plugins/PluginWizardE5MessageBox.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardE5MessageBox.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "E5MessageBox Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "E5MessageBoxWizard"
 packageName = "__core__"
 shortDescription = "Show the E5MessageBox wizard."
--- a/Plugins/PluginWizardPyRegExp.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardPyRegExp.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "Python re Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "PyRegExpWizard"
 packageName = "__core__"
 shortDescription = "Show the Python re wizard."
--- a/Plugins/PluginWizardQColorDialog.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardQColorDialog.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "QColorDialog Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "ColorDialogWizard"
 packageName = "__core__"
 shortDescription = "Show the QColorDialog wizard."
--- a/Plugins/PluginWizardQFileDialog.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardQFileDialog.py	Sat Nov 12 17:28:22 2016 +0100
@@ -18,12 +18,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "QFileDialog Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "FileDialogWizard"
 packageName = "__core__"
 shortDescription = "Show the QFileDialog wizard."
--- a/Plugins/PluginWizardQFontDialog.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardQFontDialog.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "QFontDialog Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "FontDialogWizard"
 packageName = "__core__"
 shortDescription = "Show the QFontDialog wizard."
--- a/Plugins/PluginWizardQInputDialog.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardQInputDialog.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "QInputDialog Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "InputDialogWizard"
 packageName = "__core__"
 shortDescription = "Show the QInputDialog wizard."
--- a/Plugins/PluginWizardQMessageBox.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardQMessageBox.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "QMessageBox Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "MessageBoxWizard"
 packageName = "__core__"
 shortDescription = "Show the QMessageBox wizard."
--- a/Plugins/PluginWizardQRegExp.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardQRegExp.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "QRegExp Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "QRegExpWizard"
 packageName = "__core__"
 shortDescription = "Show the QRegExp wizard."
--- a/Plugins/PluginWizardQRegularExpression.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/Plugins/PluginWizardQRegularExpression.py	Sat Nov 12 17:28:22 2016 +0100
@@ -16,12 +16,14 @@
 from E5Gui.E5Action import E5Action
 from E5Gui import E5MessageBox
 
+import UI.Info
+
 # Start-Of-Header
 name = "QRegularExpression Wizard Plugin"
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.2.0"
+version = UI.Info.VersionOnly
 className = "QRegularExpressionWizard"
 packageName = "__core__"
 shortDescription = "Show the QRegularExpression wizard."
--- a/UI/Info.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/UI/Info.py	Sat Nov 12 17:28:22 2016 +0100
@@ -11,6 +11,7 @@
 
 Program = 'eric6'
 Version = '@@VERSION@@ (rev. @@REVISION@@)'
+VersionOnly = '@@VERSION@@'
 Copyright = 'Copyright (c) 2002 - 2016 Detlev Offenbach' \
             ' <detlev@die-offenbachs.de>'
 BugAddress = 'eric-bugs@eric-ide.python-projects.org'
--- a/__init__.py	Fri Nov 11 18:41:16 2016 +0100
+++ b/__init__.py	Sat Nov 12 17:28:22 2016 +0100
@@ -4,7 +4,7 @@
 #
 
 """
-Package implementing the eric6 Python IDE (version 6.2).
+Package implementing the eric6 Python IDE.
 
 To get more information about eric6 please see the
 <a href="http://eric-ide.python-projects.org/index.html">eric web site</a>.

eric ide

mercurial