Skip to content

Commit

Permalink
improve about window
Browse files Browse the repository at this point in the history
  • Loading branch information
vikdevelop authored Jun 6, 2023
1 parent 6c3a60a commit b4faea2
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -707,17 +707,21 @@ def on_about_action(self, action, param):
dialog.set_translator_credits(_["translator_credits"])
dialog.set_license_type(Gtk.License(Gtk.License.GPL_3_0))
dialog.set_website("https://github.com/vikdevelop/SaveDesktop")
dialog.set_issue_url("https://github.com/vikdevelop/SaveDesktop")
dialog.set_issue_url("https://github.com/vikdevelop/SaveDesktop/issues")
dialog.set_copyright("© 2023 vikdevelop")
dialog.set_developers(["vikdevelop https://github.com/vikdevelop"])
dialog.set_artists(["Brage Fuglseth"])
version = "2.6"
version = "2.6.1"
icon = "io.github.vikdevelop.SaveDesktop"
if os.path.exists("/app/share/build-beta.sh"):
dialog.set_version(f"{version}-beta")
dialog.set_application_icon(f"{icon}.Devel")
if flatpak:
if os.path.exists("/app/share/build-beta.sh"):
dialog.set_version(f"{version}-beta")
dialog.set_application_icon(f"{icon}.Devel")
else:
dialog.set_version(version)
dialog.set_application_icon(icon)
else:
dialog.set_version(version)
dialog.set_version(f"{version}-native")
dialog.set_application_icon(icon)
dialog.show()

Expand Down

0 comments on commit b4faea2

Please sign in to comment.