Compare commits

..

No commits in common. "ce1707eb800cd62e64c6d006a0246559bdc61943" and "3979d358d0801c595cd0e1ba80f32becb9c177fb" have entirely different histories.

3 changed files with 3 additions and 21 deletions

View File

@ -1,9 +1,6 @@
.PHONY: all depend css src
.PHONY: all src css
all: depend css src
depend:
patch -d mediaelement-plugins -p1 < patches/mediaelement-plugins/01-playlist.js.diff
all: css src
css:
css/build.sh

View File

@ -1,11 +1,10 @@
{
"name": "myplayer",
"version": "1.0.0",
"type": "module",
"description": "A Web-MP3-Player with Playlist Support",
"main": "src/player.js",
"scripts": {
"test": "npx eslint src/player.js"
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
@ -14,7 +13,6 @@
"author": "tilt <tilt@linuxfoo.de>",
"license": "MIT",
"dependencies": {
"eslint": "^9.14.0",
"minify": "^11.4.1"
}
}

View File

@ -1,13 +0,0 @@
diff --git a/src/playlist/playlist.js b/src/playlist/playlist.js
index 82112fb..fcf4ade 100644
--- a/src/playlist/playlist.js
+++ b/src/playlist/playlist.js
@@ -81,7 +81,7 @@ Object.assign(MediaElementPlayer.prototype, {
player.endedCallback = () => {
if (player.currentPlaylistItem < player.listItems.length) {
- player.setSrc(player.playlist[++player.currentPlaylistItem]);
+ player.setSrc(player.playlist[++player.currentPlaylistItem].src);
player.load();
setTimeout(() => {
player.play();