Skip to content

Commit

Permalink
reword entry in context menu
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Jan 19, 2023
1 parent e6be587 commit e4e08e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ElevenClock.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "ElevenClock"
#define MyAppVersion "4.0.0"
#define MyAppVersion "4.0.1-beta"
#define MyAppPublisher "Martí Climent"
#define MyAppURL "https://github.com/martinet101/ElevenClock"
#define MyAppExeName "ElevenClock.exe"
Expand Down
4 changes: 2 additions & 2 deletions elevenclock-version-info
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ StringFileInfo(
[
StringStruct(u'CompanyName', u'Martí Climent'),
StringStruct(u'FileDescription', u'ElevenClock'),
StringStruct(u'FileVersion', u'4.0.0'),
StringStruct(u'ProductVersion', u'4.0.0'),
StringStruct(u'FileVersion', u'4.0.1-beta'),
StringStruct(u'ProductVersion', u'4.0.1-beta'),
StringStruct(u'InternalName', u'ElevenClock'),
StringStruct(u'LegalCopyright', u'Martí Climent'),
StringStruct(u'OriginalFilename', u'elevenclock.exe'),
Expand Down
2 changes: 1 addition & 1 deletion elevenclock/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def __init__(self, app=None):
menu.addAction(self.quitAction)
menu.addSeparator()

self.toolsMenu = menu.addMenu(_("Monitor tools"))
self.toolsMenu = menu.addMenu(_("Clock tools"))
self.toolsMenu.setParent(menu)
self.toolsMenu.setWindowFlag(Qt.WindowStaysOnTopHint)
self.toolsMenu.setWindowFlags(menu.windowFlags() | Qt.FramelessWindowHint)
Expand Down

0 comments on commit e4e08e6

Please sign in to comment.