Update screenshots for v0.10.3
BIN
docs/_static/screenshots/albums.png
vendored
Before Width: | Height: | Size: 496 KiB After Width: | Height: | Size: 352 KiB |
BIN
docs/_static/screenshots/artists.png
vendored
Before Width: | Height: | Size: 370 KiB After Width: | Height: | Size: 334 KiB |
BIN
docs/_static/screenshots/browse.png
vendored
Before Width: | Height: | Size: 81 KiB After Width: | Height: | Size: 114 KiB |
BIN
docs/_static/screenshots/chromecasts.png
vendored
Before Width: | Height: | Size: 216 KiB After Width: | Height: | Size: 223 KiB |
BIN
docs/_static/screenshots/downloads.png
vendored
Normal file
After Width: | Height: | Size: 246 KiB |
BIN
docs/_static/screenshots/offline-mode.png
vendored
Normal file
After Width: | Height: | Size: 220 KiB |
BIN
docs/_static/screenshots/play-queue.png
vendored
Before Width: | Height: | Size: 295 KiB After Width: | Height: | Size: 400 KiB |
BIN
docs/_static/screenshots/playlists.png
vendored
Before Width: | Height: | Size: 205 KiB After Width: | Height: | Size: 212 KiB |
BIN
docs/_static/screenshots/search.png
vendored
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 144 KiB |
BIN
docs/_static/screenshots/settings.png
vendored
Normal file
After Width: | Height: | Size: 241 KiB |
@@ -16,11 +16,10 @@ Linux Desktop.
|
||||
.. _Navidrome: https://www.navidrome.org/
|
||||
|
||||
.. figure:: ./_static/screenshots/play-queue.png
|
||||
:width: 80%
|
||||
:align: center
|
||||
:target: ./_static/screenshots/play-queue.png
|
||||
|
||||
The Playlist view of Sublime Music with the Play Queue opened. :doc:`More
|
||||
The Albums tab of Sublime Music with the Play Queue opened. :doc:`More
|
||||
Screenshots <./screenshots>`
|
||||
|
||||
Features
|
||||
|
@@ -35,14 +35,32 @@ Play Queue
|
||||
.. image:: ./_static/screenshots/play-queue.png
|
||||
:target: ./_static/screenshots/play-queue.png
|
||||
|
||||
Play on Other Devices
|
||||
---------------------
|
||||
Play on Chromecasts on the LAN
|
||||
------------------------------
|
||||
|
||||
.. image:: ./_static/screenshots/chromecasts.png
|
||||
:target: ./_static/screenshots/chromecasts.png
|
||||
|
||||
Search
|
||||
------
|
||||
Fuzzy Search
|
||||
------------
|
||||
|
||||
.. image:: ./_static/screenshots/search.png
|
||||
:target: ./_static/screenshots/search.png
|
||||
|
||||
Current Downloads
|
||||
-----------------
|
||||
|
||||
.. image:: ./_static/screenshots/downloads.png
|
||||
:target: ./_static/screenshots/downloads.png
|
||||
|
||||
Settings
|
||||
--------
|
||||
|
||||
.. image:: ./_static/screenshots/settings.png
|
||||
:target: ./_static/screenshots/settings.png
|
||||
|
||||
Offline Mode
|
||||
------------
|
||||
|
||||
.. image:: ./_static/screenshots/offline-mode.png
|
||||
:target: ./_static/screenshots/offline-mode.png
|
||||
|
@@ -17,6 +17,10 @@
|
||||
<ul>
|
||||
<li>Switch between multiple Subsonic-API-compliant servers.</li>
|
||||
<li>Play music through Chromecast devices on the same LAN.</li>
|
||||
<li>
|
||||
Offline Mode where Sublime Music will not make any network
|
||||
requests.
|
||||
</li>
|
||||
<li>
|
||||
DBus MPRIS interface integration for controlling Sublime Music
|
||||
via DBus MPRIS clients such as playerctl, i3status-rust, KDE
|
||||
@@ -41,11 +45,11 @@
|
||||
<image>https://sumner.gitlab.io/sublime-music/_images/albums.png</image>
|
||||
</screenshot>
|
||||
<screenshot type="default">
|
||||
<caption>Artists uab</caption>
|
||||
<caption>Artists tab</caption>
|
||||
<image>https://sumner.gitlab.io/sublime-music/_images/artists.png</image>
|
||||
</screenshot>
|
||||
<screenshot type="default">
|
||||
<caption>Browse uab</caption>
|
||||
<caption>Browse tab</caption>
|
||||
<image>https://sumner.gitlab.io/sublime-music/_images/browse.png</image>
|
||||
</screenshot>
|
||||
<screenshot type="default">
|
||||
@@ -61,9 +65,17 @@
|
||||
<image>https://sumner.gitlab.io/sublime-music/_images/chromecasts.png</image>
|
||||
</screenshot>
|
||||
<screenshot type="default">
|
||||
<caption>Search for artists, albums, songs, and playlists</caption>
|
||||
<caption>Fuzzy search for artists, albums, songs, and playlists</caption>
|
||||
<image>https://sumner.gitlab.io/sublime-music/_images/search.png</image>
|
||||
</screenshot>
|
||||
<screenshot type="default">
|
||||
<caption>View current downloads</caption>
|
||||
<image>https://sumner.gitlab.io/sublime-music/_images/downloads.png</image>
|
||||
</screenshot>
|
||||
<screenshot type="default">
|
||||
<caption>Offline mode</caption>
|
||||
<image>https://sumner.gitlab.io/sublime-music/_images/offline-mode.png</image>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
|
||||
<url type="homepage">https://sublimemusic.app</url>
|
||||
|
@@ -43,7 +43,7 @@ class MainWindow(Gtk.ApplicationWindow):
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
self.set_default_size(1150, 768)
|
||||
self.set_default_size(1342, 756)
|
||||
|
||||
# Create the stack
|
||||
self.albums_panel = albums.AlbumsPanel()
|
||||
@@ -768,7 +768,7 @@ class MainWindow(Gtk.ApplicationWindow):
|
||||
self.search_popup = Gtk.PopoverMenu(modal=False)
|
||||
|
||||
results_scrollbox = Gtk.ScrolledWindow(
|
||||
min_content_width=500, min_content_height=750,
|
||||
min_content_width=500, min_content_height=700,
|
||||
)
|
||||
|
||||
def make_search_result_header(text: str) -> Gtk.Label:
|
||||
|