From: daid Date: Thu, 3 Jul 2014 09:08:02 +0000 (+0200) Subject: Update the new version dialog. X-Git-Tag: 14.09~18 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6f5270e3cb759c931c93e58eefb8f5c2c28036b1;p=cura.git Update the new version dialog. --- diff --git a/Cura/gui/newVersionDialog.py b/Cura/gui/newVersionDialog.py index 19bec84a..10cb5cd6 100644 --- a/Cura/gui/newVersionDialog.py +++ b/Cura/gui/newVersionDialog.py @@ -26,6 +26,9 @@ class newVersionDialog(wx.Dialog): s.Add(wx.StaticText(p, -1, '(This dialog is only shown once)')) s.Add(wx.StaticLine(p), flag=wx.EXPAND|wx.TOP|wx.BOTTOM, border=10) s.Add(wx.StaticText(p, -1, 'New in this version:')) + s.Add(wx.StaticText(p, -1, '* Added feature to configure the first layer to use wider print lines, for better adhesion to the printer bed.')) + s.Add(wx.StaticText(p, -1, '* Added all Printrbot printer variations.')) + s.Add(wx.StaticText(p, -1, 'New in version 14.06.1:')) s.Add(wx.StaticText(p, -1, '* Updated drivers for Windows 8.1.')) s.Add(wx.StaticText(p, -1, '* Added better raft support with surface layers and an air-gap. Special thanks to Gregoire Passault.')) s.Add(wx.StaticText(p, -1, '* Improved outer surface quality on high detail prints.')) @@ -50,7 +53,11 @@ class newVersionDialog(wx.Dialog): s.Add(button, flag=wx.TOP, border=5) 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: (14.06.1)')) + s.Add(wx.StaticText(p, -1, 'New firmware for your Ultimaker2: (14.07.0)')) + s.Add(wx.StaticText(p, -1, '* Added feature in the maintenance menu to just load filament')) + s.Add(wx.StaticText(p, -1, '* Fixed grinding problem at the start of a print')) + s.Add(wx.StaticText(p, -1, '* Fixed properly retracting when a print is finished')) + s.Add(wx.StaticText(p, -1, 'Firmware update: (14.06.2)')) s.Add(wx.StaticText(p, -1, '* Fixed a problem with the bed leveling. (Special thanks to stevegt for figuring this out)')) s.Add(wx.StaticText(p, -1, '* Improved the start of the print, first moves the bed up before moving to the print.')) s.Add(wx.StaticText(p, -1, '* Improved the start of the print, initial filament push is slower so it does not slip.'))