Skip to content

Commit

Permalink
Update forum references (#1301)
Browse files Browse the repository at this point in the history
  • Loading branch information
blitzmann authored Sep 24, 2017
1 parent 72062e6 commit dfe3d5c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pyfa is licensed under the GNU GPL v3.0, see LICENSE

## Resources
* Development repository: [https://github.com/pyfa-org/Pyfa](https://github.com/pyfa-org/Pyfa)
* [EVE forum thread](https://forums.eveonline.com/default.aspx?g=posts&t=466425)
* [EVE forum thread](https://forums.eveonline.com/t/27156)
* [EVE University guide using pyfa](http://wiki.eveuniversity.org/Guide_to_using_PYFA)
* [EVE Online website](http://www.eveonline.com/)

Expand Down
2 changes: 1 addition & 1 deletion gui/errorDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __init__(self, exception=None, tb=None, error_title='Error!'):
wx.DefaultPosition, wx.DefaultSize, wx.HL_DEFAULT_STYLE)
box.Add(github, 0, wx.ALL, 5)

eveForums = wx.HyperlinkCtrl(self, wx.ID_ANY, "EVE Forums", "https://forums.eveonline.com/default.aspx?g=posts&t=466425",
eveForums = wx.HyperlinkCtrl(self, wx.ID_ANY, "EVE Forums", "https://forums.eveonline.com/t/27156",
wx.DefaultPosition, wx.DefaultSize, wx.HL_DEFAULT_STYLE)
box.Add(eveForums, 0, wx.ALL, 5)

Expand Down
9 changes: 4 additions & 5 deletions gui/mainFrame.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,10 +380,9 @@ def ShowAboutBox(self, evt):
"\nSQLAlchemy: \t" + sqlalchemy.__version__ +
"\nmatplotlib: \t {}".format(matplotlib_version if matplotlib_version else "Not Installed"),
500, wx.ClientDC(self))
if "__WXGTK__" in wx.PlatformInfo:
forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=466425"
else:
forumUrl = "http://forums.eveonline.com/default.aspx?g=posts&t=466425"

forumUrl = "https://forums.eveonline.com/t/27156"

info.WebSite = (forumUrl, "pyfa thread at EVE Online forum")
wx.AboutBox(info)

Expand Down Expand Up @@ -453,7 +452,7 @@ def goWiki(event):

@staticmethod
def goForums(event):
webbrowser.open('https://forums.eveonline.com/default.aspx?g=posts&t=466425')
webbrowser.open('https://forums.eveonline.com/t/27156')

@staticmethod
def loadDatabaseDefaults(event):
Expand Down
2 changes: 1 addition & 1 deletion scripts/pyfa-setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#define MyAppName "pyfa"
#define MyAppPublisher "pyfa"
#define MyAppURL "https://forums.eveonline.com/default.aspx?g=posts&t=466425&p=1"
#define MyAppURL "https://forums.eveonline.com/t/27156"
#define MyAppExeName "pyfa.exe"

; What version starts with the new structure (1.x.0). This is used to determine if we run directory structure cleanup
Expand Down

0 comments on commit dfe3d5c

Please sign in to comment.