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

github.com/kliment/Printrun.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiro Hrončok <miro@hroncok.cz>2020-08-02 18:55:04 +0300
committerMiro Hrončok <miro@hroncok.cz>2020-08-02 18:55:04 +0300
commitcc30bbc86de6c8323d72c0a50888d2bbb6605a2b (patch)
tree3fea2537357eadbb15be5af24ae16beca15a7e53
parentfa27d74c172349c79f59933c1a35ad0e59d37cfc (diff)
Release Printrun 2.0.0rc6printrun-2.0.0rc6
-rw-r--r--NEWS.md32
-rw-r--r--printrun/printcore.py2
2 files changed, 33 insertions, 1 deletions
diff --git a/NEWS.md b/NEWS.md
index bc97739..c83bbde 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,3 +1,35 @@
+Printrun - 2.0.0rc6
+====================
+
+Pre-release for testing purposes.
+
+### New Features
+
+ - Change the default background color to the theme one (#931)
+ - Add setting for graph background color (#791)
+ - Hide second extruder from graph if not present (#791)
+ - Support for disabling Mate screensaver service (#979)
+ - Armenian translation (#1042)
+ - Don't print the M117 status msg to the console (#1081)
+ - Packages installable by pip are available on PyPI (#921)
+
+### Fixed Bugs
+
+ - Don't ask for exit confirmation on the console when asking in GUI (b48fe7b)
+ - Preset for temperatures does not affect Selection on the main screen (#676)
+ - Several Python 3 related followups, mostly in run_gcode_script
+ - Issue connecting to a remote port (#1027)
+ - Run "Final command" from settings when print is finished (#1014)
+ - Fix a crash in wx at startup due to locale settings (#1015)
+ - Only apply PARITY_ODD workaround where it's actually needed (#1017)
+ - Do not attempt to read extra device name patterns on windows (#1040)
+ - Several Linux packaging fixes
+ - Removed error-causing wxPython horizontal alignment flags (#1052)
+ - Rewrite deprecated Serial functions (#1017), pySerial >= 3 is now needed
+ - 3D Viewer color options don't update (#1054)
+ - Settings change callbacks not called (#1063 and others)
+
+
Printrun - 2.0.0rc5
====================
diff --git a/printrun/printcore.py b/printrun/printcore.py
index f67c839..d5574ab 100644
--- a/printrun/printcore.py
+++ b/printrun/printcore.py
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU General Public License
# along with Printrun. If not, see <http://www.gnu.org/licenses/>.
-__version__ = "2.0.0rc5"
+__version__ = "2.0.0rc6"
import sys
if sys.version_info.major < 3: