smoosic 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/build/smoosic.js +22 -33
- package/package.json +4 -4
- package/release/smoosic.js +22 -33
- package/release/styles/images/logo.png +0 -0
- package/release/styles/images/logo_small.png +0 -0
- package/src/application/exports.ts +1 -3
- package/src/render/sui/formatter.ts +2 -1
- package/src/render/sui/scoreRender.ts +18 -4
- package/src/render/sui/scoreView.ts +19 -13
- package/src/render/sui/scoreViewOperations.ts +39 -34
- package/src/render/sui/tracker.ts +34 -29
- package/src/render/vex/vxMeasure.ts +7 -2
- package/src/render/vex/vxNote.ts +16 -1
- package/src/render/vex/vxSystem.ts +2 -1
- package/src/smo/data/music.ts +1 -1
- package/src/smo/data/score.ts +21 -3
- package/src/smo/data/scoreModifiers.ts +11 -4
- package/src/smo/data/systemStaff.ts +39 -6
- package/src/smo/data/tuplet.ts +4 -0
- package/src/smo/xform/copypaste.ts +143 -49
- package/src/smo/xform/tickDuration.ts +4 -0
- package/src/smo/xform/tickMap.ts +1 -28
- package/src/smo/xform/undo.ts +1 -1
- package/src/styles/images/logo.PNG +0 -0
- package/src/styles/images/logo_small.png +0 -0
- package/src/ui/dialogs/dynamics.ts +25 -10
- package/src/ui/dialogs/preferences.ts +11 -0
- package/src/ui/menus/manager.ts +1 -3
- package/src/ui/menus/text.ts +6 -4
- package/typedoc.ts +0 -1
- package/src/styles/images/logo.png +0 -0
- package/src/ui/menus/dynamics.ts +0 -61
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Smoosic is highly dependent on the [Vexflow engraving library](https://github.co
|
|
|
17
17
|
|
|
18
18
|
See [changes](https://smoosic.github.io/Smoosic/changes.md) for changes, updates, initiatives etc.
|
|
19
19
|
|
|
20
|
-
There is a [demo application](https://smoosic.github.io/Smoosic/release/html/smoosic.html) that you can play around with that
|
|
20
|
+
There is a [demo application](https://smoosic.github.io/Smoosic/release/html/smoosic.html) that you can play around with that show the capabilities.
|
|
21
21
|
|
|
22
22
|
## What's new in Smoosic?
|
|
23
23
|
This is a completely new Github project. It contains 5 repositories (so far):
|