smoosic 1.0.36 → 1.0.38

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.
Files changed (42) hide show
  1. package/README.md +6 -3
  2. package/build/smoosic.js +89 -29
  3. package/changes.md +9 -1
  4. package/package.json +1 -1
  5. package/release/html/libmode.html +36 -0
  6. package/release/html/smoosic.html +4 -4
  7. package/release/smoosic.js +89 -29
  8. package/release/styles/dialogs.css +25 -18
  9. package/release/styles/general.css +16 -9
  10. package/release/styles/media.css +13 -5
  11. package/release/styles/ribbon.css +3 -0
  12. package/src/application/exports.ts +4 -4
  13. package/src/render/audio/musicCursor.ts +1 -1
  14. package/src/render/sui/NoteEntryCaret.ts +4 -1
  15. package/src/render/sui/formatter.ts +3 -3
  16. package/src/render/sui/mapper.ts +1 -1
  17. package/src/render/sui/scoreView.ts +4 -4
  18. package/src/render/sui/scoreViewOperations.ts +10 -10
  19. package/src/render/sui/textEdit.ts +3 -1
  20. package/src/render/vex/vxMeasure.ts +12 -6
  21. package/src/smo/data/measure.ts +37 -37
  22. package/src/smo/data/measureModifiers.ts +106 -71
  23. package/src/smo/data/note.ts +4 -1
  24. package/src/smo/data/score.ts +50 -11
  25. package/src/smo/data/systemStaff.ts +2 -2
  26. package/src/smo/midi/midiToSmo.ts +28 -29
  27. package/src/smo/midi/smoToMidi.ts +3 -3
  28. package/src/smo/mxml/smoToXml.ts +11 -11
  29. package/src/smo/mxml/xmlState.ts +3 -3
  30. package/src/smo/mxml/xmlToSmo.ts +9 -9
  31. package/src/smo/xform/copypaste.ts +3 -3
  32. package/src/smo/xform/operations.ts +9 -6
  33. package/src/smo/xform/tickDuration.ts +10 -2
  34. package/src/ui/buttons/display.ts +2 -2
  35. package/src/ui/buttons/ribbon.ts +2 -2
  36. package/src/ui/components/dialogs/timeSignature.vue +223 -0
  37. package/src/ui/dialogs/fileDialogs.ts +1 -1
  38. package/src/ui/dialogs/keySignature.ts +1 -1
  39. package/src/ui/dialogs/tempo.ts +38 -38
  40. package/src/ui/dialogs/timeSignature.ts +45 -116
  41. package/src/ui/menus/timeSignature.ts +2 -2
  42. package/tools/smoosic-schema.json +4 -4
package/README.md CHANGED
@@ -20,15 +20,18 @@ See [changes](https://smoosic.github.io/Smoosic/changes.md) for changes, updates
20
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
+ See [change notes](https://smoosic.github.io/Smoosic/changes.html) for latest changes.
24
+
23
25
  This is a completely new Github project. It contains 5 repositories (so far):
24
26
 
27
+ 1. [Demos](https://github.com/Smoosic/Demos) It contains test and demo applications. If you want to use Smoosic as a library in your own applications, you can start here.
28
+ 3. [Smoosic](https://github.com/Smoosic/Smoosic) library is the source code for the application and associated library, and is the main Smoosic project repository.
29
+ 6. [SmoScores](https://github.com/Smoosic/SmoScores) The repository for music written in SMO, or for the SMO application. Scores loaded from the application library come from here. Contributions and fixes to the default library are welcome.
25
30
  1. [vexflow_smoosic](https://github.com/Smoosic/vexflow_smoosic) repository contains the vexflow engraving library described above.
26
31
  2. [SmoSounds](https://github.com/Smoosic/SmoSounds) library contains .mp3 samples used for audio playback.
27
- 3. [Smoosic](https://github.com/Smoosic/Smoosic) library is the source code for the application and associated library, and is the main Smoosic project repository.
28
32
  4. [SmoSchema](https://github.com/Smoosic/SmoSchema) contains the definition of the Serializable Music Objects that Smoosic
29
33
  uses to persist files.
30
- 5. [Demos](https://github.com/Smoosic/Demos) It contains test and demo applications. If you want to use Smoosic as a library in your own applications, you can use this as a model.
31
- 6. [SmoScores](https://github.com/Smoosic/SmoScores) The repository for music written in SMO, or for the SMO application. Contributions and fixes to the default library are welcome.
34
+
32
35
 
33
36
  ## I'd like to help
34
37
  I'd appreciate it! Even if you are not a programmer, if you are interested in music and this project, you can contribute.