Skip to content

Commit

Permalink
Update web links
Browse files Browse the repository at this point in the history
  • Loading branch information
simonokeefe committed May 28, 2022
1 parent 4425cbb commit b8574a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/PoziConnect/gui/GUI_Template.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__( self, parent ):
headerSizerRight.Add( self.headerSizerSpacerText, 0, wx.ALL, 5 )

self.helpLink = agw.hyperlink.HyperLinkCtrl(parent=self, pos=(225, 60))
self.helpLink.SetURL(URL='https://docs.pozi.com/pozi-connect/')
self.helpLink.SetURL(URL='https://pozi.com/pozi-connect/')
self.helpLink.SetLabel(label='Help')
self.helpLink.SetToolTipString(tip='Visit website for help')
headerSizerRight.Add( self.helpLink, 0, wx.ALIGN_RIGHT|wx.ALL, 5 )
Expand All @@ -63,7 +63,7 @@ def __init__( self, parent ):
self.aboutLink.SetToolTipString(tip='Visit website for more info')
headerSizerRight.Add( self.aboutLink, 0, wx.ALIGN_RIGHT|wx.ALL, 5 )

self.updateLink = wx.StaticText( self, wx.ID_ANY, u".", wx.DefaultPosition, wx.DefaultSize, 0 )
self.updateLink = wx.StaticText( self, wx.ID_ANY, u"", wx.DefaultPosition, wx.DefaultSize, 0 )
self.updateLink.Wrap( -1 )
self.updateLink.SetFont( wx.Font( wx.NORMAL_FONT.GetPointSize(), 70, 90, 91, False, wx.EmptyString ) )

Expand Down
4 changes: 2 additions & 2 deletions app/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
import py2exe

COMPANY_NAME = 'Pozi'
COPYRIGHT = '(c) 2009-2019 ' + COMPANY_NAME
COPYRIGHT = '(c) 2009-2022 ' + COMPANY_NAME
AUTHOR_NAME = 'Pozi'
AUTHOR_EMAIL = '[email protected]'
AUTHOR_URL = "https://www.pozi.com"
AUTHOR_URL = "https://pozi.com"
PRODUCT_NAME = "Pozi Connect"
SCRIPT_MAIN = os.path.join(APP_DIR, 'PoziConnect.py')
VERSIONSTRING = PRODUCT_NAME + " BETA " + VERSION
Expand Down

0 comments on commit b8574a2

Please sign in to comment.