Skip to content

Commit

Permalink
Update to Version 18.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasj13 committed Feb 15, 2022
1 parent ea3d276 commit 4a61c2c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="topasgraphsim",
version="18.0.1",
version="18.0.2",
author="Sebastian Schäfer",
author_email="[email protected]",
description="GUI to plot the results of a topas simulation",
Expand Down
2 changes: 1 addition & 1 deletion topasgraphsim/src/classes/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class CheckForUpdates:
def __init__(self):

currentVersion = "18.0.1"
currentVersion = "18.0.2"
try:
newestVersion = requests.get(
"https://api.github.com/repos/sebasj13/topasgraphsim/releases/latest"
Expand Down
2 changes: 1 addition & 1 deletion topasgraphsim/src/resources/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, parent, lang, mode):
"de": "TopasGraphSim\n\nAutor: Sebastian Schäfer",
"en": "TopasGraphSim\n\nAuthor: Sebastian Schäfer",
}
version = {"de": "Version: 18.0.1\n ", "en": "Version: 18.0.1\n "}
version = {"de": "Version: 18.0.2\n ", "en": "Version: 18.0.2\n "}

if mode == True:
pic = "light"
Expand Down
2 changes: 1 addition & 1 deletion topasgraphsim/topasgraphsim.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def topasgraphsim():
height = screen_height // 2
x = screen_width // 2 - width // 2
y = screen_height // 2 - height // 2
root.minsize(width, height - 50)
root.minsize(width, height - 100)
root.geometry(f"{width}x{height}+{x-25}+{y}")
ttk.Style(root)
root.tk.call(
Expand Down

0 comments on commit 4a61c2c

Please sign in to comment.