Give user a message whenever they either go to API view in character editor, or try to to perform XML / CREST functionality, to note that this functionality no longer works

This commit is contained in:
blitzmann
2018-05-07 21:54:17 -04:00
parent fc35d7bb26
commit f7fa31e8c0
3 changed files with 14 additions and 165 deletions

View File

@@ -606,6 +606,8 @@ class MainFrame(wx.Frame, IPortUser):
wx.PostEvent(self, GE.FitChanged(fitID=fitID))
def eveFittings(self, event):
wx.MessageBox("On May 8th, 2018, CCP discontinued support for CREST. pyfa 1.x no longer has this functionality. This functionality has been replaced by a newer technology called ESI, available in pyfa 2.x release.")
return
dlg = CrestFittings(self)
dlg.Show()
@@ -670,6 +672,8 @@ class MainFrame(wx.Frame, IPortUser):
dlg.Show()
def exportToEve(self, event):
wx.MessageBox("On May 8th, 2018, CCP discontinued support for CREST. pyfa 1.x no longer has this functionality. This functionality has been replaced by a newer technology called ESI, available in pyfa 2.x release.")
return
dlg = ExportToEve(self)
dlg.Show()