@fdm-monster/client-next 0.0.28 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.yarn/install-state.gz +0 -0
- package/README.md +21 -0
- package/RELEASE_NOTES.MD +51 -1
- package/dist/assets/bambu-logo-CHl3qEbB.png +0 -0
- package/dist/assets/index-D27mWBqZ.css +1 -0
- package/dist/assets/index-DlvaLf-L.js +104 -0
- package/dist/assets/index-DlvaLf-L.js.map +1 -0
- package/dist/assets/materialdesignicons-webfont-B7mPwVP_.ttf +0 -0
- package/dist/assets/materialdesignicons-webfont-CSr8KVlo.eot +0 -0
- package/dist/assets/materialdesignicons-webfont-Dp5v-WZN.woff2 +0 -0
- package/dist/assets/materialdesignicons-webfont-PXm3-2wK.woff +0 -0
- package/dist/index.html +7 -3
- package/openapi-ts.config.ts +24 -0
- package/package.json +5 -2
- package/tsconfig.json +2 -1
- package/vite.config.ts +3 -5
- package/dist/assets/index-BMvBSgsG.css +0 -1
- package/dist/assets/index-ClwvElud.js +0 -60
- package/dist/assets/index-ClwvElud.js.map +0 -1
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/README.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
This is the official scaffolding tool for Vuetify, designed to give you a head start in building your new Vuetify application. It sets up a base template with all the necessary configurations and standard directory structure, enabling you to begin development without the hassle of setting up the project from scratch.
|
|
4
4
|
|
|
5
|
+
### Prerequisites
|
|
6
|
+
- Backend server must be running at `http://127.0.0.1:4000`
|
|
7
|
+
|
|
8
|
+
### Generate API Client
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
# One command to fetch spec and generate client
|
|
12
|
+
yarn generate:api
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Or run the steps separately:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# 1. Fetch OpenAPI spec from backend
|
|
19
|
+
yarn fetch:openapi
|
|
20
|
+
|
|
21
|
+
# 2. Generate TypeScript client
|
|
22
|
+
yarn openapi-ts
|
|
23
|
+
```
|
|
24
|
+
|
|
5
25
|
## Notes to self
|
|
6
26
|
|
|
7
27
|
- Example to fix alias includes https://github.com/mutoe/vue3-realworld-example-app/blob/master/tsconfig.json
|
|
@@ -14,6 +34,7 @@ This is the official scaffolding tool for Vuetify, designed to give you a head s
|
|
|
14
34
|
],
|
|
15
35
|
```
|
|
16
36
|
|
|
37
|
+
|
|
17
38
|
## ❗️ Important Links
|
|
18
39
|
|
|
19
40
|
- 📄 [Docs](https://vuetifyjs.com/)
|
package/RELEASE_NOTES.MD
CHANGED
|
@@ -1,6 +1,28 @@
|
|
|
1
1
|
# Develop
|
|
2
2
|
|
|
3
|
-
## Client 0.0
|
|
3
|
+
## Client 2.0.0
|
|
4
|
+
|
|
5
|
+
Features
|
|
6
|
+
|
|
7
|
+
- Redesigned loader, error and disconnect page
|
|
8
|
+
- Implement reconnect loop triggered by app initiation and socketIO disconnect
|
|
9
|
+
- Redesign app snackbars
|
|
10
|
+
- Redesign file sidenav with composable
|
|
11
|
+
- Design new job page
|
|
12
|
+
- Design new dashboard page
|
|
13
|
+
- Redesign camera page
|
|
14
|
+
- Redesign all settings pages
|
|
15
|
+
- Implement (group) tag filtering on both printer page and printer list page
|
|
16
|
+
- Implement (group) tag filtering on camera, jobs and dashboard pages
|
|
17
|
+
- Export and import yaml upgraded
|
|
18
|
+
- Printer placement UX redesigned, removed GridDialog/GridSettings
|
|
19
|
+
- Add camera references to printer list
|
|
20
|
+
- Redesign Job Menu including Tag and Type filter
|
|
21
|
+
- Design new Printer Status Menu
|
|
22
|
+
- Redesign the floor settings page
|
|
23
|
+
- Implement capabilities feature to allow better UI customization for different printer types
|
|
24
|
+
- Redesign About page and move into settings
|
|
25
|
+
- Redesign First Time Setup page with shared HelpBanner across pages using new GitHub and Discord button components
|
|
4
26
|
|
|
5
27
|
Fixes
|
|
6
28
|
|
|
@@ -10,6 +32,25 @@ Fixes
|
|
|
10
32
|
- The HTML background now matches theme color
|
|
11
33
|
- Navigation logo alignment improved by centering and size constraints
|
|
12
34
|
- Page content height now calculated with 100% to avoid pixel discrepancies on Edge for Desktop
|
|
35
|
+
- Border of tile color was wrong
|
|
36
|
+
- Printer drop default border was wrong
|
|
37
|
+
- Disable printer tile ripple when printer not online
|
|
38
|
+
- Close side explorer or dialogs when server has suddenly disconnected
|
|
39
|
+
- OctoFarm import dialog upgraded to Vuetify3 and import flow has been fixed
|
|
40
|
+
- Overall code cleanup, printer tile progress bar fix
|
|
41
|
+
- Printer page action buttons now aligned (even if badge is present)
|
|
42
|
+
- Improved app error handling user friendliness
|
|
43
|
+
- Improve creating first printer
|
|
44
|
+
- Regression settings page should route to floor settings
|
|
45
|
+
- Regression YAML import would not trigger validation
|
|
46
|
+
- YAML import will not allow importing users, user roles, settings as that will lead to failure
|
|
47
|
+
- First Time Setup page uses new backend endpoint
|
|
48
|
+
- CreateUserDialog will not load user roles on mount anymore
|
|
49
|
+
- FirstTimeSetup page too large, reduced in size
|
|
50
|
+
- Redirect from login to login prevented
|
|
51
|
+
- First time setup YAML import and manual setup will now trigger AppLoad through wizardCompleted
|
|
52
|
+
- Reimplement dialog context to be more strictly typed
|
|
53
|
+
- Remove AppConstants as it's not useful
|
|
13
54
|
|
|
14
55
|
Chores
|
|
15
56
|
|
|
@@ -17,6 +58,15 @@ Chores
|
|
|
17
58
|
- Remove dev splash screen
|
|
18
59
|
- Cleanup main.ts imports, add helpful CSS hints with vuetify-variables.d.css typing for Vuetify theme CSS variables
|
|
19
60
|
- Vite console doesnt clear screen anymore
|
|
61
|
+
- Add md icon set for more icons
|
|
62
|
+
- Split upload toolbar from PrinterGridView
|
|
63
|
+
- Remove bulk gcode feature - does not fit the overall design anymore
|
|
64
|
+
- Clean up TopBar
|
|
65
|
+
- Rename backend group service to tag service
|
|
66
|
+
- Indicate on printer create that we're creating a printer on a floor
|
|
67
|
+
- Add tooltips to NavBar
|
|
68
|
+
- Share Discord and GitHub buttons as component across pages
|
|
69
|
+
- Share YAML Import summary for First Time Setup and YAML import dialog
|
|
20
70
|
|
|
21
71
|
## Client 0.0.27
|
|
22
72
|
|
|
Binary file
|