Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the api version to 2.0.0, so it's the same as the xBuddy one #892

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* Use the 2023-10-10 Raspberry Pi OS base image for the image builder
* Decrease the severity of web server access log messages
* Add a way to download logs even on systemd journal based systems
* Bump the API version so it is the same as the xBuddy reported one

0.7.1rc1 (2023-08-10)
* Fixed HTTP response status on HEAD request for non-existing files
Expand Down
2 changes: 1 addition & 1 deletion prusa/link/web/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def api_version(req):
type_name = f"PrusaLink {prusa_link.printer.type.name}" \
if prusa_link.printer.type else 'Unknown printer type'
retval = {
'api': "0.9.0-legacy",
'api': "2.0.0",
'server': __version__,
'original': type_name,
'text': f"PrusaLink {__version__}",
Expand Down