Skip to content

Commit

Permalink
Update to Version 19.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasj13 committed Feb 21, 2022
1 parent 51ae2bc commit ddee81c
Show file tree
Hide file tree
Showing 5 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 @@ -21,5 +21,5 @@ keywords:
- GUI
- Python
license: MIT
version: 19.0.2
version: 19.0.3
date-released: '2022-02-20'
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.0.2",
version="19.0.3",
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/main_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@ def handle_configure(self, event=None):
)
* factor,
fill="",
outline="black",
outline="",
tags="rename",
)
]
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.0.2"
currentVersion = "19.0.3"
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.0.2\n ", "en": "Version: 19.0.2\n "}
version = {"de": "Version: 19.0.3\n ", "en": "Version: 19.0.3\n "}

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

0 comments on commit ddee81c

Please sign in to comment.