Skip to content

Commit 638f6c1

Browse files
committed
Merge branch 'develop'
Signed-off-by: Pedro Lamas <[email protected]>
2 parents 048127f + 8d64261 commit 638f6c1

File tree

17 files changed

+910
-1055
lines changed

17 files changed

+910
-1055
lines changed

package-lock.json

Lines changed: 562 additions & 1003 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@
3232
"main": "index.js",
3333
"dependencies": {
3434
"@ctrl/tinycolor": "^4.1.0",
35-
"@fontsource/raleway": "^5.2.5",
36-
"@fontsource/roboto": "^5.2.5",
35+
"@fontsource/raleway": "^5.2.6",
36+
"@fontsource/roboto": "^5.2.6",
3737
"@irojs/iro-core": "^1.2.1",
3838
"@jaames/iro": "^5.5.2",
39-
"axios": "^1.9.0",
39+
"axios": "^1.10.0",
4040
"consola": "^3.4.2",
41-
"dompurify": "^3.2.5",
41+
"dompurify": "^3.2.6",
4242
"echarts": "^5.6.0",
4343
"echarts-gl": "^2.0.9",
44-
"hls.js": "^1.6.2",
44+
"hls.js": "^1.6.5",
4545
"jwt-decode": "^4.0.0",
4646
"lodash-es": "^4.17.21",
47-
"marked": "^15.0.11",
47+
"marked": "^15.0.12",
4848
"marked-base-url": "^1.1.6",
4949
"md5": "^2.3.0",
5050
"monaco-editor": "^0.52.2",
@@ -55,7 +55,7 @@
5555
"path-browserify": "^1.0.1",
5656
"qr-scanner": "^1.4.2",
5757
"qrcode.vue": "^1.7.0",
58-
"semver": "^7.7.1",
58+
"semver": "^7.7.2",
5959
"shlex": "^2.1.2",
6060
"sortablejs": "^1.15.6",
6161
"uuid": "^11.1.0",
@@ -80,33 +80,33 @@
8080
"@types/jsdom": "^21.1.7",
8181
"@types/lodash-es": "^4.17.12",
8282
"@types/md5": "^2.3.5",
83-
"@types/node": "^22.15.17",
83+
"@types/node": "^22.15.30",
8484
"@types/semver": "^7.7.0",
8585
"@types/sortablejs": "^1.15.8",
8686
"@vitejs/plugin-vue2": "^2.3.3",
8787
"@vue/eslint-config-typescript": "^14.5.0",
8888
"@vue/test-utils": "^1.3.6",
8989
"@vue/tsconfig": "~0.1.3",
90-
"eslint": "^9.26.0",
91-
"eslint-plugin-regexp": "^2.7.0",
90+
"eslint": "^9.29.0",
91+
"eslint-plugin-regexp": "^2.9.0",
9292
"eslint-plugin-vue": "^9.33.0",
9393
"husky": "^9.1.7",
9494
"jsdom": "^26.1.0",
9595
"mockdate": "^3.0.5",
9696
"monaco-vscode-textmate-theme-converter": "^0.1.7",
9797
"neostandard": "^0.12.1",
98-
"rollup": "^4.40.2",
98+
"rollup": "^4.43.0",
9999
"sass": "~1.32.13",
100100
"skott": "^0.35.4",
101101
"standard-version": "^9.5.0",
102102
"typescript": "^5.8.3",
103-
"typescript-eslint": "^8.32.0",
104-
"unplugin-vue-components": "^28.5.0",
103+
"typescript-eslint": "^8.34.0",
104+
"unplugin-vue-components": "^28.7.0",
105105
"vite": "^6.3.5",
106106
"vite-plugin-checker": "^0.9.3",
107107
"vite-plugin-monaco-editor-esm": "^2.0.2",
108108
"vite-plugin-pwa": "^1.0.0",
109-
"vitest": "^3.1.3",
109+
"vitest": "^3.2.3",
110110
"vue-debounce-decorator": "^1.0.1",
111111
"vue-i18n-extract": "^2.0.7",
112112
"vue-template-compiler": "^2.7.16",

public/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,16 @@
147147
"src": "logo_vzbot.svg"
148148
}
149149
},
150+
{
151+
"name": "Z-Bolt",
152+
"color": "#2196F3",
153+
"isDark": true,
154+
"logo": {
155+
"src": "logo_z-bolt.svg",
156+
"dark": "#232323",
157+
"light": "#ffffff"
158+
}
159+
},
150160
{
151161
"name": "ZeroG",
152162
"color": "#e34234",

public/logo_z-bolt.svg

Lines changed: 6 additions & 0 deletions
Loading

server/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,16 @@
139139
"src": "logo_vzbot.svg"
140140
}
141141
},
142+
{
143+
"name": "Z-Bolt",
144+
"color": "#2196F3",
145+
"isDark": true,
146+
"logo": {
147+
"src": "logo_z-bolt.svg",
148+
"dark": "#232323",
149+
"light": "#ffffff"
150+
}
151+
},
142152
{
143153
"name": "ZeroG",
144154
"color": "#e34234",

src/components/settings/macros/MacroCategorySettings.vue

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,14 @@ export default class MacroCategorySettings extends Vue {
144144
}
145145
146146
get macros () {
147+
if (!this.search) {
148+
return this.macrosForCategory
149+
}
150+
151+
const search = this.search.toLowerCase()
152+
147153
return this.macrosForCategory
148-
.filter((macro: Macro) => !this.search ? true : macro.name.includes(this.search.toLowerCase()))
154+
.filter(macro => macro.name.toLowerCase().includes(search))
149155
}
150156
151157
set macros (macros: Macro[]) {

src/components/widgets/spoolman/SpoolSelectionDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
v-model="open"
44
scrollable
55
:max-width="$vuetify.breakpoint.mdAndDown ? '90vw' : '75vw'"
6-
:title="$tc('app.spoolman.title.spool_selection', targetMacro ? 2 : 1, { macro: targetMacro })"
6+
:title="$tc('app.spoolman.title.spool_selection', targetMacro ? 2 : 1, { macro: targetMacro?.toUpperCase() })"
77
title-shadow
88
>
99
<template #menu>

src/components/widgets/spoolman/SpoolmanCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export default class SpoolmanCard extends Mixins(StateMixin) {
255255
256256
return macros
257257
.filter((macro): macro is MacroWithSpoolId => macro.variables != null && 'spool_id' in macro.variables)
258-
.sort((a, b) => a.name.localeCompare(b.name))
258+
.sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()))
259259
}
260260
261261
get remainingFilamentUnit (): SpoolmanRemainingFilamentUnit {

src/components/widgets/toolhead/ToolheadCard.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ export default class ToolheadCard extends Mixins(StateMixin, ToolheadMixin) {
249249
250250
tools.push({
251251
name: loadFilamentMacro.name.toUpperCase(),
252-
label: loadFilamentMacro.name === 'm701' ? 'M701 (Load Filament)' : undefined,
252+
label: loadFilamentMacro.name.toLowerCase() === 'm701' ? 'M701 (Load Filament)' : undefined,
253253
icon: '$loadFilament',
254254
disabled: !(ignoreMinExtrudeTemp || this.extruderReady)
255255
})
@@ -262,7 +262,7 @@ export default class ToolheadCard extends Mixins(StateMixin, ToolheadMixin) {
262262
263263
tools.push({
264264
name: unloadFilamentMacro.name.toUpperCase(),
265-
label: unloadFilamentMacro.name === 'm702' ? 'M702 (Unload Filament)' : undefined,
265+
label: unloadFilamentMacro.name.toLowerCase() === 'm702' ? 'M702 (Unload Filament)' : undefined,
266266
icon: '$unloadFilament',
267267
disabled: !(ignoreMinExtrudeTemp || this.extruderReady)
268268
})
@@ -273,7 +273,7 @@ export default class ToolheadCard extends Mixins(StateMixin, ToolheadMixin) {
273273
if (cleanNozzleMacro) {
274274
tools.push({
275275
name: cleanNozzleMacro.name.toUpperCase(),
276-
label: cleanNozzleMacro.name === 'g12' ? 'G12 (Clean the Nozzle)' : undefined,
276+
label: cleanNozzleMacro.name.toLowerCase() === 'g12' ? 'G12 (Clean the Nozzle)' : undefined,
277277
icon: '$cleanNozzle'
278278
})
279279
}

0 commit comments

Comments
 (0)