diff --git a/package.json b/package.json index bb4225eff..debf4f053 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "duetwebcontrol", - "version": "3.5.3-rc.1", + "version": "3.5.3", "author": "Christian Hammacher (https://www.duet3d.com)", "homepage": "https://forum.duet3d.com/category/27/duet-web-control", "license": "GPL-3.0", diff --git a/src/plugins/imports.ts b/src/plugins/imports.ts index aba13d295..b927bb8b5 100644 --- a/src/plugins/imports.ts +++ b/src/plugins/imports.ts @@ -9,7 +9,7 @@ export default initCollection(DwcPlugin, [ id: "GCodeViewer", name: "G-Code Viewer", author: "Juan Rosario", - version: "3.5.3-rc.1", + version: "3.5.3", loadDwcResources: () => import( /* webpackChunkName: "GCodeViewer" */ "./GCodeViewer/index" @@ -19,7 +19,7 @@ export default initCollection(DwcPlugin, [ id: "HeightMap", name: "Height Map", author: "Duet3D Ltd", - version: "3.5.3-rc.1", + version: "3.5.3", loadDwcResources: () => import( /* webpackChunkName: "HeightMap" */ "./HeightMap/index" @@ -29,7 +29,7 @@ export default initCollection(DwcPlugin, [ id: "InputShaping", name: "Input Shaping", author: "Duet3D Ltd", - version: "3.5.3-rc.1", + version: "3.5.3", loadDwcResources: () => import( /* webpackChunkName: "InputShaping" */ "./InputShaping/index" @@ -39,7 +39,7 @@ export default initCollection(DwcPlugin, [ id: "ObjectModelBrowser", name: "Object Model Browser", author: "Duet3D Ltd", - version: "3.5.3-rc.1", + version: "3.5.3", loadDwcResources: () => import( /* webpackChunkName: "ObjectModelBrowser" */ "./ObjectModelBrowser/index" @@ -49,7 +49,7 @@ export default initCollection(DwcPlugin, [ id: "OnScreenKeyboard", name: "On-Screen Keyboard", author: "Duet3D Ltd", - version: "3.5.3-rc.1", + version: "3.5.3", loadDwcResources: () => import( /* webpackChunkName: "OnScreenKeyboard" */ "./OnScreenKeyboard/index" diff --git a/vue.config.js b/vue.config.js index cfa708147..9289402a9 100644 --- a/vue.config.js +++ b/vue.config.js @@ -18,6 +18,11 @@ module.exports = { removeAvailableModules: false, splitChunks: { cacheGroups: { + babylon: { + test: /babylonjs/, + name: "babylon", + chunks: "all" + }, monacoEditor: { test: /[\\/]node_modules[\\/]monaco-editor/, name: "monaco-editor",