diff --git a/build/linuxpackager b/build/linuxpackager index a43d4ed1..5f03a2e8 100755 --- a/build/linuxpackager +++ b/build/linuxpackager @@ -50,9 +50,8 @@ echo "$controlfile" > dist/debian/DEBIAN/control; # Package debian pkg -t node18-linux-x64 -o dist/debian/usr/share/audiobookshelf/audiobookshelf . -fakeroot dpkg-deb --build dist/debian +fakeroot dpkg-deb -Zxz --build dist/debian mv dist/debian.deb "dist/$OUTPUT_FILE" -chmod +x "dist/$OUTPUT_FILE" echo "Finished! Filename: $OUTPUT_FILE" diff --git a/client/assets/app.css b/client/assets/app.css index 1a83dc1c..2e0714f9 100644 --- a/client/assets/app.css +++ b/client/assets/app.css @@ -217,36 +217,6 @@ Bookshelf Label filter: blur(20px); } - -.episode-subtitle { - word-break: break-word; - overflow: hidden; - text-overflow: ellipsis; - display: -webkit-box; - line-height: 16px; - /* fallback */ - max-height: 32px; - /* fallback */ - -webkit-line-clamp: 2; - /* number of lines to show */ - -webkit-box-orient: vertical; -} - -.episode-subtitle-long { - word-break: break-word; - overflow: hidden; - text-overflow: ellipsis; - display: -webkit-box; - line-height: 16px; - /* fallback */ - max-height: 72px; - /* fallback */ - -webkit-line-clamp: 6; - /* number of lines to show */ - -webkit-box-orient: vertical; -} - - /* Padding for toastification toasts in the top right to not cover appbar/toolbar */ .app-bar-and-toolbar .Vue-Toastification__container.top-right { padding-top: 104px; diff --git a/client/components/app/StreamContainer.vue b/client/components/app/MediaPlayerContainer.vue similarity index 95% rename from client/components/app/StreamContainer.vue rename to client/components/app/MediaPlayerContainer.vue index 0cae1421..120231dc 100644 --- a/client/components/app/StreamContainer.vue +++ b/client/components/app/MediaPlayerContainer.vue @@ -1,5 +1,5 @@