Configtool: remove version information.
Teacup doesn't do releases, it's a rolling release :-)
This commit is contained in:
parent
6e19270f43
commit
e2e77ae927
|
|
@ -11,7 +11,7 @@ from configtool.settings import Settings, SettingsDlg
|
|||
from configtool.printerpanel import PrinterPanel
|
||||
from configtool.boardpanel import BoardPanel
|
||||
from configtool.build import Build, Upload
|
||||
from configtool.data import VERSION, reInclude
|
||||
from configtool.data import reInclude
|
||||
|
||||
ID_LOAD_PRINTER = 1000
|
||||
ID_SAVE_PRINTER = 1001
|
||||
|
|
@ -29,9 +29,7 @@ ID_SETTINGS = 1040
|
|||
|
||||
class ConfigFrame(wx.Frame):
|
||||
def __init__(self):
|
||||
wx.Frame.__init__(self, None, -1,
|
||||
"Teacup Firmware Configurator - " + VERSION,
|
||||
size = (880, 550))
|
||||
wx.Frame.__init__(self, None, -1, "Teacup Configtool", size = (880, 550))
|
||||
self.Bind(wx.EVT_CLOSE, self.onClose)
|
||||
|
||||
panel = wx.Panel(self, -1)
|
||||
|
|
|
|||
|
|
@ -2,8 +2,6 @@
|
|||
import re
|
||||
|
||||
|
||||
VERSION = "0.1"
|
||||
|
||||
supportedCPUs = ['ATmega168', 'ATmega328P', 'ATmega644', 'ATmega644P',
|
||||
'ATmega644PA', 'ATmega1280', 'ATmega1284', 'ATmega1284P',
|
||||
'ATmega2560', 'AT90USB1286']
|
||||
|
|
|
|||
Loading…
Reference in New Issue