Release Profectus 0.7.0
This commit is contained in:
parent
67ca253f5c
commit
2d880a215a
3 changed files with 21 additions and 3 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -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
4
package-lock.json
generated
|
@ -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",
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Loading…
Reference in a new issue