Skip to content

Commit

Permalink
Merge pull request kliment#1425 from rockstorm101/release-2.1.0
Browse files Browse the repository at this point in the history
Release Printrun 2.1.0
  • Loading branch information
rockstorm101 authored May 26, 2024
2 parents dbe3bc3 + ac7b10a commit b382917
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 2 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ An enormous number of people have contributed to Printrun (thank you!):
- Miro Hrončok @hroncok (code, packaging)
- Rob Gilson @D1plo1d (code)
- Gary Hodgson @garyhodgson (code)
- Neofelis @neofelis2X (code)
- Duane Johnson (code,graphics)
- Alessandro Ranellucci @alranel (code)
- Travis Howse @tjhowse (code)
Expand Down
41 changes: 41 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
Printrun - 2.1.0
================

Minor release with plenty of GUI enhancements.

### New Features

* Switch from dependency `appdirs` to `platformdirs` (#1420)
* Support print cancellation on Prusa/Marlin based printers (#1414)
* Build procedure reworked to use a `pyproject.toml` file (#1407)
* Dropped support for Python 3.7 and added Python 3.11 (#1400, #1406)
- Removed 'PythonGTK3' submodule
- Removed dependencies on 'cffi', 'cairocffi' and 'cairosvg'
- New dependency on 'pillow' for Windows systems
- Re-enabled support for 32 bits architectures on Windows
* Reworked translations (#1343, #1406)
- Translation brought up to date to match latest code
- Translations for all Printrun tools are now within a single file
* Reworked Layer Projector tool (#1387)
* Pronterface user interface enhancements (#1331, #1347, #1367)
* Code refactoring on printcore (#1346)
* Added unit tests suite for printcore (#1334)
* Higher baud rates offered by default (#1267)

### Fixed Bugs

* Fix type error quirk in status when printing via SD (#1426)
* Consequences of exiting a print are more transparent (#1415)
* Temp button Off for heater or bed conversion error (#1406)
* Pronterface double-listing filaments for upper and lower case types (#1406)
* Pronterface keyboard shortcuts prevent inputs of some characters (#1406)
* Typo in pronsole desktop file (#1359)
* Line number mismatch on resend (#1341)
* Module 'pyreadline' replaced by 'pyreadline3' (#1332)

### Administrative

* Updated instructions to build the package (#1400)
* Reworked README (#1309, #1374)


Printrun - 2.0.1
================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ An enormous number of people helped make Printrun. See the list
# LICENSE

```
Copyright (C) 2011-2023 Kliment Yanev, Guillaume Seguin, and the other contributors listed in CONTRIBUTORS.md
Copyright (C) 2011-2024 Kliment Yanev, Guillaume Seguin, and the other contributors listed in CONTRIBUTORS.md

Printrun is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion printrun/printcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"
__version__ = "2.1.0"

import sys
if sys.version_info.major < 3:
Expand Down
1 change: 1 addition & 0 deletions printrun/pronterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,7 @@ def about(self, event):
info.AddDeveloper('Miro Hrončok @hroncok (code, packaging)')
info.AddDeveloper('Rob Gilson @D1plo1d (code)')
info.AddDeveloper('Gary Hodgson @garyhodgson (code)')
info.AddDeveloper('Neofelis @neofelis2X (code)')
info.AddDeveloper('Duane Johnson (code,graphics)')
info.AddDeveloper('Alessandro Ranellucci @alranel (code)')
info.AddDeveloper('Travis Howse @tjhowse (code)')
Expand Down

0 comments on commit b382917

Please sign in to comment.