Skip to content

Commit 67bb684

Browse files
committed
Update to Version 25.0.0
1 parent f0479ab commit 67bb684

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ keywords:
1919
- GUI
2020
- Python
2121
license: MIT
22-
version: 24.1.1
22+
version: 25.0.0
2323
date-released: '2023-03-25'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="topasgraphsim",
8-
version="24.1.1",
8+
version="25.0.0",
99
author="Sebastian Schäfer",
1010
author_email="sebastian.schaefer@student.uni-halle.de",
1111
description="GUI to analyze the results of a Monte-Carlo radiation simulation",

topasgraphsim/src/classes/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CheckForUpdates:
1010
def __init__(self):
1111

12-
currentVersion = "24.1.1"
12+
currentVersion = "25.0.0"
1313
try:
1414
newestVersion = requests.get(
1515
"https://api.github.com/repos/sebasj13/topasgraphsim/releases/latest"

topasgraphsim/topasgraphsim.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(self):
2525
super().__init__()
2626

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

0 commit comments

Comments
 (0)