@tspro/web-music-score 1.0.0 → 2.0.0
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/CHANGELOG.md +19 -0
- package/README.md +271 -224
- package/dist/audio/index.d.mts +22 -0
- package/dist/audio/index.d.ts +22 -0
- package/dist/audio/index.js +147 -0
- package/dist/audio/index.mjs +109 -0
- package/dist/audio-cg/index.d.mts +4 -0
- package/dist/audio-cg/index.d.ts +4 -0
- package/dist/audio-cg/index.js +124 -0
- package/dist/audio-cg/index.mjs +91 -0
- package/dist/chunk-2EPWQZKJ.mjs +9 -0
- package/dist/core/index.d.mts +21 -0
- package/dist/core/index.d.ts +21 -0
- package/dist/core/index.js +72 -0
- package/dist/core/index.mjs +45 -0
- package/dist/guitar-BIFwFT31.d.ts +24 -0
- package/dist/guitar-kbJYu3Am.d.mts +24 -0
- package/dist/iife/index.global.js +222 -0
- package/dist/note-B5ZtlHc8.d.ts +99 -0
- package/dist/note-CraqEy8x.d.mts +99 -0
- package/dist/pieces/index.d.mts +15 -0
- package/dist/pieces/index.d.ts +15 -0
- package/dist/pieces/index.js +104 -0
- package/dist/pieces/index.mjs +77 -0
- package/dist/react-ui/index.d.mts +169 -0
- package/dist/react-ui/index.d.ts +169 -0
- package/dist/react-ui/index.js +624 -0
- package/dist/react-ui/index.mjs +582 -0
- package/dist/score/index.d.mts +1558 -0
- package/dist/score/index.d.ts +1558 -0
- package/dist/score/index.js +6937 -0
- package/dist/score/index.mjs +6863 -0
- package/dist/tempo--588tdcv.d.ts +203 -0
- package/dist/tempo-BEJBHZ5I.d.mts +203 -0
- package/dist/theory/index.d.mts +47 -0
- package/dist/theory/index.d.ts +47 -0
- package/dist/theory/index.js +1783 -0
- package/dist/theory/index.mjs +1716 -0
- package/package.json +99 -56
- package/dist/index.cjs.js +0 -40708
- package/dist/index.d.ts +0 -1258
- package/dist/index.esm.mjs +0 -40699
- package/dist/index.umd.min.js +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.0] - 2025-07-28
|
|
4
|
+
Major update and brought many changes.
|
|
5
|
+
### ** Breaking Changes **
|
|
6
|
+
- Use subpath modules. There is no main export.
|
|
7
|
+
- Refactored musical terms that were wrong (e.g. pitch => diatonicId, noteId => chromaticId).
|
|
8
|
+
- Score module stayed mostly same. Some changes (e.g. enum StaffKind => StaffPreset) but nothing major.
|
|
9
|
+
- Classical guitar audio was put into separate module (audio-cg) because it bundles over 1MB of audio
|
|
10
|
+
samples. Also improved default synthesizer audio.
|
|
11
|
+
- Numerous other unlisted changes/improvements/fixes.
|
|
12
|
+
|
|
13
|
+
## [1.1.0] - 2025-07-03
|
|
14
|
+
### Added
|
|
15
|
+
- Preliminary support for rendering guitar tabs.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Ties/slurs were created multiple times.
|
|
19
|
+
- Beams in first measure (upbeat) were not created correctly.
|
|
20
|
+
- Quite much refactoring for better code.
|
|
21
|
+
|
|
3
22
|
## [1.0.0] - 2025-07-03
|
|
4
23
|
### Added
|
|
5
24
|
- First release.
|