Release Profectus 0.7.0

This commit is contained in:
thepaperpilot 2024-12-26 16:41:12 -06:00 committed by thepaperpilot
parent 67ca253f5c
commit 2d880a215a
3 changed files with 21 additions and 3 deletions

View file

@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.7.0] - 2024-12-31
### Additions
- Added modal to take a mental health break (can be disabled via projInfo.json)
### Changes
- **BREAKING** Replaced Board feature with generic Board system
- **BREAKING** Rewrote how features are written, simplifying them greatly
- **BREAKING** Replaced decorators with mixins and wrappers
- **BREAKING** Moved modals to `src/components/modals`
- **BREAKING** Updated a very large amount of dependencies, making any necessary adjustments
- **BREAKING** Removed Grid component
### Fixes
- Hotkey descriptions were not being wrapped in `unref`
- Links wouldn't check if the end node existed when determining valid links
Contributors: thepaperpilot
## [0.6.2] - 2024-04-01 ## [0.6.2] - 2024-04-01
### Added ### Added
- Export save button in error boundaries - Export save button in error boundaries

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "profectus", "name": "profectus",
"version": "0.6.2", "version": "0.7.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "profectus", "name": "profectus",
"version": "0.6.2", "version": "0.7.0",
"dependencies": { "dependencies": {
"@fontsource/material-icons": "^5.1.0", "@fontsource/material-icons": "^5.1.0",
"@fontsource/roboto-mono": "^5.1.0", "@fontsource/roboto-mono": "^5.1.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "profectus", "name": "profectus",
"version": "0.6.2", "version": "0.7.0",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {