Skip to content

Commit

Permalink
About page updates (#6)
Browse files Browse the repository at this point in the history
* freshen up the about page

* updates

* update special thanks
  • Loading branch information
jivey authored Sep 28, 2024
1 parent 0553e82 commit e3334f1
Show file tree
Hide file tree
Showing 4 changed files with 261 additions and 127 deletions.
2 changes: 1 addition & 1 deletion backend/src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ def on_closed():


def about_window():
webview.create_window("About", get_entrypoint("about.html"))
webview.create_window("About", get_entrypoint("about.html"), js_api=api)


def manual_window():
Expand Down
4 changes: 3 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def make_platform_build_command(settings):
"--standalone",
"--include-data-dir=gui=gui",
"--include-data-dir=docs=docs",
"--include-data-dir=assets=assets",
"--nofollow-import-to=matplotlib",
"--nofollow-import-to=doctest",
"--output-filename=SDT2",
Expand Down Expand Up @@ -120,8 +121,9 @@ def main():
settings = parser.parse_args()

command = make_platform_build_command(settings)
result = run_command(command)

if run_command(command) and platform.system() == "Darwin":
if result and platform.system() == "Darwin":
os.rename(
os.path.join(".", "build", "app.app"),
os.path.join(".", "build", "SDT2.app"),
Expand Down
Loading

0 comments on commit e3334f1

Please sign in to comment.