Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaid <daid303@gmail.com>2014-02-18 17:05:02 +0400
committerdaid <daid303@gmail.com>2014-02-18 17:05:02 +0400
commitd8e7fd47400eb5b88d2e80e45d0c6a491db175c7 (patch)
tree13711a9ee8ae6d1036c530c5355862345311ed36
parentb4559437b5a1184322cff44e9d8148e2404d53d5 (diff)
Add info about new UM2 firmware.
-rw-r--r--Cura/gui/newVersionDialog.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/Cura/gui/newVersionDialog.py b/Cura/gui/newVersionDialog.py
index 338ad299de..0656fd373f 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)