Sat, 02 Feb 2019 11:12:54 +0100
Merged with default branch to prepare release 19.02.
# -*- coding: utf-8 -*- # Copyright (c) 2002 - 2019 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module defining some informational strings. """ from __future__ import unicode_literals Program = 'eric6' Version = '@@VERSION@@ (rev. @@REVISION@@)' VersionOnly = '@@VERSION@@' Copyright = 'Copyright (c) 2002 - 2019 Detlev Offenbach' \ ' <detlev@die-offenbachs.de>' CopyrightShort = '(c) 2002 - 2019 Detlev Offenbach' BugAddress = 'eric-bugs@eric-ide.python-projects.org' FeatureAddress = 'eric-featurerequest@eric-ide.python-projects.org' Homepage = "https://eric-ide.python-projects.org/index.html"