Skip to content

Commit

Permalink
built version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MJochim committed Nov 6, 2022
1 parent 96a515a commit 0deefe6
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 8 deletions.
File renamed without changes.
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# What's New

## Version 1.5.0

### new features / performance tweaks / improvements

- Updated a few dependencies

### bug fixes

- Correction tool now works correctly when `Start_Time` of SSFF track is not 0
- When `Start_Time` is not 0, the part of the SSFF track in the left part of the viewport was not displayed
- Fixed schema validation error (#315)
- The schema for `signalCanvases` does not allow additional properties anymore
- Some new features were not reflected in `emuwebappConfigSchema`

## Version 1.4.0

### new features / performance tweaks / improvements
Expand Down
10 changes: 5 additions & 5 deletions dist/emuwebapp.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion schemaFiles/DBconfigFileSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
}
}
},
"EMUwebAppConfig": { "$ref": "https://raw.githubusercontent.com/IPS-LMU/EMU-webApp/master/app/schemaFiles/emuwebappConfigSchema.json"}
"EMUwebAppConfig": { "$ref": "emuwebappConfigSchema.json"}
},
"required": ["name", "UUID", "mediafileExtension", "ssffTrackDefinitions", "levelDefinitions", "linkDefinitions", "EMUwebAppConfig"],
"additionalProperties": false
Expand Down
2 changes: 1 addition & 1 deletion schemaFiles/bundleSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"additionalProperties": false
},
"annotation": {
"$ref": "schemaFiles/annotationFileSchema.json"
"$ref": "annotationFileSchema.json"
},
"ssffFiles": {
"type": "array",
Expand Down
24 changes: 23 additions & 1 deletion schemaFiles/emuwebappConfigSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,28 @@
"additionalProperties": false
}
},
"minMaxValLims": {
"type": "array",
"items": {
"type": "object",
"properties": {
"ssffTrackName": {
"type": "string"
},
"minVal": {
"type": "number"
},
"maxVal": {
"type": "number"
},
"unit": {
"type": "string"
}
},
"required": ["ssffTrackName", "minVal", "maxVal"],
"additionalProperties": false
}
},
"horizontalLines": {
"type": "array",
"items": {
Expand Down Expand Up @@ -314,7 +336,7 @@
}
},
"required": ["order", "assign", "contourLims"],
"additionalProperties": true
"additionalProperties": false
},
"hierarchyPathCanvases": {
"type": "object",
Expand Down

0 comments on commit 0deefe6

Please sign in to comment.