Skip to content

Commit

Permalink
Add application metadata
Browse files Browse the repository at this point in the history
This commit adds application metadata such as the application name, version, and organization name. This will provide better identification and branding for the application.
  • Loading branch information
JoaquinDecima committed Dec 26, 2023
1 parent 847e8a0 commit 93c46e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions navale.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
app = QApplication(sys.argv)

if __name__ == "__main__":
app.setApplicationName("Navale")
app.setApplicationVersion("0.1.1")
app.setOrganizationName("Vasak Group")
window = NavaleWindow()
window.show()
signal.signal(signal.SIGINT, signal.SIG_DFL) # Habilitar Ctrl+C
Expand Down

0 comments on commit 93c46e9

Please sign in to comment.