From: daid Date: Wed, 26 Nov 2014 14:36:29 +0000 (+0100) Subject: Updated new version dialog. X-Git-Tag: lulzbot-14.12~13 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=28c39b428363f878f581814b54de2c9cb286e713;p=cura.git Updated new version dialog. --- diff --git a/Cura/gui/newVersionDialog.py b/Cura/gui/newVersionDialog.py index 1ebaf5af..dc233420 100644 --- a/Cura/gui/newVersionDialog.py +++ b/Cura/gui/newVersionDialog.py @@ -26,13 +26,24 @@ 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 French and German language options.')) - s.Add(wx.StaticText(p, -1, '* When using the Pause at height plugin, the extruder will lose power so you could swap filament in an UM2.')) - s.Add(wx.StaticText(p, -1, '* Fixed an issue on both MacOS and Windows where Cura failed to start.')) - s.Add(wx.StaticText(p, -1, '* New TweakAtZ plugin from Dim3nsioneer.')) - s.Add(wx.StaticText(p, -1, '* Toolpath generation tries to find internal corners to start/end a layer, to minimize the seam seen on some prints')) - s.Add(wx.StaticText(p, -1, '* Added Ultimaker Original+')) - s.Add(wx.StaticText(p, -1, '* Added Ultimaker Original Heated Bed Upgrade Kit')) + s.Add(wx.StaticText(p, -1, '* Fixed a problem which was introduced in 14.09.\n There are extreme amounts of head movements generated.')) + s.Add(wx.StaticText(p, -1, '* Speed up GCode generation for large models by as much as 40%')) + s.Add(wx.StaticText(p, -1, '* Fixed problems with placement of multiple objects on the build platform')) + s.Add(wx.StaticText(p, -1, '* Prevent installing firmware for Ultimaker Original+ on an Ultimaker Original')) + s.Add(wx.StaticText(p, -1, '* Fixed generating big GCode files (more then 200MB) on Windows')) + s.Add(wx.StaticText(p, -1, '* French translation updates (Thanks to Jeremie Francois)')) + s.Add(wx.StaticText(p, -1, '* Fixed a problem where "everywhere" support did not work when german was used as language.')) + s.Add(wx.StaticText(p, -1, '* Changed the handling of the heated bed, now always heats\n the bed first instead of bed and nozzle at the same time.\n This to prevent the nozzle from leaking empty.')) + s.Add(wx.StaticText(p, -1, '* Fixed the "uninstall old Cura versions" option in the windows installer.')) + s.Add(wx.StaticText(p, -1, '* Improved the search for old installations, so old settings are copied over.')) + s.Add(wx.StaticText(p, -1, '* Fixed a bug where double clicking a file on windows did not load the file in Cura.')) + s.Add(wx.StaticText(p, -1, '* Made sure the firmware versions for Ultimaker printers always match the Cura release number.')) + s.Add(wx.StaticText(p, -1, '* Added a quick access button for expert settings of a certain setting.')) + s.Add(wx.StaticText(p, -1, '* Added some more raft settings to dial in the raft better.')) + s.Add(wx.StaticText(p, -1, '* Fixed the tooltip of support material. Now it actually explains the angles properly.')) + s.Add(wx.StaticText(p, -1, '* Fixed a bug which caused the USB printing window to stop working (Thanks to SpaxGuy)')) + s.Add(wx.StaticText(p, -1, '* Fix a bug where Cura would stop generating GCode')) + s.Add(wx.StaticText(p, -1, '* Added latest offerings of Printrbot')) self.hasUltimaker = None self.hasUltimaker2 = None @@ -50,9 +61,10 @@ 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.09.0)')) - s.Add(wx.StaticText(p, -1, '* Fixed problems caused by canceling a print while the print is paused')) - s.Add(wx.StaticText(p, -1, '* Marked the first-run done earlier so you can turn off the machine before selecting a test print')) + s.Add(wx.StaticText(p, -1, 'New firmware for your Ultimaker2:')) + s.Add(wx.StaticText(p, -1, '* Detect when the Z endstop is not working properly.\n Which prevents the bed from damaging the nozzle.')) + s.Add(wx.StaticText(p, -1, '* Added the ability to import/export material profiles to the SD card.')) + s.Add(wx.StaticText(p, -1, '* Improved hotend temperature stability.')) button = wx.Button(p, -1, 'Install now') self.Bind(wx.EVT_BUTTON, self.OnUltimaker2Firmware, button) s.Add(button, flag=wx.TOP, border=5)