diff --git a/components/cards/LazyListBookCard.vue b/components/cards/LazyListBookCard.vue index a3d83824..fc3a1d38 100644 --- a/components/cards/LazyListBookCard.vue +++ b/components/cards/LazyListBookCard.vue @@ -31,7 +31,7 @@
- download_done + download_done
diff --git a/components/home/BookshelfNavBar.vue b/components/home/BookshelfNavBar.vue index 65998bb9..1bfb4b8d 100644 --- a/components/home/BookshelfNavBar.vue +++ b/components/home/BookshelfNavBar.vue @@ -119,6 +119,7 @@ export default { routeName: 'bookshelf-playlists', iconPack: 'material-symbols', icon: 'queue_music', + iconClass: 'text-2xl', text: this.$strings.ButtonPlaylists }) } diff --git a/components/tables/collection/BookTableRow.vue b/components/tables/collection/BookTableRow.vue index 067006d1..98289835 100644 --- a/components/tables/collection/BookTableRow.vue +++ b/components/tables/collection/BookTableRow.vue @@ -13,7 +13,7 @@
diff --git a/components/tables/playlist/ItemTableRow.vue b/components/tables/playlist/ItemTableRow.vue index a6041c88..13f6faa0 100644 --- a/components/tables/playlist/ItemTableRow.vue +++ b/components/tables/playlist/ItemTableRow.vue @@ -14,7 +14,7 @@
-
- {{ streamIsPlaying ? 'pause' : 'play_arrow' }} - + +
+ + {{ streamIsPlaying ? 'pause' : 'play_arrow' }} + +

{{ timeRemaining }}

- + + - -
- audio_file - {{ downloadItem || startingDownload ? 'downloading' : 'download' }} - download_done + +
+ audio_file + + {{ downloadItem || startingDownload ? 'downloading' : 'download' }} + + download_done
+
diff --git a/components/tables/podcast/LatestEpisodeRow.vue b/components/tables/podcast/LatestEpisodeRow.vue index 4d36bda9..b5d5591e 100644 --- a/components/tables/podcast/LatestEpisodeRow.vue +++ b/components/tables/podcast/LatestEpisodeRow.vue @@ -27,26 +27,35 @@
-
- {{ streamIsPlaying ? 'pause' : 'play_arrow' }} - + +
+ + {{ streamIsPlaying ? 'pause' : 'play_arrow' }} + +

{{ timeRemaining }}

- + + - -
- audio_file - {{ downloadItem || pendingDownload ? 'downloading' : 'download' }} - download_done + +
+ audio_file + + {{ downloadItem || pendingDownload ? 'downloading' : 'download' }} + + download_done
+
diff --git a/components/ui/IconBtn.vue b/components/ui/IconBtn.vue index a967f98b..e9ca4451 100644 --- a/components/ui/IconBtn.vue +++ b/components/ui/IconBtn.vue @@ -5,7 +5,7 @@
- {{ icon }} + {{ icon }} diff --git a/pages/collection/_id.vue b/pages/collection/_id.vue index c06cf5ab..9f371c66 100644 --- a/pages/collection/_id.vue +++ b/pages/collection/_id.vue @@ -13,7 +13,7 @@
- {{ playerIsPlaying ? 'pause' : 'play_arrow' }} + {{ playerIsPlaying ? 'pause' : 'play_arrow' }} {{ playerIsPlaying ? $strings.ButtonPause : $strings.ButtonPlay }}
diff --git a/pages/item/_id/_episode/index.vue b/pages/item/_id/_episode/index.vue index 662b8735..e560e45f 100644 --- a/pages/item/_id/_episode/index.vue +++ b/pages/item/_id/_episode/index.vue @@ -30,14 +30,14 @@
- {{ playerIsPlaying ? 'pause' : 'play_arrow' }} + {{ playerIsPlaying ? 'pause' : 'play_arrow' }} {{ playerIsPlaying ? $strings.ButtonPause : localEpisodeId ? $strings.ButtonPlay : $strings.ButtonStream }} - {{ downloadItem || startingDownload ? 'downloading' : 'download' }} + {{ downloadItem || startingDownload ? 'downloading' : 'download' }} - more_vert + more_vert
diff --git a/pages/item/_id/index.vue b/pages/item/_id/index.vue index 9cd04fac..a0264a5c 100644 --- a/pages/item/_id/index.vue +++ b/pages/item/_id/index.vue @@ -51,18 +51,18 @@
- {{ playerIsPlaying ? 'pause' : 'play_arrow' }} + {{ playerIsPlaying ? 'pause' : 'play_arrow' }} {{ playerIsPlaying ? $strings.ButtonPause : isPodcast ? $strings.ButtonNextEpisode : hasLocal ? $strings.ButtonPlay : $strings.ButtonStream }} - auto_stories + auto_stories {{ $strings.ButtonRead }} {{ ebookFormat }} - {{ downloadItem || startingDownload ? 'downloading' : 'download' }} + {{ downloadItem || startingDownload ? 'downloading' : 'download' }} - more_vert + more_vert
diff --git a/pages/media/_id/history.vue b/pages/media/_id/history.vue index 82a19eac..d63b7b66 100644 --- a/pages/media/_id/history.vue +++ b/pages/media/_id/history.vue @@ -10,7 +10,7 @@

{{ name }}

{{ $formatDate(evt.timestamp, 'HH:mm') }}

- {{ getEventIcon(evt.name) }} + {{ getEventIcon(evt.name) }}

{{ evt.name }}

cloud_done @@ -150,9 +150,9 @@ export default { getEventIcon(name) { switch (name) { case 'Play': - return 'play_circle_filled' + return 'play_circle' case 'Pause': - return 'pause_circle_filled' + return 'pause_circle' case 'Stop': return 'stop_circle' case 'Save': diff --git a/pages/playlist/_id.vue b/pages/playlist/_id.vue index ca68c184..6f84cc8b 100644 --- a/pages/playlist/_id.vue +++ b/pages/playlist/_id.vue @@ -11,7 +11,7 @@
- {{ playerIsPlaying ? 'pause' : 'play_arrow' }} + {{ playerIsPlaying ? 'pause' : 'play_arrow' }} {{ playerIsPlaying ? $strings.ButtonPause : $strings.ButtonPlay }}