Stefan Dej
7890d1e004
fix: import bugfixes from release v2.1.2 ( #639 )
...
(cherry picked from commit ebf74860f4
)
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-02-14 23:50:02 +01:00
th33xitus
fa20b19a5b
feat: add custom number input component ( #638 )
2022-02-14 23:03:49 +01:00
pataar
30b6230a77
build: upgrade eslint to the newest version ( #634 )
2022-02-14 22:54:50 +01:00
th33xitus
fc86125ebd
fix: console error regarding touch directive ( #633 )
2022-02-13 22:30:57 +01:00
pataar
d3172fa353
fix(env): parse environment variable as string ( #632 )
2022-02-13 22:24:01 +01:00
pataar
04b6992f3c
style: add prettier as default formatter ( #614 )
2022-02-13 22:09:25 +01:00
pataar
fd22cc297d
refactor: make sure that port '80' and '443' are correctly passed through ( #631 )
2022-02-13 18:40:49 +01:00
pataar
0cf8ba05be
refactor: replace 'vue-headful' with 'vue-meta' ( #620 )
2022-02-11 22:11:54 +01:00
pataar
c589a495a6
refactor: migrate longpress.js
to longpress.ts
( #619 )
2022-02-08 16:11:00 +01:00
srbjessen
a15cb3cbeb
locale(da): Update da.json ( #596 )
2022-02-08 13:14:44 +01:00
Furrciak
30abb687a3
locale(pl): Update 03.02.2022 ( #606 )
...
Co-authored-by: Stefan Dej <meteyou@gmail.com >
2022-02-08 13:14:21 +01:00
Furrciak
e9157f14c6
locale(pl): Bugfix 29/01/2022 ( #598 )
2022-02-08 13:12:30 +01:00
pataar
410610137a
build(vite): migrate to vitejs ( #594 )
2022-02-08 10:10:06 +01:00
FrY Sennberg
5f0c4baaca
fix: video and download link in timelapse video dialog ( #611 )
2022-02-07 13:08:39 +01:00
Furrciak
1c4127acf2
locale(pl): additional fix for polish language ( #592 )
2022-01-28 19:27:53 +01:00
Furrciak
a121e56085
locale(pl): fix polish translation ( #589 )
2022-01-28 19:27:34 +01:00
Furrciak
b944af5448
locale(pl): polish translation ( #581 )
...
Co-authored-by: Stefan Dej <meteyou@gmail.com >
2022-01-27 22:15:55 +01:00
srbjessen
0f0180bc50
locale(da): danish - minor updates, missing tags and removed "deceleration" ( #578 )
2022-01-27 21:55:59 +01:00
Stefan Dej
63c90c7eb6
Merge branch 'master' into develop
2022-01-27 21:41:37 +01:00
Stefan Dej
d856b73cd1
fix: polling klippy error messages ( #571 )
2022-01-26 01:36:36 +01:00
Stefan Dej
b5b25bd90c
Merge branch 'master' into develop
2022-01-23 20:20:10 +01:00
Stefan Dej
0db74e9e37
fix: hide second notification in timelapse > remove mp4 ( #572 )
2022-01-23 20:11:27 +01:00
Zhu Qian
b743467bca
locale(zh): Update zh.json ( #557 )
...
Co-authored-by: Stefan Dej <meteyou@gmail.com >
2022-01-23 00:23:43 +01:00
th33xitus
75aad8b880
fix: input field and spinner bug ( fixes #551 ) ( #555 )
2022-01-22 10:29:53 +01:00
Stefan Dej
7fc5e298ad
fix: delete remote printers dont work ( #564 )
2022-01-22 00:44:38 +01:00
Stefan Dej
1de95b12ec
fix: farm printer switch and display klippy connection errors ( #563 )
2022-01-22 00:18:15 +01:00
Stefan Dej
1e54c92b00
fix: default color mode in gcodeviewer was wrong ( #559 )
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-20 22:51:51 +01:00
Stefan Dej
8eb67ae2b6
fix: read nozzle_diameter from klipper config in gcodeviewer ( #558 )
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-20 22:38:31 +01:00
deddoggo
d5694835d0
locale(it): IT translation update ( #553 )
2022-01-19 22:31:35 +01:00
Emperor
19496a1f0a
locale(ru): Update RU v2.1 ( #552 )
...
* Update RU v2.1
2022-01-19 20:20:38 +01:00
Stefan Dej
1a8a9558d3
feat: send gcode macro with keyup enter ( #544 )
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-19 19:47:25 +01:00
steadyjaw
d94543207f
bugfix: fix capitalization of bed_mesh names and renaming functions (fix #545,#546) ( #547 )
...
* fix: remove text-transformation on rename-button
* fix: remove toUpperCase on renameProfile
* fix: add remove command to renameProfile
2022-01-19 19:39:17 +01:00
th33xitus
595c937d50
fix: improve machine settings number inputs ( #537 )
...
* fix: truncate excessive decimal places
fix: add `toString` casting to labels
fix: disable spinner appropriately
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
* fix: allow smooth time with 3 decimal places
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
* fix: disable both spinners if input value triggers error
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
* feat: add spinnerFactor prop
Simple multiplicator that can be used in combination with spinners to increase/decrease values with a different step size.
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
* fix: smooth time step size of 0.001
fix: spinnerFactor of 10
Allows for manual input of numbers with 3 decimal places. Spinners will still increase/decrease by 0.01
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
* feat: add hasSpinner prop
Allows for individually activating/disabling spinners on a number input field
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
* fix: add sane values as spinnerFactor for motion and fw retract spinners
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
* fix: nullish coalescing operator logic
Signed-off-by: Dominik Willner <th33xitus@gmail.com >
2022-01-18 22:07:27 +01:00
Stefan Dej
56d61ce6ae
fix: ipv6 issues with encodeURI
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-18 20:47:46 +01:00
Kevin Nguyen
7b19c902de
fix: encodeURI for thumbnails and timelapse files ( #539 )
...
GET requests including file names with special characters such as '%' will properly encode the request to the server.
2022-01-18 01:04:16 +01:00
Morten Lindhardt
bf60aef344
fix: set default for min_extrude_temp ( #540 )
...
* fix: set default for min_extrude_temp
Signed-off-by: Morten Lindhardt <r3fuze@gmail.com >
* fix: use settings instead of config
2022-01-18 01:02:34 +01:00
Stefan Dej
674ad36ddb
fix: klippy connected/disconnected change
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-18 00:25:36 +01:00
Stefan Dej
06bf0acdc3
fix: workaround to display download status in gcode-viewer
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-16 20:37:33 +01:00
Stefan Dej
5307412484
fix: workaround to display download status in editor
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-15 01:29:44 +01:00
Stefan Dej
bd7cf76076
fix: hide snackbar details if total not available
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-14 22:47:22 +01:00
Stefan Dej
aa4c269eab
fix: sort mcus in SystemPanel.vue
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-14 20:49:11 +01:00
Stefan Dej
d7c2dc5033
fix: sort endstops in EndstopPanel.vue
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-14 20:47:42 +01:00
CodingJustForRun
9da5c356f7
locale(hu): 2022 01 12 update ( #531 )
...
one key updated
2022-01-12 21:46:36 +01:00
CodingJustForRun
bd5723dda6
locale(hu): hun update 20220110 as requested :) ( #530 )
2022-01-12 21:46:15 +01:00
Stefan Dej
3ab0a5952a
locale: fix keys in top corner menu
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-12 20:53:48 +01:00
Stefan Dej
d76343b7bb
fix: fix locale output in confirm dialog for service control
...
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-10 21:04:44 +01:00
Bart Lammers
d94e9f18f3
locale(nl): Update NL locale ( #529 )
2022-01-10 19:09:09 +01:00
cgrossi70
4610eb70bc
locale(es): Traslation Spanish RC1 ( #528 )
2022-01-10 19:08:28 +01:00
srbjessen
649bbaa7dc
locale(da): Updated Danish translations ( #527 )
2022-01-10 19:07:07 +01:00
Stefan Dej
b7e94ba25e
locale(fr): update FR locale
...
thx to Roland Forster
Signed-off-by: Stefan Dej <meteyou@gmail.com >
2022-01-09 23:23:26 +01:00