Skip to content

Commit

Permalink
release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ondratu committed Oct 11, 2023
1 parent 6451d68 commit 09e64f3
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 12 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# EditorConfig <https://EditorConfig.org>
root = true

# elementary defaults
[*]
charset = utf-8
end_of_line = lf
indent_size = tab
indent_style = space
insert_final_newline = false
max_line_length = 80
tab_width = 4

# Markup files
[{*.html,*.xml,*.yaml,*.yml}]
tab_width = 2
2 changes: 0 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/prusa3d/gcode-metadata.git@master#egg=gcode_metadata
pip install git+https://github.com/prusa3d/Prusa-Connect-SDK-Printer.git@master#egg=prusa.connect.sdk.printer
pip install -U -r requirements.txt
pip install pylint~=2.17.7
pip install -U ruff pytest pytest-doctestplus pytest-pylint pytest-mypy mock
Expand Down
4 changes: 3 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# ChangeLog

0.7.1rc2
0.7.1 (2023-10-10)
* Add an automatic PrusaLink image builder script
* Add multi-instance documentation
* Telemetry improvement
* Attempt to turn the RPi wifi power management off in the images

0.7.1rc1 (2023-08-10)
* Fixed HTTP response status on HEAD request for non-existing files
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
include *.py
include MANIFEST.in
include requirements.txt
include requirements-pi.txt
graft prusa/link/data
graft prusa/link/templates
graft prusa/link/static
Expand Down
2 changes: 1 addition & 1 deletion Prusa-Link-Web
Submodule Prusa-Link-Web updated 1 files
+1 −0 src/styles.css
4 changes: 2 additions & 2 deletions prusa/link/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
__application__ = "PrusaLink"
__vendor__ = "Prusa Research"

__version__ = "0.7.1rc1"
__date__ = "10 Aug 2023"
__version__ = "0.7.1"
__date__ = "10 Oct 2023"
__copyright__ = "(c) 2023 Prusa 3D"
__author_name__ = "PrusaLink Developers"
__author_email__ = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion prusa/link/static/index.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion prusa/link/static/main.9785b4dc200a1fbac3d5.css

This file was deleted.

1 change: 1 addition & 0 deletions prusa/link/static/main.b3e029296dd89863b3f2.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
prusa.connect.sdk.printer>=0.7.1rc1
gcode-metadata
prusa.connect.sdk.printer>=0.7.1
py-gcode-metadata
pip>=22.2.0
bidict~=0.22.1
blinker~=1.5
Expand All @@ -9,7 +9,7 @@ jinja2-template-info~=0.2.4
lockfile~=0.12.2
packaging~=23.0
PoorWSGI~=2.5.0
pydantic~=1.10.7
pydantic==1.10.12 # to be kept pinned until https://github.com/pydantic/pydantic/issues/7689 is resolved
pyric~=0.1.6.3
python-daemon~=3.0.1
python-magic~=0.4.27
Expand Down

0 comments on commit 09e64f3

Please sign in to comment.