smoosic 1.0.37 → 1.0.39

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 (38) 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/smoosic.js +89 -29
  6. package/release/styles/dialogs.css +4 -0
  7. package/src/application/exports.ts +4 -4
  8. package/src/render/audio/musicCursor.ts +1 -1
  9. package/src/render/sui/NoteEntryCaret.ts +4 -1
  10. package/src/render/sui/formatter.ts +3 -3
  11. package/src/render/sui/mapper.ts +1 -1
  12. package/src/render/sui/scoreView.ts +4 -4
  13. package/src/render/sui/scoreViewOperations.ts +10 -10
  14. package/src/render/sui/textEdit.ts +3 -1
  15. package/src/render/vex/vxMeasure.ts +12 -6
  16. package/src/smo/data/measure.ts +37 -37
  17. package/src/smo/data/measureModifiers.ts +106 -71
  18. package/src/smo/data/note.ts +4 -1
  19. package/src/smo/data/score.ts +50 -11
  20. package/src/smo/data/systemStaff.ts +2 -2
  21. package/src/smo/midi/midiToSmo.ts +28 -29
  22. package/src/smo/midi/smoToMidi.ts +3 -3
  23. package/src/smo/mxml/smoToXml.ts +11 -11
  24. package/src/smo/mxml/xmlState.ts +3 -3
  25. package/src/smo/mxml/xmlToSmo.ts +9 -9
  26. package/src/smo/xform/copypaste.ts +3 -3
  27. package/src/smo/xform/operations.ts +9 -6
  28. package/src/smo/xform/tickDuration.ts +10 -2
  29. package/src/styles/dialogs.css +4 -0
  30. package/src/ui/buttons/display.ts +2 -2
  31. package/src/ui/buttons/ribbon.ts +2 -2
  32. package/src/ui/components/dialogs/timeSignature.vue +223 -0
  33. package/src/ui/dialogs/fileDialogs.ts +1 -1
  34. package/src/ui/dialogs/keySignature.ts +1 -1
  35. package/src/ui/dialogs/tempo.ts +38 -38
  36. package/src/ui/dialogs/timeSignature.ts +45 -116
  37. package/src/ui/menus/timeSignature.ts +2 -2
  38. package/tools/smoosic-schema.json +4 -4
package/changes.md CHANGED
@@ -1,9 +1,17 @@
1
- <sub>[Github site](https://github.com/AaronDavidNewman/smoosic) | [source documentation](https://aarondavidnewman.github.io/Smoosic/release/docs/modules.html) | [change notes](https://aarondavidnewman.github.io/Smoosic/changes.html) | [application](https://aarondavidnewman.github.io/Smoosic/release/html/smoosic.html)<sub>
1
+ <sub>[Github site](https://github.com/smoosic) | [change notes](https://smoosic.github.io//Smoosic/changes.html) | [application](https://smoosic.github.io//Smoosic/release/html/smoosic.html)<sub>
2
2
 
3
3
 
4
4
  ## Changes to Smoosic
5
5
  This is a completely new Github repository dedicated to Smoosic, optmized for collaboration and feedback. Now that the application itself is generally functional, I'd like to pull the open source community in a bit.
6
6
 
7
+ ### April 8, 2026
8
+ Two major new features:
9
+ * mouse-note entry - create notes using the mouse, ala MuseScore.
10
+ * horizontal layout (continuous scroll) - non-paged view of your score.
11
+
12
+ #### Breaking changes:
13
+ New DOM structure. Only domContainer parameter for application mode is required. It can be a string ID or an element. Older versions required a more complicated DOM structure.
14
+
7
15
  ### October, 2024
8
16
  Thanks to [Nenad Strangar](https://github.com/strangarnenad) we now have nested tuplets!
9
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smoosic",
3
- "version": "1.0.37",
3
+ "version": "1.0.39",
4
4
  "devDependencies": {
5
5
  "copy-webpack-plugin": "^12.0.2",
6
6
  "jquery": "^3.6.0",