Skip to content

Commit

Permalink
Update to Version 25.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasj13 committed Apr 20, 2023
1 parent f0479ab commit 67bb684
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ keywords:
- GUI
- Python
license: MIT
version: 24.1.1
version: 25.0.0
date-released: '2023-03-25'
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="24.1.1",
version="25.0.0",
author="Sebastian Schäfer",
author_email="sebastian.schaefer@student.uni-halle.de",
description="GUI to analyze the results of a Monte-Carlo radiation 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 = "24.1.1"
currentVersion = "25.0.0"
try:
newestVersion = requests.get(
"https://api.github.com/repos/sebasj13/topasgraphsim/releases/latest"
Expand Down
4 changes: 2 additions & 2 deletions topasgraphsim/topasgraphsim.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self):
super().__init__()

self.appname = "TopasGraphSim"
self.version = "24.1.1"
self.version = "25.0.0"
self.author = "Sebastian Schäfer"
self.affiliation = "UK Halle\nMLU Halle-Wittenberg\nUK Hamburg-Eppendorf"
self.title(f"{self.appname} - v.{self.version}")
Expand Down Expand Up @@ -64,7 +64,7 @@ def resource_path(relative_path):
for i in sys.argv[1:]:
if os.path.exists(i):
self.frame.add_file(i)
#CheckForUpdates()
CheckForUpdates()
self.after(0, lambda: self.state(ProfileHandler().get_attribute("state")))
self.mainloop()

Expand Down

0 comments on commit 67bb684

Please sign in to comment.