Skip to content

Commit

Permalink
Update to Version 20.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasj13 committed Mar 16, 2022
1 parent 791bd3e commit f75fb1f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 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: 19.1.1
version: 20.0.0
date-released: '2022-02-20'
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This GUI can visualize and analyze percentage depth dose (pdd) and dose profiles

- Reproducible graphing and analysis of TOPAS simulation for medical physics
- Simultaneous plotting and parameter calculation for up to 10 datasets
- Calculation of the Gamma Index
- Graph adjustment options
* Normalization (On/Off)
* Error bars (On/Off)
Expand Down
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="19.1.1",
version="20.0.0",
author="Sebastian Schäfer",
author_email="sebastian.schaefer@student.uni-halle.de",
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 = "19.1.1"
currentVersion = "20.0.0"
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: 19.1.1\n ", "en": "Version: 19.1.1\n "}
version = {"de": "Version: 20.0.0\n ", "en": "Version: 20.0.0\n "}

if mode == True:
pic = "light"
Expand Down

0 comments on commit f75fb1f

Please sign in to comment.