diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ca605a6..bf202f3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased +### Changed + +- Switched from a CJS to ESM build in vite. CJS build is deprecated. See https://vitejs.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated for more info. + ## [4.18.0] - 2024-06-16 ### Added @@ -26,6 +30,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Snackbar message when profile is loaded now tells you if already connected port matches the one specified in the profile. - Active profile name is updated when the app state is saved to a profile. +### Fixes + +- Fixes bug present in v4.17.x where the app would crash relatively often when navigating back to the terminal view from the settings view. This was due to some tooltips containing buttons that were sometimes disabled, without a wrapper div around them. + ## [4.17.1] - 2024-06-11 ### Changed diff --git a/package.json b/package.json index 0fb733a8..9a2197a3 100644 --- a/package.json +++ b/package.json @@ -88,5 +88,6 @@ "vite-plugin-checker": "^0.6.4", "vite-plugin-pwa": "^0.20.0", "vitest": "^1.6.0" - } + }, + "type": "module" } diff --git a/postcss.config.js b/postcss.config.cjs similarity index 100% rename from postcss.config.js rename to postcss.config.cjs