Skip to content

Commit e0b110e

Browse files
committed
Merge branch 'develop'
Signed-off-by: Pedro Lamas <[email protected]>
2 parents e17b3de + d381e10 commit e0b110e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1435
-849
lines changed

.github/copilot-instructions.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ npm run test # Vitest unit tests
8787
## Code Style
8888
- Vue class-style components with `vue-property-decorator`
8989
- ESLint enforced: neostandard + Vue 2 rules and further rules defined in 'eslint.config.mjs'
90+
- .editorconfig rules must be enforced (2 spaces, LF line endings, UTF-8, trim trailing whitespace)
9091
- camelCase for variables/methods, PascalCase for components
9192
- Use `consola` for logging, not `console.log`
9293
- Type imports: `import type { ... }` for types only
@@ -96,3 +97,8 @@ npm run test # Vitest unit tests
9697
- WebSocket reconnection handled automatically by `socketClient.ts`
9798
- File uploads use FormData with progress tracking in store
9899
- Dynamic imports for code splitting (see `vue-echarts-chunk.ts`)
100+
101+
## Communication Style
102+
- Be extremely concise in responses
103+
- Sacrifice grammar for brevity
104+
- Focus on essential info only

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ jobs:
127127
cache-to: type=gha,mode=max
128128
tags: ${{ steps.docker_meta.outputs.tags }}
129129
labels: ${{ steps.docker_meta.outputs.labels }}
130+
annotations: ${{ steps.docker_meta.outputs.annotations }}
130131

131132
- name: Attest Docker image
132133
uses: actions/attest-build-provenance@v2

docs/features/macros.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,33 @@ where you can select the category your macro will be in as well as change the co
2121

2222
![screenshot](/assets/images/macros2.png)
2323
![screenshot](/assets/images/macros1.png)
24+
25+
## Tool Card Macros
26+
27+
If any of the following macros are found, they will automatically appear in the Tool card's Tools dropdown menu:
28+
29+
**Load Filament:**
30+
31+
- LOAD_FILAMENT
32+
- FILAMENT_LOAD
33+
- M701
34+
35+
**Unload Filament:**
36+
37+
- UNLOAD_FILAMENT
38+
- FILAMENT_UNLOAD
39+
- M702
40+
41+
**Clean Nozzle:**
42+
43+
- CLEAN_NOZZLE
44+
- NOZZLE_CLEAN
45+
- WIPE_NOZZLE
46+
- NOZZLE_WIPE
47+
- G12
48+
49+
**Park Toolhead:**
50+
51+
- PARK_TOOLHEAD
52+
- TOOLHEAD_PARK
53+
- G27

0 commit comments

Comments
 (0)