From f23541f3a689dda0004b089842b56207437ac698 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Tue, 10 May 2022 23:54:16 -0500 Subject: [PATCH] Version Bump --- CHANGELOG.md | 26 +++++++++++++++++++++++++- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07279d7..eaa6d83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.4] - 2022-05-01 +## [0.4.1] - 2022-05-10 +### Added +- findFeatures can now accept multiple feature types +- excludeFeatures can now be used to find features with a feature type _blacklist_ +- All the icons in the saves manager now have tooltips +### Changed +- All touch events that can be passive now are +- Layers' style and classes attributes are now applied to the tab element rather than the layer-tab +- Saving now always uses lz-string, and saveEncoding has been renamed to exportEncoding + - The property will now only affect exports, and defaults to base64 so exports can be shared in more places without issues +- Buyables can now have their onClick/purchase function overwritten +### Fixed +- Arrays in player were not being wrapped in proxies for things like NaN detection +- Error when switching between saves with different layers +- Links would sometimes error from trying to use nodes that were removed earlier that frame +- createModifierSection would require modifiers to have revert and enabled properties despite not using them +- Tab buttons would not use the style property if it was a ref +- Typings on the Board vue component were incorrect +- Offline time would always show, if offlineLimit is set to 0 +- Buyables will now call onPurchase() when cost and/or resource were not set +- Presets dropdown wouldn't deselect the option after creating the save +### Documented +- feature.ts + +## [0.4.0] - 2022-05-01 ### Added - Saves can now be encoded in two new options: plaintext and lz compressed, determined by a new "saveEncoding" property in projInfo - Saves will be loaded in whatever format is detected. The setting only applies when writing saves diff --git a/package-lock.json b/package-lock.json index 8217435..ba0884c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "profectus", - "version": "0.4.0", + "version": "0.4.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "profectus", - "version": "0.4.0", + "version": "0.4.1", "dependencies": { "@pixi/particle-emitter": "^5.0.4", "core-js": "^3.6.5", diff --git a/package.json b/package.json index 0560760..dfd01c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "profectus", - "version": "0.4.0", + "version": "0.4.1", "private": true, "scripts": { "start": "vue-cli-service serve",