Browse Source

wxgui about: add link to github (#131)

Martin Landa 5 years ago
parent
commit
c1e68305cd
1 changed files with 5 additions and 4 deletions
  1. 5 4
      gui/wxpython/gui_core/ghelp.py

+ 5 - 4
gui/wxpython/gui_core/ghelp.py

@@ -9,7 +9,7 @@ Classes:
  - ghelp::HelpWindow
  - ghelp::HelpWindow
  - ghelp::HelpPanel
  - ghelp::HelpPanel
 
 
-(C) 2008-2015 by the GRASS Development Team
+(C) 2008-2019 by the GRASS Development Team
 
 
 This program is free software under the GNU General Public License
 This program is free software under the GNU General Public License
 (>=v2). Read the file COPYING that comes with GRASS for details.
 (>=v2). Read the file COPYING that comes with GRASS for details.
@@ -155,7 +155,7 @@ class AboutWindow(wx.Frame):
                           flag=wx.ALIGN_RIGHT)
                           flag=wx.ALIGN_RIGHT)
 
 
         infoGridSizer.Add(HyperLinkCtrl(parent=infoTxt, id=wx.ID_ANY,
         infoGridSizer.Add(HyperLinkCtrl(parent=infoTxt, id=wx.ID_ANY,
-                                        label='http://grass.osgeo.org'),
+                                        label='https://grass.osgeo.org'),
                           pos=(row, 1),
                           pos=(row, 1),
                           flag=wx.ALIGN_LEFT)
                           flag=wx.ALIGN_LEFT)
 
 
@@ -165,8 +165,9 @@ class AboutWindow(wx.Frame):
                           pos=(row, 0),
                           pos=(row, 0),
                           flag=wx.ALIGN_RIGHT)
                           flag=wx.ALIGN_RIGHT)
 
 
-        infoGridSizer.Add(StaticText(parent=infoTxt, id=wx.ID_ANY,
-                                     label=vInfo.get('revision', '?')),
+        infoGridSizer.Add(HyperLinkCtrl(parent=infoTxt, id=wx.ID_ANY,
+                                        label=vInfo.get('revision', '?'),
+                                        URL='https://github.com/OSGeo/grass.git'),
                           pos=(row, 1),
                           pos=(row, 1),
                           flag=wx.ALIGN_LEFT)
                           flag=wx.ALIGN_LEFT)