Re-enable negative chart levels
This commit is contained in:
parent
84b8e0358f
commit
8aaace30a5
@ -1,6 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## v1.0.0
|
## v1.0.0-rc.2
|
||||||
|
- **Changed**
|
||||||
|
- In the chart object, `level` can now be negative, it was mistakenly restricted to being positive in `v1.0.0-rc.1` as a part of turning it into a decimal value
|
||||||
|
- **Schema bugs**
|
||||||
|
- `#/$defs/positiveDecimal` allowed for negative number literals, not anymore
|
||||||
|
|
||||||
|
## v1.0.0-rc.1
|
||||||
- **Added**
|
- **Added**
|
||||||
- Symbolic times such as `t` and `l` in notes can also now be expressed as a tuple of 3 ints representing a mixed number
|
- Symbolic times such as `t` and `l` in notes can also now be expressed as a tuple of 3 ints representing a mixed number
|
||||||
- Decimal numbers such as the offset or the bpm can now also be stored as strings to make it easier to preserve clean decimal notations
|
- Decimal numbers such as the offset or the bpm can now also be stored as strings to make it easier to preserve clean decimal notations
|
||||||
|
@ -67,7 +67,7 @@
|
|||||||
"properties": {
|
"properties": {
|
||||||
"level": {
|
"level": {
|
||||||
"description": "Level rating of the chart, typically goes from 1 to 10.9 in jubeat",
|
"description": "Level rating of the chart, typically goes from 1 to 10.9 in jubeat",
|
||||||
"$ref": "#/$defs/positiveDecimal"
|
"$ref": "#/$defs/decimal"
|
||||||
},
|
},
|
||||||
"resolution": {
|
"resolution": {
|
||||||
"description": "Number of ticks in a beat for the notes",
|
"description": "Number of ticks in a beat for the notes",
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"version": "1.0.0",
|
||||||
|
"data": {
|
||||||
|
"a": {
|
||||||
|
"level": -5,
|
||||||
|
"notes": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"version": "1.0.0",
|
||||||
|
"data": {
|
||||||
|
"a": {
|
||||||
|
"level": "-0.0",
|
||||||
|
"notes": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user