diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cd6dc311a7f894c8c6b1173c743bb32cfba818a..7c80b488a4ec8233b49d3b9a57e72a98775fefd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ ### Fixed - Player: Display correct position while seeking [#124](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/124) @onny +- Fix app description, added more screenshots + [#102](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/102) @onny ### Changed - Use mappers for store diff --git a/README.md b/README.md index 032e7dda03d3cdbd7f0761b123605d0ce5619f65..e63cdb3204a5c4bfd1a7a79d94c29923dc297a88 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Browse, listen and subscribe to podcasts inside of Nextcloud. The podcast app uses the directory [fyyd.de](https://fyyd.de) as a source. -[](https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/screenshot.png) +[](https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/dist/screenshot1.png) ## Features @@ -42,8 +42,7 @@ Mount or move the ``podcast`` folder into your Nextcloud ``apps/`` directory. Go Can be easily tested using Docker: ``` -docker build -t nextcloud https://git.project-insanity.org/onny/docker-nextcloud.git -docker run -v /tmp/nextcloud-app-podcast:/opt/nextcloud/apps/podcast -d --name nextcloud-app-podcast -p 80:80 nextcloud +docker run -v /tmp/nextcloud-app-podcast:/opt/nextcloud/apps/podcast -d --name nextcloud-app-podcast -p 80:80 rootlogin/nextcloud:20.0.6 ``` First part of -v is the path to the cloned and compiled or downloaded Nextcloud Podcast app. Debug running container it with: ``` diff --git a/appinfo/info.xml b/appinfo/info.xml index 4e308939dcfc090be6ac32898336f4c6ef13935a..8105e44de7e57888e346ddb6e2675b847396d37c 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -26,6 +26,7 @@ <screenshot small-thumbnail="https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/dist/screenshot-thumbnail2.jpg">https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/dist/screenshot2.png</screenshot> <screenshot small-thumbnail="https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/dist/screenshot-thumbnail3.jpg">https://git.project-insanity.org/onny/nextcloud-app-podcast/raw/master/dist/screenshot3.png</screenshot> <dependencies> + <php min-version="7.4" max-version="7.4" /> <nextcloud min-version="20" max-version="20"/> </dependencies> <navigations> diff --git a/src/services/Player.js b/src/services/Player.js index 458f692614bcfb696f3b1e3bc162142df3a1908e..2d566de07fa1210df39acc16cc4761558db4bcfe 100644 --- a/src/services/Player.js +++ b/src/services/Player.js @@ -30,8 +30,6 @@ export class Player { doPlay(src) { - console.log('start playing') - if (audioPlayer !== null) { audioPlayer.fade(store.state.player.volume, 0, 500) Howler.unload() diff --git a/src/store/player.js b/src/store/player.js index fc2aa0366de1717adc0d8afa6b80026b7354423b..3463d1a793ac88269e0e5b353b088bb426a3fd0d 100644 --- a/src/store/player.js +++ b/src/store/player.js @@ -29,7 +29,7 @@ export default { isBuffering: false, isMute: false, isPaused: false, - volume: localStorage.getItem('podcast.volume') || 0.5, + volume: parseFloat(localStorage.getItem('podcast.volume')) || 0.5, oldVolume: null, title: '', image: '',