From: daid Date: Tue, 18 Feb 2014 13:05:02 +0000 (+0100) Subject: Add info about new UM2 firmware. X-Git-Tag: 14.02-RC2~1 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d8e7fd47400eb5b88d2e80e45d0c6a491db175c7;p=cura.git Add info about new UM2 firmware. --- diff --git a/Cura/gui/newVersionDialog.py b/Cura/gui/newVersionDialog.py index 338ad299..0656fd37 100644 --- a/Cura/gui/newVersionDialog.py +++ b/Cura/gui/newVersionDialog.py @@ -53,10 +53,13 @@ class newVersionDialog(wx.Dialog): button = wx.Button(p, -1, 'Install now') self.Bind(wx.EVT_BUTTON, self.OnUltimakerFirmware, button) s.Add(button, flag=wx.TOP, border=5) - if self.hasUltimaker2 is not None and False: + if self.hasUltimaker2 is not None: s.Add(wx.StaticLine(p), flag=wx.EXPAND|wx.TOP|wx.BOTTOM, border=10) s.Add(wx.StaticText(p, -1, 'New firmware for your Ultimaker2:')) - s.Add(wx.StaticText(p, -1, '* .')) + s.Add(wx.StaticText(p, -1, '* Added pause function during printing.')) + s.Add(wx.StaticText(p, -1, '* Added material selection when changing material.')) + s.Add(wx.StaticText(p, -1, '* Fixed the move material maintenance function.')) + s.Add(wx.StaticText(p, -1, '* Fixed the led brightness on startup.')) button = wx.Button(p, -1, 'Install now') self.Bind(wx.EVT_BUTTON, self.OnUltimaker2Firmware, button) s.Add(button, flag=wx.TOP, border=5)