Bump version and change tag to git, update submods and links to API

This commit is contained in:
DarkPhoenix
2013-06-09 21:04:48 +04:00
parent 5e8d1b0f49
commit 25cb5825aa
4 changed files with 7 additions and 7 deletions

View File

@@ -13,8 +13,8 @@ debug = False
saveInRoot = False
# Version data
version = "1.1.14"
tag = "stable"
version = "1.1.15"
tag = "git"
expansionName = "Odyssey"
expansionVersion = "1.0"

2
eos

Submodule eos updated: 971361e165...7835b09258

View File

@@ -539,8 +539,8 @@ class APIView (wx.Panel):
wx.Panel.__init__ (self, parent, id=wx.ID_ANY, pos=wx.DefaultPosition, size=wx.Size(500, 300), style=wx.TAB_TRAVERSAL)
self.Parent.Parent.Bind(CHAR_CHANGED, self.charChanged)
self.apiUrlCreatePredefined = u"https://support.eveonline.com/api/Key/CreatePredefined/8"
self.apiUrlKeyList = u"https://support.eveonline.com/api/Key/Index"
self.apiUrlCreatePredefined = u"https://community.eveonline.com/support/api-key/update/"
self.apiUrlKeyList = u"https://community.eveonline.com/support/api-key/"
pmainSizer = wx.BoxSizer(wx.VERTICAL)
@@ -586,7 +586,7 @@ class APIView (wx.Panel):
pmainSizer.Add(self.btnFetchSkills, 0, wx.ALL, 5)
self.btnFetchSkills.Hide()
self.btnFetchSkills.Bind(wx.EVT_BUTTON, self.fetchSkills)
self.stAPITip = wx.StaticText( self, wx.ID_ANY, u"You can create a key here (character sheet access only):", wx.DefaultPosition, wx.DefaultSize, 0 )
self.stAPITip = wx.StaticText( self, wx.ID_ANY, u"You can create a key here (only character sheet access is needed):", wx.DefaultPosition, wx.DefaultSize, 0 )
self.stAPITip.Wrap( -1 )
pmainSizer.Add( self.stAPITip, 0, wx.ALL, 2 )