diff --git a/config.py b/config.py index 94766af..a1e6792 100755 --- a/config.py +++ b/config.py @@ -66,7 +66,7 @@ class Config(object): "default_language": "English", } internals = { - "version": "1.1.0", + "version": "1.1.1", "TCPversion": "1.1", "choicelist_paksize": [16, 32, 48, 64, 80, 96, 112, 128, 144, 160, 176, 192, 208, 224, 240], "choicelist_views": [1, 2, 4], diff --git a/tcui/dialogAbout.py b/tcui/dialogAbout.py index a376122..8b74c62 100755 --- a/tcui/dialogAbout.py +++ b/tcui/dialogAbout.py @@ -71,7 +71,7 @@ def translate(self): self.title_text.SetLabel(gt("TileCutter")) self.subtitle_text.SetLabel(gt("Simutrans Building Editor")) self.version_text.SetLabel(gt("Version %s") % self.version_number) - self.copyright_text.SetLabel("\nCopyright © 2018 André Zanghelini. All rights reserved.\nCopyright © 2008-2015 Timothy Baldock. All rights reserved.\n\nThis program uses the wxPython library\nCopyright © 1992-2018 Julian Smart, Robert Roebling, Vadim Zeitlin\nand other members of the wxPython team.\n\nTileCutter is written in Python.") + self.copyright_text.SetLabel("\nCopyright © 2018-2019 André Zanghelini. All rights reserved.\nCopyright © 2008-2015 Timothy Baldock. All rights reserved.\n\nThis program uses the wxPython library\nCopyright © 1992-2019 Julian Smart, Robert Roebling, Vadim Zeitlin\nand other members of the wxPython team.\n\nTileCutter is written in Python.") self.title_text.Wrap( self.size[0] - 20) self.subtitle_text.Wrap( self.size[0] - 20)