Skip to content

Commit

Permalink
Fix #59 update playlists
Browse files Browse the repository at this point in the history
  • Loading branch information
infojunkie committed Jan 13, 2024
1 parent 3f82426 commit 8270e4d
Show file tree
Hide file tree
Showing 7 changed files with 787 additions and 5,969 deletions.
2 changes: 2 additions & 0 deletions demo/web/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Web Demo

**DEPRECATED!** The demo has moved to [MusicXML Player](https://github.com/infojunkie/musicxml-player/tree/main/demo).

Web app to load an iReal Pro playlist from file or `ireal://` URI and display its sheets using [OpenSheetMusicDisplay](https://opensheetmusicdisplay.github.io/) or [Verovio](https://www.verovio.org/index.xhtml).

# Usage
Expand Down
6,744 changes: 780 additions & 5,964 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ireal-musicxml",
"version": "1.11.0",
"version": "1.12.0",
"description": "iReal Pro to MusicXML converter",
"author": "Karim Ratib <[email protected]> (https://github.com/infojunkie)",
"license": "GPL-3.0-only",
Expand Down
2 changes: 1 addition & 1 deletion test/data/blues.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/data/jazz.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/data/pop.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/parser.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('Parser', function() {

it('should parse the iReal Pro Jazz playlist', function() {
const playlist = new Playlist(fs.readFileSync('test/data/jazz.txt', 'utf-8'));
assert.strictEqual(playlist.songs.length, 1399);
assert.strictEqual(playlist.songs.length, 1409);
});

it('should parse the irealbook:// format', function() {
Expand Down

0 comments on commit 8270e4d

Please sign in to comment.