diff -r 3fc8dfeb6ebe -r b99e7fd55fd3 src/eric7/UI/Info.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/eric7/UI/Info.py Thu Jul 07 11:23:56 2022 +0200 @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2002 - 2022 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module defining some informational strings. +""" + + +Program = 'eric7' +Version = '@@VERSION@@ (rev. @@REVISION@@)' +VersionOnly = '@@VERSION@@' +Copyright = ( + 'Copyright (c) 2002 - 2022 Detlev Offenbach' + ' <detlev@die-offenbachs.de>' +) +CopyrightShort = '(c) 2002 - 2022 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"