Skip to content

Commit 74cea66

Browse files
committed
Bump version to 0.2.0
1 parent 5d86739 commit 74cea66

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

version.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ VSVersionInfo(
1616
u'040904B0',
1717
[StringStruct(u'CompanyName', u'Bester'),
1818
StringStruct(u'FileDescription', u'Minecraft Map Tools'),
19-
StringStruct(u'FileVersion', u'0.1.0.0'),
19+
StringStruct(u'FileVersion', u'0.2.0.0'),
2020
StringStruct(u'InternalName', u''),
2121
StringStruct(u'LegalCopyright', u'\xa9 2023 Ryan Bester'),
2222
StringStruct(u'OriginalFilename', u''),
2323
StringStruct(u'ProductName', u'Minecraft Map Tools'),
24-
StringStruct(u'ProductVersion', u'0.1.0.0')])
24+
StringStruct(u'ProductVersion', u'0.2.0.0')])
2525
]),
2626
VarFileInfo([VarStruct(u'Translation', [2057, 1200])])
2727
]

views/about.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ def build_view(self, parent, controller: AboutController):
1515
text = ttk.Label(self.frame, text='A tool for downloading maps from Dynmap and JourneyMap')
1616
text.pack(padx=7, pady=7)
1717

18+
version = ttk.Label(self.frame, text='Version 0.2.0')
19+
version.pack(padx=7, pady=7)
20+
1821
copyright_lbl = ttk.Label(self.frame, text='Copyright (C) 2023 Ryan Bester')
1922
copyright_lbl.pack(padx=7, pady=7)
2023

0 commit comments

Comments
 (0)