diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..097f9f9
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,9 @@
+#
+# https://help.github.com/articles/dealing-with-line-endings/
+#
+# Linux start script should use lf
+/gradlew text eol=lf
+
+# These are Windows script files and should use crlf
+*.bat text eol=crlf
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..93acc85
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,10 @@
+# Ignore Gradle project-specific cache directory
+.gradle
+
+# Ignore Gradle build output directory
+build
+
+.env
+*.tar
+*.tar.gz
+releases/
\ No newline at end of file
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 0000000..b589d56
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
new file mode 100644
index 0000000..4979975
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..146ab09
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
new file mode 100644
index 0000000..206430d
--- /dev/null
+++ b/.idea/jarRepositories.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml
new file mode 100644
index 0000000..e805548
--- /dev/null
+++ b/.idea/kotlinc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..2e3f9ea
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/build.gradle.kts b/app/build.gradle.kts
new file mode 100644
index 0000000..45234d7
--- /dev/null
+++ b/app/build.gradle.kts
@@ -0,0 +1,71 @@
+import java.time.Instant
+import java.time.ZoneId
+import java.time.format.DateTimeFormatter
+
+/*
+ * This file was generated by the Gradle 'init' task.
+ *
+ * This generated file contains a sample Kotlin application project to get you started.
+ * For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.5/userguide/building_java_projects.html in the Gradle documentation.
+ */
+
+plugins {
+ // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
+ alias(libs.plugins.jvm)
+
+ // Apply the application plugin to add support for building a CLI application in Java.
+ application
+ id("com.google.cloud.tools.jib") version "3.4.0"
+}
+
+repositories {
+ // Use Maven Central for resolving dependencies.
+ mavenCentral()
+ maven {
+ url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
+ }
+}
+
+jib {
+ to.image = "antifa-info-bot"
+ container.creationTime.set(DateTimeFormatter.ISO_DATE_TIME.format(Instant.now().atZone(ZoneId.of("UTC"))))
+
+ val buildDir = layout.buildDirectory.get()
+ outputPaths.imageId = "$buildDir/github-release.bot.id"
+ outputPaths.digest = "$buildDir/github-release.bot.digest"
+ outputPaths.imageJson = "$buildDir/github-release.bot.json"
+ outputPaths.tar = "$buildDir/github-release.bot.tar"
+}
+
+dependencies {
+
+ implementation("com.ouattararomuald:syndication:2.1.1") {
+ exclude("com.squareup.okhttp3:okhttp")
+ }
+ implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.12")
+ implementation(libs.guava)
+ implementation("com.google.code.gson:gson:2.10.1")
+ implementation("social.bigbone:bigbone:2.0.0-SNAPSHOT")
+
+ testImplementation("io.kotest:kotest-runner-junit5:5.8.0")
+ testImplementation("io.kotest:kotest-assertions-core:5.8.0")
+ testImplementation("com.willowtreeapps.assertk:assertk:0.28.0")
+ testImplementation("io.mockk:mockk:1.13.9")
+}
+
+// Apply a specific Java toolchain to ease working on different environments.
+java {
+ toolchain {
+ languageVersion.set(JavaLanguageVersion.of(17))
+ }
+}
+
+application {
+ // Define the main class for the application.
+ mainClass.set("de.rpr.releases.AppKt")
+}
+
+tasks.named("test") {
+ // Use JUnit Platform for unit tests.
+ useJUnitPlatform()
+}
diff --git a/app/src/test/resources/releases.atom b/app/src/test/resources/releases.atom
new file mode 100644
index 0000000..2f8d665
--- /dev/null
+++ b/app/src/test/resources/releases.atom
@@ -0,0 +1,1086 @@
+
+
+ tag:github.com,2008:https://github.com/navidrome/navidrome/releases
+
+
+ Release notes from navidrome
+ 2024-01-21T22:20:47+01:00
+
+ tag:github.com,2008:Repository/52481933/v0.51.0
+ 2024-01-23T00:59:21+01:00
+
+ v0.51.0
+ <h2>New in this release.</h2>
+<p><strong><g-emoji class="g-emoji" alias="warning">⚠️</g-emoji> BREAKING CHANGE:</strong> This release removes the Last.fm shared API-key, as previously announced <a href="https://www.reddit.com/r/navidrome/comments/183wypy/important_update_navidrome_to_remove_shared/" rel="nofollow">here</a>.<br>
+If you use any Last.fm functionality (scrobbling, biographies, album descriptions), please check the <a href="https://www.navidrome.org/docs/usage/external-integrations/#lastfm" rel="nofollow">documentation</a> on how to create your own API Key, it is free and should only take you a couple of minutes. <strong>NOTE:</strong> Remember to re-enable scrobbling after changing the API Key and restarting the server.</p>
+<p>In this release we focused on support and compatibility with <a href="https://opensubsonic.netlify.app/docs/opensubsonic-changes/" rel="nofollow">OpenSubsonic</a>, increasing the overall user experience when using a compatible Subsonic client. Click <a href="https://github.com/navidrome/navidrome/issues/2695" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2695/hovercard">here</a> for the full list of what is implemented and what is missing for now.</p>
+<p><strong>NOTE:</strong> Even though this release does not force a full rescan, you should do it at your discretion, to import more tags available in the scanner, ex: structured lyrics.</p>
+<h2>Highlights</h2>
+<ul>
+<li>[Server] Remove LastFM shared key</li>
+<li>[Server] Add new <code>PrefSortTags</code> option (<a href="https://github.com/navidrome/navidrome/issues/2696" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2696/hovercard">#2696</a>)</li>
+<li>[Server] Make unix socket file permission configurable via flag <code>UnixSocketPerm</code> (<a href="https://github.com/navidrome/navidrome/issues/2763" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2763/hovercard">#2763)</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/johannesengl/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/johannesengl">@johannesengl</a></li>
+<li>[Server] Add <code>inPlaylist/notInPlaylist</code> operators to Smart Playlists (<a href="https://github.com/navidrome/navidrome/issues/1884" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1884/hovercard">#1884</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/flyingOwl/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/flyingOwl">@flyingOwl</a></li>
+<li>[Server] Add TAK support (<a href="https://github.com/navidrome/navidrome/issues/2745" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2745/hovercard">#2745</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/apkatsikas/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/apkatsikas">@apkatsikas</a></li>
+<li>[Scanner] Import more M4A tags (<a href="https://github.com/navidrome/navidrome/issues/2680" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2680/hovercard">#2680</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[Scanner] Upgrade to TagLib 1.13.1</li>
+<li>[Subsonic] Optimize <code>search3</code> endpoint. Syncs in offline clients (ex: Symfonium) will be faster now.</li>
+<li>[Subsonic] Add multiple OpenSubsonic extensions (See <a href="https://github.com/navidrome/navidrome/issues/2695" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2695/hovercard">#2695</a>)</li>
+<li>[Subsonic] Improved getTopSongs results (<a href="https://github.com/navidrome/navidrome/issues/2675" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2675/hovercard">#2675</a>)</li>
+<li>[Subsonic] General Jukebox improvements</li>
+<li>[CLI] Add "inspect" command to CLI. You can now see what tags Navidrome import by running ex: <code>navidrome inspect your_file.mp3</code></li>
+</ul>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fd61b29a84117b4ab43cf6599a11d1d5110358a1/hovercard" href="https://github.com/navidrome/navidrome/commit/fd61b29a84117b4ab43cf6599a11d1d5110358a1"><tt>fd61b29</tt></a> Small readability improvement in MergeFS tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2b33ef72e36e5c0e2e8ef37c24908abd06517520/hovercard" href="https://github.com/navidrome/navidrome/commit/2b33ef72e36e5c0e2e8ef37c24908abd06517520"><tt>2b33ef7</tt></a> Remove offset and limit from count queries. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1807137085" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2443" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2443/hovercard" href="https://github.com/navidrome/navidrome/issues/2443">#2443</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2fb913f5c93bbaf47554dc1dfdc8ddf4b6570ed3/hovercard" href="https://github.com/navidrome/navidrome/commit/2fb913f5c93bbaf47554dc1dfdc8ddf4b6570ed3"><tt>2fb913f</tt></a> Add log message to try to capture error in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2055238251" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2735" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2735/hovercard" href="https://github.com/navidrome/navidrome/issues/2735">#2735</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6c05493cda4eff492ea12ab24ba5a555f38988c9/hovercard" href="https://github.com/navidrome/navidrome/commit/6c05493cda4eff492ea12ab24ba5a555f38988c9"><tt>6c05493</tt></a> Improve some Jukebox error messages</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3ca4f4411860c31da9e62b45d2431426a0c1393a/hovercard" href="https://github.com/navidrome/navidrome/commit/3ca4f4411860c31da9e62b45d2431426a0c1393a"><tt>3ca4f44</tt></a> Simplify default middlewares setup</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/34c29a156f1435cc0f61eb90d270b9e4ba0dd7a1/hovercard" href="https://github.com/navidrome/navidrome/commit/34c29a156f1435cc0f61eb90d270b9e4ba0dd7a1"><tt>34c29a1</tt></a> Simplify RealIP middleware setup</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b442736a0f7d9b3eaf7a29735cf4022fd2da0223/hovercard" href="https://github.com/navidrome/navidrome/commit/b442736a0f7d9b3eaf7a29735cf4022fd2da0223"><tt>b442736</tt></a> Bump connected-react-router from 6.9.1 to 6.9.3 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2055786997" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2741" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2741/hovercard" href="https://github.com/navidrome/navidrome/pull/2741">#2741</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/90fccf00d12b72042e909f7243384b61cee08786/hovercard" href="https://github.com/navidrome/navidrome/commit/90fccf00d12b72042e909f7243384b61cee08786"><tt>90fccf0</tt></a> Bump workbox-cli from 6.5.4 to 7.0.0 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2055786252" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2737" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2737/hovercard" href="https://github.com/navidrome/navidrome/pull/2737">#2737</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bcd4a52616b2eb9f12fdd2a2bb545beaa5ac1d0d/hovercard" href="https://github.com/navidrome/navidrome/commit/bcd4a52616b2eb9f12fdd2a2bb545beaa5ac1d0d"><tt>bcd4a52</tt></a> Bump golang.org/x/sync from 0.5.0 to 0.6.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2070962518" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2779" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2779/hovercard" href="https://github.com/navidrome/navidrome/pull/2779">#2779</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/84cffa6b94cfc36eb8afbef599af063df71fedd9/hovercard" href="https://github.com/navidrome/navidrome/commit/84cffa6b94cfc36eb8afbef599af063df71fedd9"><tt>84cffa6</tt></a> Bump github.com/prometheus/client_golang from 1.17.0 to 1.18.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2061686619" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2759" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2759/hovercard" href="https://github.com/navidrome/navidrome/pull/2759">#2759</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a51b1b25d228d93042b9cfaeda612eb183cd217f/hovercard" href="https://github.com/navidrome/navidrome/commit/a51b1b25d228d93042b9cfaeda612eb183cd217f"><tt>a51b1b2</tt></a> Bump uuid from 8.3.2 to 9.0.1 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2055786834" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2740" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2740/hovercard" href="https://github.com/navidrome/navidrome/pull/2740">#2740</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9f317c054b4d9d0f8314cf1245e5253c134d139b/hovercard" href="https://github.com/navidrome/navidrome/commit/9f317c054b4d9d0f8314cf1245e5253c134d139b"><tt>9f317c0</tt></a> Bump @testing-library/user-event from 14.5.1 to 14.5.2 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2061682341" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2757" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2757/hovercard" href="https://github.com/navidrome/navidrome/pull/2757">#2757</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5f8d01a207cd84e9df4e4ac3e762e6bb785e050b/hovercard" href="https://github.com/navidrome/navidrome/commit/5f8d01a207cd84e9df4e4ac3e762e6bb785e050b"><tt>5f8d01a</tt></a> Bump clsx from 2.0.0 to 2.1.0 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2061682555" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2758" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2758/hovercard" href="https://github.com/navidrome/navidrome/pull/2758">#2758</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8a648d717a957c8a630fa9faa6301607ef36e3a4/hovercard" href="https://github.com/navidrome/navidrome/commit/8a648d717a957c8a630fa9faa6301607ef36e3a4"><tt>8a648d7</tt></a> Bump github.com/go-chi/chi/v5 from 5.0.10 to 5.0.11 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2055798724" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2742" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2742/hovercard" href="https://github.com/navidrome/navidrome/pull/2742">#2742</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a0dc2ee0518896339dbc96ce1a2da2e1e0ec893b/hovercard" href="https://github.com/navidrome/navidrome/commit/a0dc2ee0518896339dbc96ce1a2da2e1e0ec893b"><tt>a0dc2ee</tt></a> Bump github.com/pelletier/go-toml/v2 from 2.0.6 to 2.1.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2061686681" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2760" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2760/hovercard" href="https://github.com/navidrome/navidrome/pull/2760">#2760</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ffb4de1e275f235f47a943e27358541144a83ba2/hovercard" href="https://github.com/navidrome/navidrome/commit/ffb4de1e275f235f47a943e27358541144a83ba2"><tt>ffb4de1</tt></a> Bump github.com/unrolled/secure from 1.13.0 to 1.14.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2061686716" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2761" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2761/hovercard" href="https://github.com/navidrome/navidrome/pull/2761">#2761</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e1fc7983a53f388aadc6a6f8f6097f8fff44cf3d/hovercard" href="https://github.com/navidrome/navidrome/commit/e1fc7983a53f388aadc6a6f8f6097f8fff44cf3d"><tt>e1fc798</tt></a> Bump golang.org/x/image from 0.14.0 to 0.15.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2070962383" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2778" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2778/hovercard" href="https://github.com/navidrome/navidrome/pull/2778">#2778</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2a43f54eb1beee98f3d86cd7fccaf8801f3353b7/hovercard" href="https://github.com/navidrome/navidrome/commit/2a43f54eb1beee98f3d86cd7fccaf8801f3353b7"><tt>2a43f54</tt></a> Bump follow-redirects from 1.15.2 to 1.15.4 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2073704287" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2786" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2786/hovercard" href="https://github.com/navidrome/navidrome/pull/2786">#2786</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f654e921139e83b701341d0096f5668eb687b426/hovercard" href="https://github.com/navidrome/navidrome/commit/f654e921139e83b701341d0096f5668eb687b426"><tt>f654e92</tt></a> Bump github.com/lestrrat-go/jwx/v2 from 2.0.18 to 2.0.19 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2082436977" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2792" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2792/hovercard" href="https://github.com/navidrome/navidrome/pull/2792">#2792</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dfa453cc4ab772928686838dc73d0130740f054e/hovercard" href="https://github.com/navidrome/navidrome/commit/dfa453cc4ab772928686838dc73d0130740f054e"><tt>dfa453c</tt></a> Add (not)inplaylist operator to smart playlists (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1384830237" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1884" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1884/hovercard" href="https://github.com/navidrome/navidrome/pull/1884">#1884</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8f03454312f28213293da7fec7f63508985f0eeb/hovercard" href="https://github.com/navidrome/navidrome/commit/8f03454312f28213293da7fec7f63508985f0eeb"><tt>8f03454</tt></a> Make server unix socket file permission configurable via flag UnixSocketPerm (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2063777238" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2763" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2763/hovercard" href="https://github.com/navidrome/navidrome/pull/2763">#2763</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8570773b9036974cf94d56739c79cd0fe6199d66/hovercard" href="https://github.com/navidrome/navidrome/commit/8570773b9036974cf94d56739c79cd0fe6199d66"><tt>8570773</tt></a> Bump prettier from 3.1.1 to 3.2.2 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6cff91e17d2f23974631c429c8094ef6ae838099/hovercard" href="https://github.com/navidrome/navidrome/commit/6cff91e17d2f23974631c429c8094ef6ae838099"><tt>6cff91e</tt></a> Use the default import path for jest-dom.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d0df81a8df5442b06d482d12c33de9b5f9d76003/hovercard" href="https://github.com/navidrome/navidrome/commit/d0df81a8df5442b06d482d12c33de9b5f9d76003"><tt>d0df81a</tt></a> Bump @testing-library/jest-dom from 5.16.5 to 6.2.0 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/75f3ef64e27c92af93f2af5d7a7d7f2aed8a5392/hovercard" href="https://github.com/navidrome/navidrome/commit/75f3ef64e27c92af93f2af5d7a7d7f2aed8a5392"><tt>75f3ef6</tt></a> Bump react-icons from 4.4.0 to 5.0.1 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/170ac939268cd5912cf31b345a095a741f6ab7c3/hovercard" href="https://github.com/navidrome/navidrome/commit/170ac939268cd5912cf31b345a095a741f6ab7c3"><tt>170ac93</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.13.2 to 2.14.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6f7b48202e9135378f3696f28b8f49595f8a8f75/hovercard" href="https://github.com/navidrome/navidrome/commit/6f7b48202e9135378f3696f28b8f49595f8a8f75"><tt>6f7b482</tt></a> Make the GetInstance concurrent test more readable</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6e2be7f95f9e1dc2be1ddef281966bba83cb37a8/hovercard" href="https://github.com/navidrome/navidrome/commit/6e2be7f95f9e1dc2be1ddef281966bba83cb37a8"><tt>6e2be7f</tt></a> Don't force a full scan after upgrading the lyrics</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0d8f8e3afd23b62db1eb85b8704af3032cc55e35/hovercard" href="https://github.com/navidrome/navidrome/commit/0d8f8e3afd23b62db1eb85b8704af3032cc55e35"><tt>0d8f8e3</tt></a> Optimize Singleton (sometimes a simple lock is a better solution)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e50382e3bf81f77f3b858a6f8cac31e7d7ab0b74/hovercard" href="https://github.com/navidrome/navidrome/commit/e50382e3bf81f77f3b858a6f8cac31e7d7ab0b74"><tt>e50382e</tt></a> Fix ReplayGain values not being retrieved from DB</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/814161d78db0dc07c16fa6e80f6ff1710866e31b/hovercard" href="https://github.com/navidrome/navidrome/commit/814161d78db0dc07c16fa6e80f6ff1710866e31b"><tt>814161d</tt></a> Add OS Lyrics extension (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2010886800" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2656" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2656/hovercard" href="https://github.com/navidrome/navidrome/pull/2656">#2656</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/130ab76c79d1a33e78eab6c45bcccddff63641e2/hovercard" href="https://github.com/navidrome/navidrome/commit/130ab76c79d1a33e78eab6c45bcccddff63641e2"><tt>130ab76</tt></a> go mod tidy</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a186a795f68dd39371312d1c17baa4d42dc33969/hovercard" href="https://github.com/navidrome/navidrome/commit/a186a795f68dd39371312d1c17baa4d42dc33969"><tt>a186a79</tt></a> Omit empty Genre attributes</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/798b03eabd00d2153f44844d6715960afdb8d4ad/hovercard" href="https://github.com/navidrome/navidrome/commit/798b03eabd00d2153f44844d6715960afdb8d4ad"><tt>798b03e</tt></a> Add "inspect" command to CLI</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ea7ba22699795392614ecc86263df2c23a522dae/hovercard" href="https://github.com/navidrome/navidrome/commit/ea7ba22699795392614ecc86263df2c23a522dae"><tt>ea7ba22</tt></a> Discard duplicated tags</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b4815ecee58ed6ee3814c6004d00d0f99c4a60f2/hovercard" href="https://github.com/navidrome/navidrome/commit/b4815ecee58ed6ee3814c6004d00d0f99c4a60f2"><tt>b4815ec</tt></a> Add TAK support (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2055851965" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2745" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2745/hovercard" href="https://github.com/navidrome/navidrome/pull/2745">#2745</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/51e07d4cb5dac62aae3fe54356678c85c6adb5d1/hovercard" href="https://github.com/navidrome/navidrome/commit/51e07d4cb5dac62aae3fe54356678c85c6adb5d1"><tt>51e07d4</tt></a> Add log.IsGreaterOrEqualTo, that take into consideration path-scoped log levels</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/03119e5ccfaebc6a618831bb7c312e5ce007ed2b/hovercard" href="https://github.com/navidrome/navidrome/commit/03119e5ccfaebc6a618831bb7c312e5ce007ed2b"><tt>03119e5</tt></a> Add more trace log to TagLib Wrapper</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/15e1394fa337fbb6d54f51d5358507bfba41a615/hovercard" href="https://github.com/navidrome/navidrome/commit/15e1394fa337fbb6d54f51d5358507bfba41a615"><tt>15e1394</tt></a> Implement <code>originalReleaseDate</code> in OpenSubsonic responses. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2054618911" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2733" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2733/hovercard" href="https://github.com/navidrome/navidrome/pull/2733">#2733</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3f349b1b582b9d60a87a6cd05a84a6c7ad50bef5/hovercard" href="https://github.com/navidrome/navidrome/commit/3f349b1b582b9d60a87a6cd05a84a6c7ad50bef5"><tt>3f349b1</tt></a> Add todo as a reminder to replace min/max in Go 1.22</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dfcc189cffbea00bcbe283fcc88becb713748cce/hovercard" href="https://github.com/navidrome/navidrome/commit/dfcc189cffbea00bcbe283fcc88becb713748cce"><tt>dfcc189</tt></a> Replace all <code>utils.Param*</code> with <code>req.Params</code></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/00597e01e914a60850db76859602f6a870f37792/hovercard" href="https://github.com/navidrome/navidrome/commit/00597e01e914a60850db76859602f6a870f37792"><tt>00597e0</tt></a> Add <code>req.Params</code> to replace <code>utils.Param*</code></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/965fc9d9be41ebc2fa8118d91beb2abdebe76a15/hovercard" href="https://github.com/navidrome/navidrome/commit/965fc9d9be41ebc2fa8118d91beb2abdebe76a15"><tt>965fc9d</tt></a> Remove beep and the files where it was imported (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2052037703" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2731" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2731/hovercard" href="https://github.com/navidrome/navidrome/pull/2731">#2731</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/781ff404649ff0addad914ef35ba2b7cf6ff0440/hovercard" href="https://github.com/navidrome/navidrome/commit/781ff404649ff0addad914ef35ba2b7cf6ff0440"><tt>781ff40</tt></a> Bump Go version to 1.21.5 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2051494148" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2729" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2729/hovercard" href="https://github.com/navidrome/navidrome/pull/2729">#2729</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a6ed0442f2f4ccd7c6fe5d0efb9b6f7a9db05bc4/hovercard" href="https://github.com/navidrome/navidrome/commit/a6ed0442f2f4ccd7c6fe5d0efb9b6f7a9db05bc4"><tt>a6ed044</tt></a> Name <code>mapDates</code> return values</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/515efe37f0d520652dee8c15f03d5993c54683c8/hovercard" href="https://github.com/navidrome/navidrome/commit/515efe37f0d520652dee8c15f03d5993c54683c8"><tt>515efe3</tt></a> Bump @testing-library/user-event from 13.5.0 to 14.5.1 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6c28c111bb627374a4d60583d1735adacd363b7d/hovercard" href="https://github.com/navidrome/navidrome/commit/6c28c111bb627374a4d60583d1735adacd363b7d"><tt>6c28c11</tt></a> Bump @adobe/css-tools from 4.3.1 to 4.3.2 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/92a88ad4d9eadb9e1e40d3ad6367a75a12cf716c/hovercard" href="https://github.com/navidrome/navidrome/commit/92a88ad4d9eadb9e1e40d3ad6367a75a12cf716c"><tt>92a88ad</tt></a> Bump golang.org/x/crypto from 0.16.0 to 0.17.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2047567750" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2722" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2722/hovercard" href="https://github.com/navidrome/navidrome/pull/2722">#2722</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4ccc0a92bfb7d43ce98cbeddf3a933e016fbeb82/hovercard" href="https://github.com/navidrome/navidrome/commit/4ccc0a92bfb7d43ce98cbeddf3a933e016fbeb82"><tt>4ccc0a9</tt></a> Bump jwt-decode from 3.1.2 to 4.0.0 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2047093387" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2714" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2714/hovercard" href="https://github.com/navidrome/navidrome/pull/2714">#2714</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/df3de047ca2ff392a04700bb05f998a000538aca/hovercard" href="https://github.com/navidrome/navidrome/commit/df3de047ca2ff392a04700bb05f998a000538aca"><tt>df3de04</tt></a> Bump clsx from 1.1.1 to 2.0.0 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/86757663d666d08093d4d3e2a6195238addaaec0/hovercard" href="https://github.com/navidrome/navidrome/commit/86757663d666d08093d4d3e2a6195238addaaec0"><tt>8675766</tt></a> Reformat code with Prettier's new rules.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/735d670a5bc792e4a42894ff6f54d36c24d8830e/hovercard" href="https://github.com/navidrome/navidrome/commit/735d670a5bc792e4a42894ff6f54d36c24d8830e"><tt>735d670</tt></a> Bump prettier from 2.8.2 to 3.1.1 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/30179146c389ac9b475a4427b26ae9046a8081f9/hovercard" href="https://github.com/navidrome/navidrome/commit/30179146c389ac9b475a4427b26ae9046a8081f9"><tt>3017914</tt></a> Bump deepmerge from 4.2.2 to 4.3.1 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/03a9f22ed9b8eb87af3e99ee531ddf965a434a78/hovercard" href="https://github.com/navidrome/navidrome/commit/03a9f22ed9b8eb87af3e99ee531ddf965a434a78"><tt>03a9f22</tt></a> Bump @material-ui/icons from 4.11.2 to 4.11.3 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/39e92a1918eb5c3f2a181febc003d7161e414936/hovercard" href="https://github.com/navidrome/navidrome/commit/39e92a1918eb5c3f2a181febc003d7161e414936"><tt>39e92a1</tt></a> Bump github.com/mattn/go-sqlite3 from 1.14.18 to 1.14.19</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/421ce91a9efacc6d845f7e6715bb4093cdef221d/hovercard" href="https://github.com/navidrome/navidrome/commit/421ce91a9efacc6d845f7e6715bb4093cdef221d"><tt>421ce91</tt></a> Fix mpvipc dependency</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/12aae5e9511a9c9cbeb66cfcb825f7898ceea1dd/hovercard" href="https://github.com/navidrome/navidrome/commit/12aae5e9511a9c9cbeb66cfcb825f7898ceea1dd"><tt>12aae5e</tt></a> Some cleanup in the jukebox code, specially log messages</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/932152eb7e8817e0fe388e984a47a30fae8368cf/hovercard" href="https://github.com/navidrome/navidrome/commit/932152eb7e8817e0fe388e984a47a30fae8368cf"><tt>932152e</tt></a> Change required fields in Subsonic Jukebox endpoint</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0e3175ea17acc160fb0fd7b6744ffb4a2f4f357e/hovercard" href="https://github.com/navidrome/navidrome/commit/0e3175ea17acc160fb0fd7b6744ffb4a2f4f357e"><tt>0e3175e</tt></a> Better workaround for Go 1.20 missing context.WithoutCancel</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d3f6b4692deaa7ff62b90f1c017f93a0911b735f/hovercard" href="https://github.com/navidrome/navidrome/commit/d3f6b4692deaa7ff62b90f1c017f93a0911b735f"><tt>d3f6b46</tt></a> Temporary fix for scan context cancellation for Go 1.20</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/70effa09e829fcdf444d5ff217d84dfe5bb25c8a/hovercard" href="https://github.com/navidrome/navidrome/commit/70effa09e829fcdf444d5ff217d84dfe5bb25c8a"><tt>70effa0</tt></a> Don't cancel Scan on context cancellation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7ccf6859733cfa9091fbc0a97880ad155b6f23ec/hovercard" href="https://github.com/navidrome/navidrome/commit/7ccf6859733cfa9091fbc0a97880ad155b6f23ec"><tt>7ccf685</tt></a> Fix PreferSortTags</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2aef2275723e67a68a5a66badbc5ce76837ad101/hovercard" href="https://github.com/navidrome/navidrome/commit/2aef2275723e67a68a5a66badbc5ce76837ad101"><tt>2aef227</tt></a> Add context to SQL queries, enabling cancellation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d80e1a260bed86cef0ef6bbaa85b9346bd0488f1/hovercard" href="https://github.com/navidrome/navidrome/commit/d80e1a260bed86cef0ef6bbaa85b9346bd0488f1"><tt>d80e1a2</tt></a> Fix possible authentication bypass</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fd4605d7dce78c4d294edd00d93255c19ad91eeb/hovercard" href="https://github.com/navidrome/navidrome/commit/fd4605d7dce78c4d294edd00d93255c19ad91eeb"><tt>fd4605d</tt></a> Bump github.com/mattn/go-zglob from 0.0.3 to 0.0.4 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1466762595" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2015" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2015/hovercard" href="https://github.com/navidrome/navidrome/pull/2015">#2015</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a6493c4c362a658e5ed56d65cbf4d1f8db87175a/hovercard" href="https://github.com/navidrome/navidrome/commit/a6493c4c362a658e5ed56d65cbf4d1f8db87175a"><tt>a6493c4</tt></a> Bump github.com/google/uuid to v1.5.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/54597bd575f177f631b30d2cdee1e2d54eb98328/hovercard" href="https://github.com/navidrome/navidrome/commit/54597bd575f177f631b30d2cdee1e2d54eb98328"><tt>54597bd</tt></a> Allow reverse proxy auth for unix socket (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2036877694" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2701" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2701/hovercard" href="https://github.com/navidrome/navidrome/pull/2701">#2701</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ab5331327325ea6442673b457aabe94ad11f343e/hovercard" href="https://github.com/navidrome/navidrome/commit/ab5331327325ea6442673b457aabe94ad11f343e"><tt>ab53313</tt></a> Add new PrefSortTags option (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2034192941" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2696" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2696/hovercard" href="https://github.com/navidrome/navidrome/pull/2696">#2696</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d3669f46a93eb73487763a27ecaf23f58c02c478/hovercard" href="https://github.com/navidrome/navidrome/commit/d3669f46a93eb73487763a27ecaf23f58c02c478"><tt>d3669f4</tt></a> go mod tidy</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d89de9060a7705f181105b1512f79cbc7bade110/hovercard" href="https://github.com/navidrome/navidrome/commit/d89de9060a7705f181105b1512f79cbc7bade110"><tt>d89de90</tt></a> Bump Go dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ac3668a33e44ea5c1f7433551fc75d048131d6bc/hovercard" href="https://github.com/navidrome/navidrome/commit/ac3668a33e44ea5c1f7433551fc75d048131d6bc"><tt>ac3668a</tt></a> Removed unused <code>diodes</code> package</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6d924ad742f5c2337bbef4565b8bc305cce4f490/hovercard" href="https://github.com/navidrome/navidrome/commit/6d924ad742f5c2337bbef4565b8bc305cce4f490"><tt>6d924ad</tt></a> Bump github.com/go-chi/jwtauth/v5 from 5.2.0 to 5.3.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2036228605" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2699" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2699/hovercard" href="https://github.com/navidrome/navidrome/pull/2699">#2699</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/78d557c1854b808240a8c5ad21d68dad66535f9d/hovercard" href="https://github.com/navidrome/navidrome/commit/78d557c1854b808240a8c5ad21d68dad66535f9d"><tt>78d557c</tt></a> Remove LastFM shared key</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/546aa26a0ab5b6b3fac481b8c2613c3b2100523b/hovercard" href="https://github.com/navidrome/navidrome/commit/546aa26a0ab5b6b3fac481b8c2613c3b2100523b"><tt>546aa26</tt></a> Removed duplicated code</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fc677f7951765b3f062cbd6fafa8e25404ce34b9/hovercard" href="https://github.com/navidrome/navidrome/commit/fc677f7951765b3f062cbd6fafa8e25404ce34b9"><tt>fc677f7</tt></a> Bump github.com/lestrrat-go/jwx/v2 from 2.0.17 to 2.0.18 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2024338058" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2684" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2684/hovercard" href="https://github.com/navidrome/navidrome/pull/2684">#2684</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/aed030916159faf61457d3c76ae0213345302aa5/hovercard" href="https://github.com/navidrome/navidrome/commit/aed030916159faf61457d3c76ae0213345302aa5"><tt>aed0309</tt></a> Return <code>AlbumID3</code> in <code>search3</code> results</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/465cc091b015a1e434da7b4c5b9d34596fe35d77/hovercard" href="https://github.com/navidrome/navidrome/commit/465cc091b015a1e434da7b4c5b9d34596fe35d77"><tt>465cc09</tt></a> Convert internal disc number representation to int</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2c9035fdd02566a551b65c83cd288591faaf7b7a/hovercard" href="https://github.com/navidrome/navidrome/commit/2c9035fdd02566a551b65c83cd288591faaf7b7a"><tt>2c9035f</tt></a> Add discTitles to OpenSubsonic responses</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/af7eead0379306c82e69c11ab79fa2ba123c16f7/hovercard" href="https://github.com/navidrome/navidrome/commit/af7eead0379306c82e69c11ab79fa2ba123c16f7"><tt>af7eead</tt></a> Add discs to album</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0ca0d5da228a5c2810c6103185891272ade1cdbf/hovercard" href="https://github.com/navidrome/navidrome/commit/0ca0d5da228a5c2810c6103185891272ade1cdbf"><tt>0ca0d5d</tt></a> Replace beego/orm with dbx (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2033401520" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2693" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2693/hovercard" href="https://github.com/navidrome/navidrome/pull/2693">#2693</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7074455e0e7f7f2f9a6753a9bca922e2a5e5fb5c/hovercard" href="https://github.com/navidrome/navidrome/commit/7074455e0e7f7f2f9a6753a9bca922e2a5e5fb5c"><tt>7074455</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.13.1 to 2.13.2</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2f2fbeb00910e13283ae484ebfb78b902680085d/hovercard" href="https://github.com/navidrome/navidrome/commit/2f2fbeb00910e13283ae484ebfb78b902680085d"><tt>2f2fbeb</tt></a> Fix ld warnings on taglib_wrapper.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/742fd16a0122eb1b2f4e601ea9d18b4c1bb248f4/hovercard" href="https://github.com/navidrome/navidrome/commit/742fd16a0122eb1b2f4e601ea9d18b4c1bb248f4"><tt>742fd16</tt></a> Parse more itunes keys, optimize taglib wrapper (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2022405298" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2680" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2680/hovercard" href="https://github.com/navidrome/navidrome/pull/2680">#2680</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7766ee069cb50f298144ffd46ea0fd93e3540b79/hovercard" href="https://github.com/navidrome/navidrome/commit/7766ee069cb50f298144ffd46ea0fd93e3540b79"><tt>7766ee0</tt></a> Return http form post extension (OpenSubsonic) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2022119451" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2676" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2676/hovercard" href="https://github.com/navidrome/navidrome/pull/2676">#2676</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4cd7c7f39fd122ad8b8cd98dff9213148d778bd7/hovercard" href="https://github.com/navidrome/navidrome/commit/4cd7c7f39fd122ad8b8cd98dff9213148d778bd7"><tt>4cd7c7f</tt></a> Fix FileHaunter tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/81daee3b9b214a1931d91c5b19777b6cfddf6c7a/hovercard" href="https://github.com/navidrome/navidrome/commit/81daee3b9b214a1931d91c5b19777b6cfddf6c7a"><tt>81daee3</tt></a> Fix FileHaunter tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9b434d743f480dbabd494195b1115e7b4596b05a/hovercard" href="https://github.com/navidrome/navidrome/commit/9b434d743f480dbabd494195b1115e7b4596b05a"><tt>9b434d7</tt></a> Ignore flaky FileHaunter tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4641dc0b2bbdb0a381b40c1f90519a4f3490b016/hovercard" href="https://github.com/navidrome/navidrome/commit/4641dc0b2bbdb0a381b40c1f90519a4f3490b016"><tt>4641dc0</tt></a> Add ReplayGain to OpenSubsonic API Child response</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/812dc2090f20ac4f8ac271b6ed95be5889d1a3ca/hovercard" href="https://github.com/navidrome/navidrome/commit/812dc2090f20ac4f8ac271b6ed95be5889d1a3ca"><tt>812dc20</tt></a> Add support for <code>timeOffset</code> in <code>/stream</code> endpoint</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a9cf54afef34f980985c76ae3a5e1b7441098831/hovercard" href="https://github.com/navidrome/navidrome/commit/a9cf54afef34f980985c76ae3a5e1b7441098831"><tt>a9cf54a</tt></a> Return genres in bookmark endpoints (OpenSubsonic)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/595186b1b28310d6f77b8a659a21bb02c930e0c2/hovercard" href="https://github.com/navidrome/navidrome/commit/595186b1b28310d6f77b8a659a21bb02c930e0c2"><tt>595186b</tt></a> Coalesce null annotation values, to better rank them against annotations with value 0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cdccdc56c9072e539b808b998cf9bdfabe864149/hovercard" href="https://github.com/navidrome/navidrome/commit/cdccdc56c9072e539b808b998cf9bdfabe864149"><tt>cdccdc5</tt></a> Add more OpenSubsonic fields</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f580c5b8bc6062dfbc67559cd86f5d686fcbc7aa/hovercard" href="https://github.com/navidrome/navidrome/commit/f580c5b8bc6062dfbc67559cd86f5d686fcbc7aa"><tt>f580c5b</tt></a> Add more OpenSubsonic fields</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f0e25c251d1589e5aff8d9374a6e2dd8a7cde0b6/hovercard" href="https://github.com/navidrome/navidrome/commit/f0e25c251d1589e5aff8d9374a6e2dd8a7cde0b6"><tt>f0e25c2</tt></a> Update translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/abde399e7bf709fc053c3873b810d1b5f80d68d9/hovercard" href="https://github.com/navidrome/navidrome/commit/abde399e7bf709fc053c3873b810d1b5f80d68d9"><tt>abde399</tt></a> Upgrade to Goose 3.15.1</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1b4483d32ba8a5fce83bf81cab7552efe4fa2c53/hovercard" href="https://github.com/navidrome/navidrome/commit/1b4483d32ba8a5fce83bf81cab7552efe4fa2c53"><tt>1b4483d</tt></a> Remove <code>tools.go</code></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f7fe8ba938bdedd7d1c57432bafd1a88b68e39a1/hovercard" href="https://github.com/navidrome/navidrome/commit/f7fe8ba938bdedd7d1c57432bafd1a88b68e39a1"><tt>f7fe8ba</tt></a> npx update-browserslist-db@latest</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f543e7accc36d768bee784ead37c7a6c58a707bf/hovercard" href="https://github.com/navidrome/navidrome/commit/f543e7accc36d768bee784ead37c7a6c58a707bf"><tt>f543e7a</tt></a> Fix getOpenSubsonicExtensions endpoint</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/60a5fbe1fe11a0555c67118c7f9a2c8a91366025/hovercard" href="https://github.com/navidrome/navidrome/commit/60a5fbe1fe11a0555c67118c7f9a2c8a91366025"><tt>60a5fbe</tt></a> Optimize search3, by removing <code>OFFSET</code> when paginating (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2010838385" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2655" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2655/hovercard" href="https://github.com/navidrome/navidrome/pull/2655">#2655</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/28dc98dec46a83d6163c5943d2522015b76969c4/hovercard" href="https://github.com/navidrome/navidrome/commit/28dc98dec46a83d6163c5943d2522015b76969c4"><tt>28dc98d</tt></a> Revert "Replace <code>COUNT(DISTINCT primary_key)</code> with <code>COUNT(*)</code>"</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8c8e1ea701456870fd4591cf619d74a1dc58d8e4/hovercard" href="https://github.com/navidrome/navidrome/commit/8c8e1ea701456870fd4591cf619d74a1dc58d8e4"><tt>8c8e1ea</tt></a> Replace <code>COUNT(DISTINCT primary_key)</code> with <code>COUNT(*)</code></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b964018cd70597e8b7799797d33bef24d0f20dd5/hovercard" href="https://github.com/navidrome/navidrome/commit/b964018cd70597e8b7799797d33bef24d0f20dd5"><tt>b964018</tt></a> Show SQL errors in queryAll</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9aa7b80d0d78aee437f5385fb0909615caf4a25b/hovercard" href="https://github.com/navidrome/navidrome/commit/9aa7b80d0d78aee437f5385fb0909615caf4a25b"><tt>9aa7b80</tt></a> Generalize BreakUp/RangByChunks functions</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c3efc572594a38b9f983c059132c51a2aff3227d/hovercard" href="https://github.com/navidrome/navidrome/commit/c3efc572594a38b9f983c059132c51a2aff3227d"><tt>c3efc57</tt></a> Use TagLib 1.13.1 for snapshots/releases</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/27a92b05e7f3d8229b4f991687b9933fc79b8b4c/hovercard" href="https://github.com/navidrome/navidrome/commit/27a92b05e7f3d8229b4f991687b9933fc79b8b4c"><tt>27a92b0</tt></a> Fixed deprecated GoReleaser options</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/21f1354cd14e32e1260fc95a38dd451c6914fb3d/hovercard" href="https://github.com/navidrome/navidrome/commit/21f1354cd14e32e1260fc95a38dd451c6914fb3d"><tt>21f1354</tt></a> Revert "Bump golang.org/x/exp, change slices.SortFunc function call"</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/069da5d91c82808bc80bec9015790bca30901565/hovercard" href="https://github.com/navidrome/navidrome/commit/069da5d91c82808bc80bec9015790bca30901565"><tt>069da5d</tt></a> Bump Go to 1.21.4</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/69d2ced852c365e949a30f681d25e46b5acc4380/hovercard" href="https://github.com/navidrome/navidrome/commit/69d2ced852c365e949a30f681d25e46b5acc4380"><tt>69d2ced</tt></a> Bump Go dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/17ac8d25cbf57f7a11bb9b06af99e5469f9b5eeb/hovercard" href="https://github.com/navidrome/navidrome/commit/17ac8d25cbf57f7a11bb9b06af99e5469f9b5eeb"><tt>17ac8d2</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/474f32f1b8819bbc9d5a9063b9c7c0e35f6f9528/hovercard" href="https://github.com/navidrome/navidrome/commit/474f32f1b8819bbc9d5a9063b9c7c0e35f6f9528"><tt>474f32f</tt></a> Bump golang.org/x/exp, change slices.SortFunc function call</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ecadcfb403e856095ca1e3153224175696933586/hovercard" href="https://github.com/navidrome/navidrome/commit/ecadcfb403e856095ca1e3153224175696933586"><tt>ecadcfb</tt></a> Make <code>ParamInt</code> generic (any int type)</li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.50.2
+ 2023-12-14T01:37:26+01:00
+
+ v0.50.2
+ <h2>Bug fix point release</h2>
+<p>This release fixes a couple of bugs, most importantly authentication could be bypassed when the server had never been restarted after initial setup. More details are coming in a security advisory being prepared by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/crazygolem/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/crazygolem">@crazygolem</a>, but if you can't promptly install this bug fix version, you can simply restart your server and you are clear.</p>
+<p>Many thanks for <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/crazygolem/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/crazygolem">@crazygolem</a> for researching and finding this bug.</p>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/823bef5464171284b7e6ef4be49bf5d9283b4217/hovercard" href="https://github.com/navidrome/navidrome/commit/823bef5464171284b7e6ef4be49bf5d9283b4217"><tt>823bef5</tt></a> Ignore flaky FileHaunter tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/713b3a1babbad78b97a4851e12e7a2afbc0652a6/hovercard" href="https://github.com/navidrome/navidrome/commit/713b3a1babbad78b97a4851e12e7a2afbc0652a6"><tt>713b3a1</tt></a> Update translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6ebb03210abebe2508c67d0a331f955ddc9b3ccf/hovercard" href="https://github.com/navidrome/navidrome/commit/6ebb03210abebe2508c67d0a331f955ddc9b3ccf"><tt>6ebb032</tt></a> Allow reverse proxy auth for unix socket (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2036877694" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2701" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2701/hovercard" href="https://github.com/navidrome/navidrome/pull/2701">#2701</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1132abb0135d1ecaebc41ed97a1e908a4ae02f7c/hovercard" href="https://github.com/navidrome/navidrome/commit/1132abb0135d1ecaebc41ed97a1e908a4ae02f7c"><tt>1132abb</tt></a> Fix possible authentication bypass</li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.50.1
+ 2023-11-22T04:05:26+01:00
+
+ v0.50.1
+ <h2>Bug fix point release</h2>
+<p>This release fixes a few bugs, most notably the scanner in Windows systems and the ARM docker image availability in Docker Hub.</p>
+<ul>
+<li>[UI] Add Indonesian. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tarokeitaro/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tarokeitaro">@tarokeitaro</a></li>
+<li>[Scanner] Fix Windows scanner (<a href="https://github.com/navidrome/navidrome/pull/2633" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2633/hovercard">#2633</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/caiocotts/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/caiocotts">@caiocotts</a></li>
+<li>[Subsonic] Add OpenSubsonic tags: <code>genres</code>, <code>bpm</code>, <code>comment</code>, <code>musicBrainzID</code> (<a href="https://github.com/navidrome/navidrome/pull/2597" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2597/hovercard">#2597</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dweymouth/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dweymouth">@dweymouth</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/caiocotts/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/caiocotts">@caiocotts</a></li>
+<li>[Build] Fix pushing images to Docker Hub</li>
+</ul>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f69c27d14681e31b7a46ceef7c2cbe9de4a1ae45/hovercard" href="https://github.com/navidrome/navidrome/commit/f69c27d14681e31b7a46ceef7c2cbe9de4a1ae45"><tt>f69c27d</tt></a> Return genres in search3 endpoint.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bb7186ce2fb9690ff6296192c31363ef6fff4dc9/hovercard" href="https://github.com/navidrome/navidrome/commit/bb7186ce2fb9690ff6296192c31363ef6fff4dc9"><tt>bb7186c</tt></a> Fix marshaling for genres.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5d1493e8451a14a017d28f1b8f8bb638c566103a/hovercard" href="https://github.com/navidrome/navidrome/commit/5d1493e8451a14a017d28f1b8f8bb638c566103a"><tt>5d1493e</tt></a> Bump @adobe/css-tools from 4.0.1 to 4.3.1 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d0fe406800c385faefbc8ed828119f83fcd0210e/hovercard" href="https://github.com/navidrome/navidrome/commit/d0fe406800c385faefbc8ed828119f83fcd0210e"><tt>d0fe406</tt></a> Fix Go 1.20 build</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c8fbf6b60e10c9dfa934702a98f2bb45a14e162f/hovercard" href="https://github.com/navidrome/navidrome/commit/c8fbf6b60e10c9dfa934702a98f2bb45a14e162f"><tt>c8fbf6b</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e5bc3ca2001c2921cc7ec6c4e3b889f1677f5291/hovercard" href="https://github.com/navidrome/navidrome/commit/e5bc3ca2001c2921cc7ec6c4e3b889f1677f5291"><tt>e5bc3ca</tt></a> Update translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6d88dd2c66227ec1f7720f8002d08f3f259ac2cb/hovercard" href="https://github.com/navidrome/navidrome/commit/6d88dd2c66227ec1f7720f8002d08f3f259ac2cb"><tt>6d88dd2</tt></a> Add Indonesian Language</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/eebfbc5381a1e506ff17b5f1371d1ad83d5fd642/hovercard" href="https://github.com/navidrome/navidrome/commit/eebfbc5381a1e506ff17b5f1371d1ad83d5fd642"><tt>eebfbc5</tt></a> Revert walk_dir_tree.go back to using the os package.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a5dfd2d4a14ac5a5b87fc6016e57b94d2b964a69/hovercard" href="https://github.com/navidrome/navidrome/commit/a5dfd2d4a14ac5a5b87fc6016e57b94d2b964a69"><tt>a5dfd2d</tt></a> Format subsonic response snapshots</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/77735228035c1c6c80c2eb23644b1a43a9285c84/hovercard" href="https://github.com/navidrome/navidrome/commit/77735228035c1c6c80c2eb23644b1a43a9285c84"><tt>7773522</tt></a> Expose OpenSubsonic fields Genres, MusicBrainzId, Bpm, Comment (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1983913613" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2597" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2597/hovercard" href="https://github.com/navidrome/navidrome/pull/2597">#2597</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/53607fe11446a1bac581bc551ba740456dd4720d/hovercard" href="https://github.com/navidrome/navidrome/commit/53607fe11446a1bac581bc551ba740456dd4720d"><tt>53607fe</tt></a> Publish all new images to Docker Registry</li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.50.0
+ 2023-11-18T16:53:22+01:00
+
+ v0.50.0
+ <h2>New in this release</h2>
+<h3>Jukebox mode</h3>
+<p>One of the most <a href="https://github.com/navidrome/navidrome/issues/364" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/364/hovercard">requested features</a> is finally available: Navidrome's Jukebox feature is a built-in functionality that allows users to play music directly to the server's audio. This essentially turns your server into a jukebox, enabling you to play songs or playlists remotely through a supported Subsonic client. See full documentation <a href="https://www.navidrome.org/docs/usage/jukebox/" rel="nofollow">here</a>. Can't thank enough <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ms140569/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ms140569">@ms140569</a> for his <a href="https://github.com/navidrome/navidrome/pull/2289" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2289/hovercard">dedication</a> to this.</p>
+<h3>Album splitting by Original/Release date</h3>
+<p>Another big feature is the support for disambiguating album editions by Original/Release Date, <a href="https://github.com/navidrome/navidrome/pull/2162" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2162/hovercard">contributed</a> by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/certuna/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/certuna">@certuna</a>.</p>
+<p><strong>Very Important:</strong> This feature is controlled by the <a href="https://www.navidrome.org/docs/usage/configuration-options/#:~:text=Scanner.GroupAlbumReleases" rel="nofollow">Scanner.GroupAlbumReleases</a> config option. The default is <code>false</code>, meaning split is the default behaviour. This has a side effect that Navidrome will think all albums are new, and they will lose their star/love information, as well as play counts. If you don't want this behaviour, set <code>Scanner.GroupAlbumReleases</code> to <code>true</code> before upgrading.</p>
+<h3>Better networking support</h3>
+<p>Now Navidrome supports HTTPS out of the box. You need to provide a certificate and key as options (See new <code>ND_TLSCERT</code>/<code>ND_TLSKEY</code> <a href="https://www.navidrome.org/docs/usage/configuration-options/#:~:text=false-,TLSCert,-ND_TLSCERT" rel="nofollow">config options</a>). One more thing: Now the <code>Address</code> config option can specify a Unix socket file instead of a IP address. For that set <code>Address</code> (or <code>ND_ADDRESS</code>) to <code>unix:/path/to/socket/file</code>.</p>
+<p>A big thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ms140569/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ms140569">@ms140569</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/certuna/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/certuna">@certuna</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a> and all <a href="https://github.com/navidrome/navidrome/graphs/contributors?from=2023-01-31&to=2023-11-16&type=c">contributors</a> that participated in this release.</p>
+<h2>Highlights</h2>
+<ul>
+<li>[UI] Don't pump the volume up to 100% if it is not in a mobile device. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1624681509" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2255" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2255/hovercard" href="https://github.com/navidrome/navidrome/issues/2255">#2255</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tessharp/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tessharp">@tessharp</a></li>
+<li>[UI] Add option to allow shares to be downloaded</li>
+<li>[UI] Make AlbumArtists clickable in AlbumSongs view. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1148875395" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1627" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1627/hovercard" href="https://github.com/navidrome/navidrome/issues/1627">#1627</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/krateng/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/krateng">@krateng</a></li>
+<li>[UI] Add Arabic (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zayedalsaidi/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zayedalsaidi">@zayedalsaidi</a>) and Korean (<a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bonik21/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bonik21">@bonik21</a>) translations</li>
+<li>[UI] Give page the right lang attribute (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1658872071" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2299" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2299/hovercard" href="https://github.com/navidrome/navidrome/pull/2299">#2299</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/subhajit20/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/subhajit20">@subhajit20</a></li>
+<li>[UI] Upgrade to Node v18</li>
+<li>[UI] Fix external link for artist page (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1909156486" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2533" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2533/hovercard" href="https://github.com/navidrome/navidrome/pull/2533">#2533</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[Scanner] Ignore Recycle Bins in Windows. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="873728507" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1074" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1074/hovercard" href="https://github.com/navidrome/navidrome/issues/1074">#1074</a></li>
+<li>[Scanner] Make playlist tracks match case-insensitive. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1224254951" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1720" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1720/hovercard" href="https://github.com/navidrome/navidrome/issues/1720">#1720</a></li>
+<li>[Scanner] Better support for ReplayGain tags. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[Scanner] Ignore playlists starting with a dot (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1743199521" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2390" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2390/hovercard" href="https://github.com/navidrome/navidrome/pull/2390">#2390</a>)</li>
+<li>[Scanner] Add support for lyrics tag <code>unsynced lyrics</code> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1749247769" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2391" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2391/hovercard" href="https://github.com/navidrome/navidrome/pull/2391">#2391</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/BenzLeung/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/BenzLeung">@BenzLeung</a></li>
+<li>[Scanner] Use file creation date for Date Added/CreatedAt (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1931904111" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2553" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2553/hovercard" href="https://github.com/navidrome/navidrome/pull/2553">#2553</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/certuna/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/certuna">@certuna</a></li>
+<li>[Server] Jukebox mode (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1649214078" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2289" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2289/hovercard" href="https://github.com/navidrome/navidrome/pull/2289">#2289</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ms140569/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ms140569">@ms140569</a></li>
+<li>[Server] Implement ArtistArt priority (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1632345788" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2266" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2266/hovercard" href="https://github.com/navidrome/navidrome/pull/2266">#2266</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/repomaa/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/repomaa">@repomaa</a></li>
+<li>[Server] Add option to load TLS cert/key, and use HTTPS</li>
+<li>[Server] Add support for listening on Unix socket. See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1059211212" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1477" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1477/hovercard" href="https://github.com/navidrome/navidrome/issues/1477">#1477</a></li>
+<li>[Server] Allow BaseURL to contain full server url, including scheme and host. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1583395234" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2183" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2183/hovercard" href="https://github.com/navidrome/navidrome/issues/2183">#2183</a></li>
+<li>[Server] Sanitize filenames inside zip files. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1267475690" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1763" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1763/hovercard" href="https://github.com/navidrome/navidrome/issues/1763">#1763</a></li>
+<li>[Server] Allow configuring cache folder (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1717364230" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2357" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2357/hovercard" href="https://github.com/navidrome/navidrome/pull/2357">#2357</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tomleb/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tomleb">@tomleb</a></li>
+<li>[Server] Fix ListenBrainz submission, includes duration (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1641560992" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2279" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2279/hovercard" href="https://github.com/navidrome/navidrome/pull/2279">#2279</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/phw/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/phw">@phw</a></li>
+<li>[Server] POST endpoint for importing m3u playlists (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1636178444" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2273" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2273/hovercard" href="https://github.com/navidrome/navidrome/pull/2273">#2273</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/spwats/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/spwats">@spwats</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/caiocotts/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/caiocotts">@caiocotts</a></li>
+<li>[Server] Upgrade to Go 1.21</li>
+<li>[Subsonic] Convert all Subsonic API ints to int32 as per specification <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1622289018" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2252" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2252/hovercard" href="https://github.com/navidrome/navidrome/pull/2252">#2252</a></li>
+<li>[Subsonic] Fix getSongsByGenre pagination. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1160338264" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1640" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1640/hovercard" href="https://github.com/navidrome/navidrome/issues/1640">#1640</a></li>
+<li>[Subsonic] Add initial support for OpenSubsonic. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1659583883" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2302" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2302/hovercard" href="https://github.com/navidrome/navidrome/pull/2302">#2302</a>)</li>
+<li>[Build] Publish docker images to ghcr.io (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1657971283" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2298" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2298/hovercard" href="https://github.com/navidrome/navidrome/pull/2298">#2298</a>). Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/onedr0p/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/onedr0p">@onedr0p</a> for the "push" ;)</li>
+</ul>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fee0f40a5290c8c3673611e962cff5b32ef896c6/hovercard" href="https://github.com/navidrome/navidrome/commit/fee0f40a5290c8c3673611e962cff5b32ef896c6"><tt>fee0f40</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9d2aaff8cb36a192bc1fd1f3eb37c3c7acfc50ec/hovercard" href="https://github.com/navidrome/navidrome/commit/9d2aaff8cb36a192bc1fd1f3eb37c3c7acfc50ec"><tt>9d2aaff</tt></a> Bump golang.org/x/tools from 0.13.0 to 0.15.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2ff4023cceb5553329436b2acf07954af59be948/hovercard" href="https://github.com/navidrome/navidrome/commit/2ff4023cceb5553329436b2acf07954af59be948"><tt>2ff4023</tt></a> Bump golang.org/x/image from 0.12.0 to 0.14.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/79870b1090bb70fd449c8aee3d837b3fa0804c36/hovercard" href="https://github.com/navidrome/navidrome/commit/79870b1090bb70fd449c8aee3d837b3fa0804c36"><tt>79870b1</tt></a> Do not empty old artist metadata (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1782140111" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2423" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2423/hovercard" href="https://github.com/navidrome/navidrome/pull/2423">#2423</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7a858a2db31dc42d724fbaaccff32663bb329b2c/hovercard" href="https://github.com/navidrome/navidrome/commit/7a858a2db31dc42d724fbaaccff32663bb329b2c"><tt>7a858a2</tt></a> Fix external link for artist page if LastFM is missinb but Musicbrainz is not (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1909156486" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2533" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2533/hovercard" href="https://github.com/navidrome/navidrome/pull/2533">#2533</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9cefaf66a4ca4c8e4c53d694b8fb11a94852ee50/hovercard" href="https://github.com/navidrome/navidrome/commit/9cefaf66a4ca4c8e4c53d694b8fb11a94852ee50"><tt>9cefaf6</tt></a> Bump github.com/onsi/gomega from 1.29.0 to 1.30.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3debd31b1281672bd31f3becc5efc6615c6d2ecd/hovercard" href="https://github.com/navidrome/navidrome/commit/3debd31b1281672bd31f3becc5efc6615c6d2ecd"><tt>3debd31</tt></a> Add more replaygain tests, fix wma (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1715775505" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2356" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2356/hovercard" href="https://github.com/navidrome/navidrome/pull/2356">#2356</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/24d9fb5b48e2aee6435bb53eaf74d152abeb3c84/hovercard" href="https://github.com/navidrome/navidrome/commit/24d9fb5b48e2aee6435bb53eaf74d152abeb3c84"><tt>24d9fb5</tt></a> Update translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1765074620" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2409" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2409/hovercard" href="https://github.com/navidrome/navidrome/pull/2409">#2409</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/40841ab9177616a0af22022515832adea272f543/hovercard" href="https://github.com/navidrome/navidrome/commit/40841ab9177616a0af22022515832adea272f543"><tt>40841ab</tt></a> Small date mapping fix (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1977492814" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2584" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2584/hovercard" href="https://github.com/navidrome/navidrome/pull/2584">#2584</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bae5fc946bdaca9f3707111b8d1f8843498a9d6a/hovercard" href="https://github.com/navidrome/navidrome/commit/bae5fc946bdaca9f3707111b8d1f8843498a9d6a"><tt>bae5fc9</tt></a> Fix hardcoded IPv4 literals (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1985907916" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2602" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2602/hovercard" href="https://github.com/navidrome/navidrome/pull/2602">#2602</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e055826068c490c239f6ba68a048f4c8ff0c1d02/hovercard" href="https://github.com/navidrome/navidrome/commit/e055826068c490c239f6ba68a048f4c8ff0c1d02"><tt>e055826</tt></a> Fix devcontainer for Go 1.21</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/54bde266b4ba555ba3303bf429a0dbb68e65d721/hovercard" href="https://github.com/navidrome/navidrome/commit/54bde266b4ba555ba3303bf429a0dbb68e65d721"><tt>54bde26</tt></a> Bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.18</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3a7376901bfda3e1d8b6597bf724ada0a52ecb59/hovercard" href="https://github.com/navidrome/navidrome/commit/3a7376901bfda3e1d8b6597bf724ada0a52ecb59"><tt>3a73769</tt></a> Bump golang.org/x/sync from 0.3.0 to 0.5.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/de3d870100ae351f86911b7d56c4fd1f199acce2/hovercard" href="https://github.com/navidrome/navidrome/commit/de3d870100ae351f86911b7d56c4fd1f199acce2"><tt>de3d870</tt></a> Bump github.com/spf13/cobra from 1.7.0 to 1.8.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/03175e1a9df2e0260453c8da87cd03c0f9f4c0fe/hovercard" href="https://github.com/navidrome/navidrome/commit/03175e1a9df2e0260453c8da87cd03c0f9f4c0fe"><tt>03175e1</tt></a> Use file creation date for Date Added/CreatedAt (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1931904111" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2553" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2553/hovercard" href="https://github.com/navidrome/navidrome/pull/2553">#2553</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/26472f46fed877eb8decfe6f0a9aea3160514fce/hovercard" href="https://github.com/navidrome/navidrome/commit/26472f46fed877eb8decfe6f0a9aea3160514fce"><tt>26472f4</tt></a> POST endpoint for importing m3u playlists - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1528757702" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2078" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2078/hovercard" href="https://github.com/navidrome/navidrome/issues/2078">#2078</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1636178444" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2273" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2273/hovercard" href="https://github.com/navidrome/navidrome/pull/2273">#2273</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6bca7531aa8916e706419ff3bea297478dd20011/hovercard" href="https://github.com/navidrome/navidrome/commit/6bca7531aa8916e706419ff3bea297478dd20011"><tt>6bca753</tt></a> Bump @babel/traverse from 7.19.3 to 7.23.2 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/68d1d5c99f33cc22a8d447b984efbed614d53335/hovercard" href="https://github.com/navidrome/navidrome/commit/68d1d5c99f33cc22a8d447b984efbed614d53335"><tt>68d1d5c</tt></a> Bump github.com/lestrrat-go/jwx/v2 from 2.0.12 to 2.0.16</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/db6c46091e64ed217117fee4ad5e94a8bde32b24/hovercard" href="https://github.com/navidrome/navidrome/commit/db6c46091e64ed217117fee4ad5e94a8bde32b24"><tt>db6c460</tt></a> Bump github.com/beego/beego/v2 from 2.0.7 to 2.1.3</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4cd916bb78c1b6c85ec654eb66dc58e757870245/hovercard" href="https://github.com/navidrome/navidrome/commit/4cd916bb78c1b6c85ec654eb66dc58e757870245"><tt>4cd916b</tt></a> Bump react-router-dom from 5.3.0 to 5.3.4 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c40e83efab69bdbec1893abf66467eac4fc9cbd1/hovercard" href="https://github.com/navidrome/navidrome/commit/c40e83efab69bdbec1893abf66467eac4fc9cbd1"><tt>c40e83e</tt></a> Bump github.com/go-chi/chi/v5 from 5.0.8 to 5.0.10</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9094f41f25ad2807e6c27965e0a5421bd888b9a0/hovercard" href="https://github.com/navidrome/navidrome/commit/9094f41f25ad2807e6c27965e0a5421bd888b9a0"><tt>9094f41</tt></a> Improve TopSongs findMatchingTrack by de-prioritizing compilations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1906909573" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2532" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2532/hovercard" href="https://github.com/navidrome/navidrome/pull/2532">#2532</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9ff95b6ced75ab42b91c1584a16dcddb478d60de/hovercard" href="https://github.com/navidrome/navidrome/commit/9ff95b6ced75ab42b91c1584a16dcddb478d60de"><tt>9ff95b6</tt></a> Bump github.com/onsi/gomega from 1.27.10 to 1.29.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/77ace8570c81545d7712ebf5c6222ad923d5c4ac/hovercard" href="https://github.com/navidrome/navidrome/commit/77ace8570c81545d7712ebf5c6222ad923d5c4ac"><tt>77ace85</tt></a> Coalesce genre to null for smart playlist (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1960399685" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2573" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2573/hovercard" href="https://github.com/navidrome/navidrome/pull/2573">#2573</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/59f0c487e7e6943668c47321ef863291401f4a08/hovercard" href="https://github.com/navidrome/navidrome/commit/59f0c487e7e6943668c47321ef863291401f4a08"><tt>59f0c48</tt></a> Jukebox cleanup (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1933093019" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2554" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2554/hovercard" href="https://github.com/navidrome/navidrome/pull/2554">#2554</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2cd43581722caaf97a2b28b16f37689840b079a9/hovercard" href="https://github.com/navidrome/navidrome/commit/2cd43581722caaf97a2b28b16f37689840b079a9"><tt>2cd4358</tt></a> Make Jukebox available to Subsonic clients</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/248bf232ff3b5ec3d18573b94d4ad15a8f62e378/hovercard" href="https://github.com/navidrome/navidrome/commit/248bf232ff3b5ec3d18573b94d4ad15a8f62e378"><tt>248bf23</tt></a> Bump github.com/lestrrat-go/jwx/v2 from 2.0.11 to 2.0.12 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1850189900" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2480" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2480/hovercard" href="https://github.com/navidrome/navidrome/pull/2480">#2480</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b5664ab9053ba76a8fbfbc2dda407800cff0aae2/hovercard" href="https://github.com/navidrome/navidrome/commit/b5664ab9053ba76a8fbfbc2dda407800cff0aae2"><tt>b5664ab</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.11.0 to 2.12.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1870176684" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2497" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2497/hovercard" href="https://github.com/navidrome/navidrome/pull/2497">#2497</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ac7f94e620c4ef25ae131f3251108b426607bc90/hovercard" href="https://github.com/navidrome/navidrome/commit/ac7f94e620c4ef25ae131f3251108b426607bc90"><tt>ac7f94e</tt></a> Fix text being unreadable with Ligera theme (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1889186506" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2517" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2517/hovercard" href="https://github.com/navidrome/navidrome/pull/2517">#2517</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d45f9f172dfcaa04607ad4b26862bba60ed0c37a/hovercard" href="https://github.com/navidrome/navidrome/commit/d45f9f172dfcaa04607ad4b26862bba60ed0c37a"><tt>d45f9f1</tt></a> Bump github.com/google/uuid from 1.3.0 to 1.3.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1859878600" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2489" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2489/hovercard" href="https://github.com/navidrome/navidrome/pull/2489">#2489</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/250107d66849a3f782d81cfd065f7a77ffb92fbc/hovercard" href="https://github.com/navidrome/navidrome/commit/250107d66849a3f782d81cfd065f7a77ffb92fbc"><tt>250107d</tt></a> Bump golang.org/x/image from 0.9.0 to 0.12.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1880664561" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2507" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2507/hovercard" href="https://github.com/navidrome/navidrome/pull/2507">#2507</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/64b14db55a5a980c65d2f6d23a17876a5c033174/hovercard" href="https://github.com/navidrome/navidrome/commit/64b14db55a5a980c65d2f6d23a17876a5c033174"><tt>64b14db</tt></a> Add Korean Language (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1830659876" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2463" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2463/hovercard" href="https://github.com/navidrome/navidrome/pull/2463">#2463</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/73d1851c0d6702c5f678e7492cefa8a4fd855d83/hovercard" href="https://github.com/navidrome/navidrome/commit/73d1851c0d6702c5f678e7492cefa8a4fd855d83"><tt>73d1851</tt></a> Bump golang.org/x/tools from 0.9.1 to 0.13.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1889186288" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2516" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2516/hovercard" href="https://github.com/navidrome/navidrome/pull/2516">#2516</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1b16e1140f72759bd86096469e66c2432145438a/hovercard" href="https://github.com/navidrome/navidrome/commit/1b16e1140f72759bd86096469e66c2432145438a"><tt>1b16e11</tt></a> Jukebox mode (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1649214078" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2289" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2289/hovercard" href="https://github.com/navidrome/navidrome/pull/2289">#2289</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f941347cf189387b0bca8c9cac7c747e343b5b10/hovercard" href="https://github.com/navidrome/navidrome/commit/f941347cf189387b0bca8c9cac7c747e343b5b10"><tt>f941347</tt></a> Upgrade to Go 1.21 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1843467848" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2475" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2475/hovercard" href="https://github.com/navidrome/navidrome/pull/2475">#2475</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1b5cefdadad2c0027bb454c65ab7933fd6074632/hovercard" href="https://github.com/navidrome/navidrome/commit/1b5cefdadad2c0027bb454c65ab7933fd6074632"><tt>1b5cefd</tt></a> Bump github.com/onsi/gomega from 1.27.8 to 1.27.9 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1816921282" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2450" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2450/hovercard" href="https://github.com/navidrome/navidrome/pull/2450">#2450</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4cf25fc611fe3deef2b57c3b8f74f6cc2baaf847/hovercard" href="https://github.com/navidrome/navidrome/commit/4cf25fc611fe3deef2b57c3b8f74f6cc2baaf847"><tt>4cf25fc</tt></a> Bump github.com/microcosm-cc/bluemonday from 1.0.24 to 1.0.25 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1816468429" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2449" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2449/hovercard" href="https://github.com/navidrome/navidrome/pull/2449">#2449</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/14ba83ea1b388eab6aac9ec901acbe731c4f319f/hovercard" href="https://github.com/navidrome/navidrome/commit/14ba83ea1b388eab6aac9ec901acbe731c4f319f"><tt>14ba83e</tt></a> Bump github.com/go-chi/chi/v5 from 5.0.8 to 5.0.10 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1808248226" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2444" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2444/hovercard" href="https://github.com/navidrome/navidrome/pull/2444">#2444</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/08f3fd13438cfa7f33791c49e765dbf1c452199c/hovercard" href="https://github.com/navidrome/navidrome/commit/08f3fd13438cfa7f33791c49e765dbf1c452199c"><tt>08f3fd1</tt></a> Bump github.com/pressly/goose/v3 from 3.13.1 to 3.13.4 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1797237222" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2442" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2442/hovercard" href="https://github.com/navidrome/navidrome/pull/2442">#2442</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3d66f58725ec03ab7ee9d7408b2b14811aebfa76/hovercard" href="https://github.com/navidrome/navidrome/commit/3d66f58725ec03ab7ee9d7408b2b14811aebfa76"><tt>3d66f58</tt></a> Bump tough-cookie from 4.1.2 to 4.1.3 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1795633375" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2441" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2441/hovercard" href="https://github.com/navidrome/navidrome/pull/2441">#2441</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5b1ba3df05713eadf5d0c89df663e57ba70acec9/hovercard" href="https://github.com/navidrome/navidrome/commit/5b1ba3df05713eadf5d0c89df663e57ba70acec9"><tt>5b1ba3d</tt></a> Bump word-wrap from 1.2.3 to 1.2.4 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1810685509" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2446" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2446/hovercard" href="https://github.com/navidrome/navidrome/pull/2446">#2446</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a002830775c38e6f6af822f83b183d5e51909c9f/hovercard" href="https://github.com/navidrome/navidrome/commit/a002830775c38e6f6af822f83b183d5e51909c9f"><tt>a002830</tt></a> Fix EnableMediaFileCoverArt option default value</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7b600bed05d88f86d0bf251b1ca59641789cea66/hovercard" href="https://github.com/navidrome/navidrome/commit/7b600bed05d88f86d0bf251b1ca59641789cea66"><tt>7b600be</tt></a> Bump golang.org/x/tools from 0.10.0 to 0.11.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1790264027" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2432" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2432/hovercard" href="https://github.com/navidrome/navidrome/pull/2432">#2432</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7d0a1916d8515fb37a2a116b427b007621076c0d/hovercard" href="https://github.com/navidrome/navidrome/commit/7d0a1916d8515fb37a2a116b427b007621076c0d"><tt>7d0a191</tt></a> Bump golang.org/x/image from 0.8.0 to 0.9.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1790263271" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2430" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2430/hovercard" href="https://github.com/navidrome/navidrome/pull/2430">#2430</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c7fe311c7f6b417a52cca99933cfd8fc08facbfa/hovercard" href="https://github.com/navidrome/navidrome/commit/c7fe311c7f6b417a52cca99933cfd8fc08facbfa"><tt>c7fe311</tt></a> Bump github.com/go-chi/jwtauth/v5 from 5.1.0 to 5.1.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1786587756" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2427" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2427/hovercard" href="https://github.com/navidrome/navidrome/pull/2427">#2427</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4520a34648670dce138d0a0bf25b2e6191016769/hovercard" href="https://github.com/navidrome/navidrome/commit/4520a34648670dce138d0a0bf25b2e6191016769"><tt>4520a34</tt></a> Bump github.com/pressly/goose/v3 from 3.11.2 to 3.13.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1786588214" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2428" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2428/hovercard" href="https://github.com/navidrome/navidrome/pull/2428">#2428</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3e14c3c4f8263e006d30267132d0a1b0ae2ea8d1/hovercard" href="https://github.com/navidrome/navidrome/commit/3e14c3c4f8263e006d30267132d0a1b0ae2ea8d1"><tt>3e14c3c</tt></a> Add support for lyrics tag <code>unsynced lyrics</code> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1749247769" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2391" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2391/hovercard" href="https://github.com/navidrome/navidrome/pull/2391">#2391</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1e891d6b0743c22adf568875f43ba46ccc70b76b/hovercard" href="https://github.com/navidrome/navidrome/commit/1e891d6b0743c22adf568875f43ba46ccc70b76b"><tt>1e891d6</tt></a> Bump github.com/prometheus/client_golang from 1.15.1 to 1.16.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1763964531" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2408" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2408/hovercard" href="https://github.com/navidrome/navidrome/pull/2408">#2408</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/caf9b22d355488c7b7ec65341092022d8d3a192d/hovercard" href="https://github.com/navidrome/navidrome/commit/caf9b22d355488c7b7ec65341092022d8d3a192d"><tt>caf9b22</tt></a> Bump golang.org/x/image from 0.7.0 to 0.8.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1763964389" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2407" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2407/hovercard" href="https://github.com/navidrome/navidrome/pull/2407">#2407</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4f8742bcd164aa34d193e72c4c6c24406aebda8e/hovercard" href="https://github.com/navidrome/navidrome/commit/4f8742bcd164aa34d193e72c4c6c24406aebda8e"><tt>4f8742b</tt></a> Update translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1682853137" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2329" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2329/hovercard" href="https://github.com/navidrome/navidrome/pull/2329">#2329</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/26aa0f4fffdd5f402b4b3d3852f61d5131615d51/hovercard" href="https://github.com/navidrome/navidrome/commit/26aa0f4fffdd5f402b4b3d3852f61d5131615d51"><tt>26aa0f4</tt></a> Fix typo</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4898f31f6df000ff5d11cc0835110ca974fc706b/hovercard" href="https://github.com/navidrome/navidrome/commit/4898f31f6df000ff5d11cc0835110ca974fc706b"><tt>4898f31</tt></a> Add <code>format</code> target to Makefile</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9da013f33922a3312b741b8d6a60a5abb7f43682/hovercard" href="https://github.com/navidrome/navidrome/commit/9da013f33922a3312b741b8d6a60a5abb7f43682"><tt>9da013f</tt></a> Submit duration to ListenBrainz (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1761708941" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2405" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2405/hovercard" href="https://github.com/navidrome/navidrome/pull/2405">#2405</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5af67c78af385a0a89475ab2b90486d5e3bbacb9/hovercard" href="https://github.com/navidrome/navidrome/commit/5af67c78af385a0a89475ab2b90486d5e3bbacb9"><tt>5af67c7</tt></a> Upgrade Go dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c8608956be5ceed2504a3c6ad994a35fa4264813/hovercard" href="https://github.com/navidrome/navidrome/commit/c8608956be5ceed2504a3c6ad994a35fa4264813"><tt>c860895</tt></a> Fix listenbrainz submission and clarify MusicBrainz recording ID field (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1641560992" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2279" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2279/hovercard" href="https://github.com/navidrome/navidrome/pull/2279">#2279</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/36eda871f6dcba4709225ac582771a90a4b440df/hovercard" href="https://github.com/navidrome/navidrome/commit/36eda871f6dcba4709225ac582771a90a4b440df"><tt>36eda87</tt></a> Fix locale-dependent tests. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1761253452" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2402" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2402/hovercard" href="https://github.com/navidrome/navidrome/issues/2402">#2402</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7c92a732085a8617b5592061043709fa1aeea3f4/hovercard" href="https://github.com/navidrome/navidrome/commit/7c92a732085a8617b5592061043709fa1aeea3f4"><tt>7c92a73</tt></a> Ignore playlists starting with a dot - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1724810552" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2367" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2367/hovercard" href="https://github.com/navidrome/navidrome/issues/2367">#2367</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1743199521" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2390" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2390/hovercard" href="https://github.com/navidrome/navidrome/pull/2390">#2390</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f5d97823e8e1ed28d9ea02e20495e6e6d4a6a52d/hovercard" href="https://github.com/navidrome/navidrome/commit/f5d97823e8e1ed28d9ea02e20495e6e6d4a6a52d"><tt>f5d9782</tt></a> Fix original date (TDOR) mapping for ffmpeg extractor</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d6083dab6eaf2988e770608162e9a41e1f91293c/hovercard" href="https://github.com/navidrome/navidrome/commit/d6083dab6eaf2988e770608162e9a41e1f91293c"><tt>d6083da</tt></a> Re-apply "Refactor walkDirTree to use fs.FS" but remove context cancelation logic.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6b3b4d83ffcf273b01985709c8bc5df12bbb8286/hovercard" href="https://github.com/navidrome/navidrome/commit/6b3b4d83ffcf273b01985709c8bc5df12bbb8286"><tt>6b3b4d8</tt></a> Revert "Refactor walkDirTree to use fs.FS"</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3853c3318f67b41a9e4cb768618315ff77846fdb/hovercard" href="https://github.com/navidrome/navidrome/commit/3853c3318f67b41a9e4cb768618315ff77846fdb"><tt>3853c33</tt></a> Refactor walkDirTree to use fs.FS</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/257ccc5f4323bb2f39e09fa903546edf7cdf370a/hovercard" href="https://github.com/navidrome/navidrome/commit/257ccc5f4323bb2f39e09fa903546edf7cdf370a"><tt>257ccc5</tt></a> Allow configuring cache folder (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1717364230" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2357" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2357/hovercard" href="https://github.com/navidrome/navidrome/pull/2357">#2357</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cec5fb0d6c23a7f337ef5a4cf11f934178267e2c/hovercard" href="https://github.com/navidrome/navidrome/commit/cec5fb0d6c23a7f337ef5a4cf11f934178267e2c"><tt>cec5fb0</tt></a> Fix lint errors</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3fc4313e8905e355edcf13c69a007b12af155c86/hovercard" href="https://github.com/navidrome/navidrome/commit/3fc4313e8905e355edcf13c69a007b12af155c86"><tt>3fc4313</tt></a> Move string slice functions to slice package as generic functions</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c4c99b7f753ec78a250847d7775e67c6f9e63cd9/hovercard" href="https://github.com/navidrome/navidrome/commit/c4c99b7f753ec78a250847d7775e67c6f9e63cd9"><tt>c4c99b7</tt></a> Make <code>GroupAlbumReleases</code> false by default</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a984bbbc7a0cdbb5528040ea7abff2c9c94a76b9/hovercard" href="https://github.com/navidrome/navidrome/commit/a984bbbc7a0cdbb5528040ea7abff2c9c94a76b9"><tt>a984bbb</tt></a> Make SmartPlaylists to always be seen as changed for Subsonic clients.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ba067667c9d837683f63938398e8875f98bcd1f2/hovercard" href="https://github.com/navidrome/navidrome/commit/ba067667c9d837683f63938398e8875f98bcd1f2"><tt>ba06766</tt></a> Fix date formatting to use UTC</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e38a690632c3cb5ba223145f34ec49e14f701a43/hovercard" href="https://github.com/navidrome/navidrome/commit/e38a690632c3cb5ba223145f34ec49e14f701a43"><tt>e38a690</tt></a> Order albums by full original date (this time is for real). Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1046886801" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1452" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1452/hovercard" href="https://github.com/navidrome/navidrome/issues/1452">#1452</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7d0656f44ac5e15f2cd66f492461b26e0d1c8e4e/hovercard" href="https://github.com/navidrome/navidrome/commit/7d0656f44ac5e15f2cd66f492461b26e0d1c8e4e"><tt>7d0656f</tt></a> Order albums by full original date. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1046886801" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1452" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1452/hovercard" href="https://github.com/navidrome/navidrome/issues/1452">#1452</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/11f33ff8b60b803493f0f12f8f373d7a08677854/hovercard" href="https://github.com/navidrome/navidrome/commit/11f33ff8b60b803493f0f12f8f373d7a08677854"><tt>11f33ff</tt></a> Update dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/611363fca7e4a5861551f8788880961e4b9ddc5d/hovercard" href="https://github.com/navidrome/navidrome/commit/611363fca7e4a5861551f8788880961e4b9ddc5d"><tt>611363f</tt></a> Add missing translation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/85d43d23668ef8a0ea0e3391371d5bcf6cfec9e7/hovercard" href="https://github.com/navidrome/navidrome/commit/85d43d23668ef8a0ea0e3391371d5bcf6cfec9e7"><tt>85d43d2</tt></a> Add tests to date roll-ups</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8faaa3cf917ed75a5bcabc5efa218ea4bd2d14a3/hovercard" href="https://github.com/navidrome/navidrome/commit/8faaa3cf917ed75a5bcabc5efa218ea4bd2d14a3"><tt>8faaa3c</tt></a> Use table specs in getDate tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/20462c52a5905a97ed568f7c97cabc0c63cad261/hovercard" href="https://github.com/navidrome/navidrome/commit/20462c52a5905a97ed568f7c97cabc0c63cad261"><tt>20462c5</tt></a> Restore album "year" translation string</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/52b77e41944e924226f87cc38c5dfe7f87029bb5/hovercard" href="https://github.com/navidrome/navidrome/commit/52b77e41944e924226f87cc38c5dfe7f87029bb5"><tt>52b77e4</tt></a> Support for Original Date, Release Date & splitting/grouping of album editions (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1580509936" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2162" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2162/hovercard" href="https://github.com/navidrome/navidrome/pull/2162">#2162</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/010ba0d15c09eae9dc445330e0ef4583af5aec7e/hovercard" href="https://github.com/navidrome/navidrome/commit/010ba0d15c09eae9dc445330e0ef4583af5aec7e"><tt>010ba0d</tt></a> Use table specs in ReplayGain tests.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9b7fac5147d4ea8519c78b469a511eb9cdbfa73e/hovercard" href="https://github.com/navidrome/navidrome/commit/9b7fac5147d4ea8519c78b469a511eb9cdbfa73e"><tt>9b7fac5</tt></a> Update default transcoding commands (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1681727381" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2325" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2325/hovercard" href="https://github.com/navidrome/navidrome/pull/2325">#2325</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/be12c12b2842099c56db385488c9fc0197a39f30/hovercard" href="https://github.com/navidrome/navidrome/commit/be12c12b2842099c56db385488c9fc0197a39f30"><tt>be12c12</tt></a> Remove unused Badge component from ActivityPanel icon</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a19a643c656f2a9e312e278b777d29f5d0495896/hovercard" href="https://github.com/navidrome/navidrome/commit/a19a643c656f2a9e312e278b777d29f5d0495896"><tt>a19a643</tt></a> Manually add replaygain tags for m4a (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1703297703" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2346" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2346/hovercard" href="https://github.com/navidrome/navidrome/pull/2346">#2346</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f9b060af1841c49ddb3aa57fcaca7ed0f38d3f84/hovercard" href="https://github.com/navidrome/navidrome/commit/f9b060af1841c49ddb3aa57fcaca7ed0f38d3f84"><tt>f9b060a</tt></a> Removed onBackdropClick deprecated property</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a3d78e95f2761b363392d7e687d0e5914d73a249/hovercard" href="https://github.com/navidrome/navidrome/commit/a3d78e95f2761b363392d7e687d0e5914d73a249"><tt>a3d78e9</tt></a> Fix Monokai theme. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1710639720" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2353" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2353/hovercard" href="https://github.com/navidrome/navidrome/issues/2353">#2353</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d85b06332c4a37e8eccdacfc3d41a9589070d9d2/hovercard" href="https://github.com/navidrome/navidrome/commit/d85b06332c4a37e8eccdacfc3d41a9589070d9d2"><tt>d85b063</tt></a> Fix build</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bfa10cab629d51d26f9f7e9483eec0adc0682bbe/hovercard" href="https://github.com/navidrome/navidrome/commit/bfa10cab629d51d26f9f7e9483eec0adc0682bbe"><tt>bfa10ca</tt></a> Upgrade to Node v18</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/08fcb430e6fd6d316aacaf136a906012008a9fec/hovercard" href="https://github.com/navidrome/navidrome/commit/08fcb430e6fd6d316aacaf136a906012008a9fec"><tt>08fcb43</tt></a> Upgrade React-Admin to 3.19.12</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5d02df62d0e9b09e9e320084fb7a2fb79873f542/hovercard" href="https://github.com/navidrome/navidrome/commit/5d02df62d0e9b09e9e320084fb7a2fb79873f542"><tt>5d02df6</tt></a> Fix eslint error</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c3a2e084b32be302c546c2552cc653051a81bfd6/hovercard" href="https://github.com/navidrome/navidrome/commit/c3a2e084b32be302c546c2552cc653051a81bfd6"><tt>c3a2e08</tt></a> Update caniuse-lite</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4296741ec06201a1345e24f2cad201b8a62575a3/hovercard" href="https://github.com/navidrome/navidrome/commit/4296741ec06201a1345e24f2cad201b8a62575a3"><tt>4296741</tt></a> Simplify EventStream handling</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6bee4ed147a410c1a6fb3ebef8dfa5e737bc415e/hovercard" href="https://github.com/navidrome/navidrome/commit/6bee4ed147a410c1a6fb3ebef8dfa5e737bc415e"><tt>6bee4ed</tt></a> Sanitize filenames inside zip files. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1267475690" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1763" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1763/hovercard" href="https://github.com/navidrome/navidrome/issues/1763">#1763</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e62c3edc1ca8f81292739379afad28258e48caab/hovercard" href="https://github.com/navidrome/navidrome/commit/e62c3edc1ca8f81292739379afad28258e48caab"><tt>e62c3ed</tt></a> Revert: Change fix formatting command</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0a08d0af3b7265e8b2b601cdee52e396bac70129/hovercard" href="https://github.com/navidrome/navidrome/commit/0a08d0af3b7265e8b2b601cdee52e396bac70129"><tt>0a08d0a</tt></a> Change fix formatting command</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ad513354b9db6149a25931695a5fdf16eebb3fc1/hovercard" href="https://github.com/navidrome/navidrome/commit/ad513354b9db6149a25931695a5fdf16eebb3fc1"><tt>ad51335</tt></a> Disable POEditor import job in forks</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a70b81f931a4672dc19369a1bbb82c05c814f454/hovercard" href="https://github.com/navidrome/navidrome/commit/a70b81f931a4672dc19369a1bbb82c05c814f454"><tt>a70b81f</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.9.4 to 2.9.5 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1710555455" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2352" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2352/hovercard" href="https://github.com/navidrome/navidrome/pull/2352">#2352</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0d920c783202ea8e1286009ab20c05b7fb260d9b/hovercard" href="https://github.com/navidrome/navidrome/commit/0d920c783202ea8e1286009ab20c05b7fb260d9b"><tt>0d920c7</tt></a> Bump github.com/prometheus/client_golang from 1.14.0 to 1.15.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1700673249" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2342" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2342/hovercard" href="https://github.com/navidrome/navidrome/pull/2342">#2342</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/957a73e052f58f41c39e53fe4e3f738e077033f5/hovercard" href="https://github.com/navidrome/navidrome/commit/957a73e052f58f41c39e53fe4e3f738e077033f5"><tt>957a73e</tt></a> Bump github.com/mileusna/useragent from 1.2.1 to 1.3.2 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1671695721" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2319" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2319/hovercard" href="https://github.com/navidrome/navidrome/pull/2319">#2319</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/abc418eaa2f1c15b2aacc43db9e4730b0493ee2b/hovercard" href="https://github.com/navidrome/navidrome/commit/abc418eaa2f1c15b2aacc43db9e4730b0493ee2b"><tt>abc418e</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.9.2 to 2.9.4 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1700673772" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2343" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2343/hovercard" href="https://github.com/navidrome/navidrome/pull/2343">#2343</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1128322011439ca860199ce0a4e2ba0a56161bce/hovercard" href="https://github.com/navidrome/navidrome/commit/1128322011439ca860199ce0a4e2ba0a56161bce"><tt>1128322</tt></a> Bump golang.org/x/tools from 0.8.0 to 0.9.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1708705750" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2350" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2350/hovercard" href="https://github.com/navidrome/navidrome/pull/2350">#2350</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2e479defd5a40b71560e00113ddc8dc83add7aea/hovercard" href="https://github.com/navidrome/navidrome/commit/2e479defd5a40b71560e00113ddc8dc83add7aea"><tt>2e479de</tt></a> Bump github.com/go-chi/httprate from 0.7.1 to 0.7.4 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1671695937" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2320" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2320/hovercard" href="https://github.com/navidrome/navidrome/pull/2320">#2320</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8311a7f215fe928ed7defc35eaefc5e931bd6839/hovercard" href="https://github.com/navidrome/navidrome/commit/8311a7f215fe928ed7defc35eaefc5e931bd6839"><tt>8311a7f</tt></a> Bump golang.org/x/sync from 0.1.0 to 0.2.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1700674055" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2344" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2344/hovercard" href="https://github.com/navidrome/navidrome/pull/2344">#2344</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6ec8f78076ac1f8647509566989849f532d22e42/hovercard" href="https://github.com/navidrome/navidrome/commit/6ec8f78076ac1f8647509566989849f532d22e42"><tt>6ec8f78</tt></a> Bump github.com/pressly/goose/v3 from 3.10.0 to 3.11.2 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1700672583" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2341" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2341/hovercard" href="https://github.com/navidrome/navidrome/pull/2341">#2341</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3e879d2a8c948db77f8d76bc29ed307a94743ade/hovercard" href="https://github.com/navidrome/navidrome/commit/3e879d2a8c948db77f8d76bc29ed307a94743ade"><tt>3e879d2</tt></a> Add K8s manifest (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1683772455" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2330" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2330/hovercard" href="https://github.com/navidrome/navidrome/pull/2330">#2330</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6d3d005fca3a12c5fe39fb5361ef37ede7a787f9/hovercard" href="https://github.com/navidrome/navidrome/commit/6d3d005fca3a12c5fe39fb5361ef37ede7a787f9"><tt>6d3d005</tt></a> Allow the setrlimit syscall - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1427274647" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1961" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1961/hovercard" href="https://github.com/navidrome/navidrome/issues/1961">#1961</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1687111314" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2333" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2333/hovercard" href="https://github.com/navidrome/navidrome/pull/2333">#2333</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c12510d6e2387e9cef942c5dad902baa82fe50ce/hovercard" href="https://github.com/navidrome/navidrome/commit/c12510d6e2387e9cef942c5dad902baa82fe50ce"><tt>c12510d</tt></a> Update README</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0bd73bd3f4eada4ee441d547fc9a87f357ab8a2c/hovercard" href="https://github.com/navidrome/navidrome/commit/0bd73bd3f4eada4ee441d547fc9a87f357ab8a2c"><tt>0bd73bd</tt></a> Better GH Action names</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8c120ee3c9bbfa29d0bae7e3b686b7eca0253bee/hovercard" href="https://github.com/navidrome/navidrome/commit/8c120ee3c9bbfa29d0bae7e3b686b7eca0253bee"><tt>8c120ee</tt></a> Better GH Action names</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9590b3c25d40a8ac931b4c1ed6c3c689368a39db/hovercard" href="https://github.com/navidrome/navidrome/commit/9590b3c25d40a8ac931b4c1ed6c3c689368a39db"><tt>9590b3c</tt></a> Use the highest resolution artist image from Spotify</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4887c3305381f8232aa059adac3f20b1a01095b4/hovercard" href="https://github.com/navidrome/navidrome/commit/4887c3305381f8232aa059adac3f20b1a01095b4"><tt>4887c33</tt></a> Bump golang.org/x packages</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/da21acba92fc8bb79a7b83383d50c0ad3d577897/hovercard" href="https://github.com/navidrome/navidrome/commit/da21acba92fc8bb79a7b83383d50c0ad3d577897"><tt>da21acb</tt></a> Give page the right lang attribute (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1658872071" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2299" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2299/hovercard" href="https://github.com/navidrome/navidrome/pull/2299">#2299</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9154e44eb472de394e33a69adc4abfe1614e2461/hovercard" href="https://github.com/navidrome/navidrome/commit/9154e44eb472de394e33a69adc4abfe1614e2461"><tt>9154e44</tt></a> Add initial support for OpenSubsonic. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1659583883" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2302" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2302/hovercard" href="https://github.com/navidrome/navidrome/pull/2302">#2302</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2e01063429f2f9de8b1ee3ccc0e27572c122ba7e/hovercard" href="https://github.com/navidrome/navidrome/commit/2e01063429f2f9de8b1ee3ccc0e27572c122ba7e"><tt>2e01063</tt></a> Update translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1589082643" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2198" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2198/hovercard" href="https://github.com/navidrome/navidrome/pull/2198">#2198</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/597e5abed6ef5ee2f0725cef7d6c293f72e2bfb9/hovercard" href="https://github.com/navidrome/navidrome/commit/597e5abed6ef5ee2f0725cef7d6c293f72e2bfb9"><tt>597e5ab</tt></a> Fix push develop to Docker Hub</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/92994efe48b7d6c8132a08a8bf27caced2cc65af/hovercard" href="https://github.com/navidrome/navidrome/commit/92994efe48b7d6c8132a08a8bf27caced2cc65af"><tt>92994ef</tt></a> Publish docker images to ghcr.io (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1657971283" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2298" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2298/hovercard" href="https://github.com/navidrome/navidrome/pull/2298">#2298</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9628b1389dc731dcc5f69b4e3ee04cefca91b444/hovercard" href="https://github.com/navidrome/navidrome/commit/9628b1389dc731dcc5f69b4e3ee04cefca91b444"><tt>9628b13</tt></a> Add help msg for JS formatting errors</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/347424009d8adbe5975f4a234d0f38b34d39c9fc/hovercard" href="https://github.com/navidrome/navidrome/commit/347424009d8adbe5975f4a234d0f38b34d39c9fc"><tt>3474240</tt></a> Show Player name, not client, in mobile view. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1172768705" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1659" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1659/hovercard" href="https://github.com/navidrome/navidrome/issues/1659">#1659</a>.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ecac74c2bdce11b21b9180be3f447ad18c8de6a4/hovercard" href="https://github.com/navidrome/navidrome/commit/ecac74c2bdce11b21b9180be3f447ad18c8de6a4"><tt>ecac74c</tt></a> Fix getSongsByGenre pagination. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1160338264" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1640" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1640/hovercard" href="https://github.com/navidrome/navidrome/issues/1640">#1640</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ddfde7bfc80344b51589949669e6186879e2dc93/hovercard" href="https://github.com/navidrome/navidrome/commit/ddfde7bfc80344b51589949669e6186879e2dc93"><tt>ddfde7b</tt></a> Run lint on latest Go 1.20.x</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/96c50d369a93540b9353d42126cde5516a887802/hovercard" href="https://github.com/navidrome/navidrome/commit/96c50d369a93540b9353d42126cde5516a887802"><tt>96c50d3</tt></a> Upgrade to Go 1.20.3 and GoRelease 1.16.1</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/310c816cdd21b568fe51ce18d0465d6dac84c7f3/hovercard" href="https://github.com/navidrome/navidrome/commit/310c816cdd21b568fe51ce18d0465d6dac84c7f3"><tt>310c816</tt></a> Use Go 1.20 for local cross-compilation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bd402fb2a8bf7779110f476dea6b4ee3c845abc0/hovercard" href="https://github.com/navidrome/navidrome/commit/bd402fb2a8bf7779110f476dea6b4ee3c845abc0"><tt>bd402fb</tt></a> Fix IntelliJ warning</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8bb141b73050d1f3915c4f6697494f17b0920608/hovercard" href="https://github.com/navidrome/navidrome/commit/8bb141b73050d1f3915c4f6697494f17b0920608"><tt>8bb141b</tt></a> Bump github.com/spf13/cobra from 1.6.1 to 1.7.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1654056688" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2293" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2293/hovercard" href="https://github.com/navidrome/navidrome/pull/2293">#2293</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f25b91b4d875a501d81c5d2a8361b10eef800ca1/hovercard" href="https://github.com/navidrome/navidrome/commit/f25b91b4d875a501d81c5d2a8361b10eef800ca1"><tt>f25b91b</tt></a> Remove any previous UNIX socket file</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f959701d9dbe55946727535af18e0d71cc21917f/hovercard" href="https://github.com/navidrome/navidrome/commit/f959701d9dbe55946727535af18e0d71cc21917f"><tt>f959701</tt></a> Bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1654010825" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2292" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2292/hovercard" href="https://github.com/navidrome/navidrome/pull/2292">#2292</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/61dd8d55cae746a08460a081f9b894d329de243b/hovercard" href="https://github.com/navidrome/navidrome/commit/61dd8d55cae746a08460a081f9b894d329de243b"><tt>61dd8d5</tt></a> Fix data race in scanner</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bbb946100036e626741b50205d38a34c0a25a13b/hovercard" href="https://github.com/navidrome/navidrome/commit/bbb946100036e626741b50205d38a34c0a25a13b"><tt>bbb9461</tt></a> Increase max Server-Sent Events' ID</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/95016f687ef49f30af85ab118533570cb1fb3497/hovercard" href="https://github.com/navidrome/navidrome/commit/95016f687ef49f30af85ab118533570cb1fb3497"><tt>95016f6</tt></a> Fix SQL migrations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c3cc7dee017b80e5f2ca63e415bcc97ead766cf6/hovercard" href="https://github.com/navidrome/navidrome/commit/c3cc7dee017b80e5f2ca63e415bcc97ead766cf6"><tt>c3cc7de</tt></a> Enable SQL migrations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7847f19c9dbd05662bae497cba8853fb13b948af/hovercard" href="https://github.com/navidrome/navidrome/commit/7847f19c9dbd05662bae497cba8853fb13b948af"><tt>7847f19</tt></a> Upgrade goose</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7a0df4429e28c989d342b3b40936043596b9a519/hovercard" href="https://github.com/navidrome/navidrome/commit/7a0df4429e28c989d342b3b40936043596b9a519"><tt>7a0df44</tt></a> Bump github.com/onsi/gomega from 1.27.5 to 1.27.6 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1648199617" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2288" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2288/hovercard" href="https://github.com/navidrome/navidrome/pull/2288">#2288</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6a8d2dc87d3594debb27fc3e2f94cb9bc00db1d7/hovercard" href="https://github.com/navidrome/navidrome/commit/6a8d2dc87d3594debb27fc3e2f94cb9bc00db1d7"><tt>6a8d2dc</tt></a> Only use valid images for artist.* artwork</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/de816e8e5d06e20fd8c503e7fd3b937f3a460ad3/hovercard" href="https://github.com/navidrome/navidrome/commit/de816e8e5d06e20fd8c503e7fd3b937f3a460ad3"><tt>de816e8</tt></a> Fix lint error</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b22d0366d5e3989bc327bad0ad29a0f0e9f177ad/hovercard" href="https://github.com/navidrome/navidrome/commit/b22d0366d5e3989bc327bad0ad29a0f0e9f177ad"><tt>b22d036</tt></a> Use channels for EventStream instead of diodes</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fea2de8f90c13ae19dc303bcb19dda81478479b9/hovercard" href="https://github.com/navidrome/navidrome/commit/fea2de8f90c13ae19dc303bcb19dda81478479b9"><tt>fea2de8</tt></a> Add Galician translation.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d6dd0aaae701787802a7a49a604190225b6d4f09/hovercard" href="https://github.com/navidrome/navidrome/commit/d6dd0aaae701787802a7a49a604190225b6d4f09"><tt>d6dd0aa</tt></a> Close SSE connection on write error</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/458017b11289c37ee34e56462b70c662c5164070/hovercard" href="https://github.com/navidrome/navidrome/commit/458017b11289c37ee34e56462b70c662c5164070"><tt>458017b</tt></a> Update Chinese translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1628871828" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2260" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2260/hovercard" href="https://github.com/navidrome/navidrome/pull/2260">#2260</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e6bfa2bb0b51c5436f3e2d7c4a75ab86c0417dfa/hovercard" href="https://github.com/navidrome/navidrome/commit/e6bfa2bb0b51c5436f3e2d7c4a75ab86c0417dfa"><tt>e6bfa2b</tt></a> Convert our usage of go-diodes into a simplified, generic version</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1c7fb74a1dc6273db5483bfb25268cd929b77d24/hovercard" href="https://github.com/navidrome/navidrome/commit/1c7fb74a1dc6273db5483bfb25268cd929b77d24"><tt>1c7fb74</tt></a> Fix writeEvents race condition.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/83ae2ba3e62b86283a896eb886979233b30077dc/hovercard" href="https://github.com/navidrome/navidrome/commit/83ae2ba3e62b86283a896eb886979233b30077dc"><tt>83ae2ba</tt></a> Fix race condition</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2ccc5bc941e0f4bd004f8173f542af110b101fd6/hovercard" href="https://github.com/navidrome/navidrome/commit/2ccc5bc941e0f4bd004f8173f542af110b101fd6"><tt>2ccc5bc</tt></a> Implement artist art priority (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1632345788" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2266" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2266/hovercard" href="https://github.com/navidrome/navidrome/pull/2266">#2266</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/406554f1c49b5f99ae17aa10b29cb31f8c439afa/hovercard" href="https://github.com/navidrome/navidrome/commit/406554f1c49b5f99ae17aa10b29cb31f8c439afa"><tt>406554f</tt></a> Remove some tools from dependencies, reducing the modules dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e89cdf6199f1e3116bf6df99fced73d1baa5f0e8/hovercard" href="https://github.com/navidrome/navidrome/commit/e89cdf6199f1e3116bf6df99fced73d1baa5f0e8"><tt>e89cdf6</tt></a> Fix flaky tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cf804a52ef7a98d5d8940186bf47e245b8476e53/hovercard" href="https://github.com/navidrome/navidrome/commit/cf804a52ef7a98d5d8940186bf47e245b8476e53"><tt>cf804a5</tt></a> Add support for listening on Unix socket.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/628fd69d3d2f6cf84d307c59790143c58dfc3b58/hovercard" href="https://github.com/navidrome/navidrome/commit/628fd69d3d2f6cf84d307c59790143c58dfc3b58"><tt>628fd69</tt></a> Fix race condition</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1d00d1e9869dcdbd3781457fcf3aa5c34b0ad5fa/hovercard" href="https://github.com/navidrome/navidrome/commit/1d00d1e9869dcdbd3781457fcf3aa5c34b0ad5fa"><tt>1d00d1e</tt></a> Fix <code>writeEvent</code> function.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/607c4067b8dcae4c2f321f1960cdad3707b1b43c/hovercard" href="https://github.com/navidrome/navidrome/commit/607c4067b8dcae4c2f321f1960cdad3707b1b43c"><tt>607c406</tt></a> Show translation changes on pipeline</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e3079d81ea07c80a6f6b11ca2089d3f442ec99bf/hovercard" href="https://github.com/navidrome/navidrome/commit/e3079d81ea07c80a6f6b11ca2089d3f442ec99bf"><tt>e3079d8</tt></a> More tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3bedd89c17b1462aa207a81daf9c2738c06e77a4/hovercard" href="https://github.com/navidrome/navidrome/commit/3bedd89c17b1462aa207a81daf9c2738c06e77a4"><tt>3bedd89</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/57829bfa4c1048c08ef0bc27e1221025a09974b6/hovercard" href="https://github.com/navidrome/navidrome/commit/57829bfa4c1048c08ef0bc27e1221025a09974b6"><tt>57829bf</tt></a> Bump github.com/lestrrat-go/jwx/v2 from 2.0.8 to 2.0.9 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1642554797" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2282" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2282/hovercard" href="https://github.com/navidrome/navidrome/pull/2282">#2282</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b998c05ca0b8f44fa703c01ec40ff60a98477b6e/hovercard" href="https://github.com/navidrome/navidrome/commit/b998c05ca0b8f44fa703c01ec40ff60a98477b6e"><tt>b998c05</tt></a> Some refactorings</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/05d381c26fe84f174b48a8278517df4ca8426d94/hovercard" href="https://github.com/navidrome/navidrome/commit/05d381c26fe84f174b48a8278517df4ca8426d94"><tt>05d381c</tt></a> Add more middleware tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/59a9c056b4e9ab89dd3b1c441414ed3d3f076afd/hovercard" href="https://github.com/navidrome/navidrome/commit/59a9c056b4e9ab89dd3b1c441414ed3d3f076afd"><tt>59a9c05</tt></a> Add Arabic translation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1640860506" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2277" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2277/hovercard" href="https://github.com/navidrome/navidrome/pull/2277">#2277</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0de81b83524ef7c1d89a26b560979790d7e35a47/hovercard" href="https://github.com/navidrome/navidrome/commit/0de81b83524ef7c1d89a26b560979790d7e35a47"><tt>0de81b8</tt></a> Bump caniuse-lite</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/91785ecf36b42c7f3210323120f7d55902c6a8a1/hovercard" href="https://github.com/navidrome/navidrome/commit/91785ecf36b42c7f3210323120f7d55902c6a8a1"><tt>91785ec</tt></a> Add tests for core.Archiver</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/65eeb5ec1a7fe50dca8c51e666964d7ff89827bb/hovercard" href="https://github.com/navidrome/navidrome/commit/65eeb5ec1a7fe50dca8c51e666964d7ff89827bb"><tt>65eeb5e</tt></a> Add tests for serverAddressMiddleware</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/17e0cd55042f0589ed54600853163255cec302cd/hovercard" href="https://github.com/navidrome/navidrome/commit/17e0cd55042f0589ed54600853163255cec302cd"><tt>17e0cd5</tt></a> Shuffle the tests, just in case (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1634520546" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2272" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2272/hovercard" href="https://github.com/navidrome/navidrome/pull/2272">#2272</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3a6d2dcd49de5cafd7414ed2609e4e8b1cf7bf6b/hovercard" href="https://github.com/navidrome/navidrome/commit/3a6d2dcd49de5cafd7414ed2609e4e8b1cf7bf6b"><tt>3a6d2dc</tt></a> More log redaction</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/183b462fedce190b481980b2761fca760fc6911b/hovercard" href="https://github.com/navidrome/navidrome/commit/183b462fedce190b481980b2761fca760fc6911b"><tt>183b462</tt></a> Fix zip comments in Share downloads.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/16fc4eb7926c43935271cb95e17eeb0d5c74d2fe/hovercard" href="https://github.com/navidrome/navidrome/commit/16fc4eb7926c43935271cb95e17eeb0d5c74d2fe"><tt>16fc4eb</tt></a> Fix missing extensions in Share downloads.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6fee744d996157584b040315d643b36ee51a66be/hovercard" href="https://github.com/navidrome/navidrome/commit/6fee744d996157584b040315d643b36ee51a66be"><tt>6fee744</tt></a> Bump github.com/onsi/gomega from 1.27.3 to 1.27.4 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1632603643" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2268" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2268/hovercard" href="https://github.com/navidrome/navidrome/pull/2268">#2268</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/74d5c7bc82970dfb0d8ae89c00c263371967addd/hovercard" href="https://github.com/navidrome/navidrome/commit/74d5c7bc82970dfb0d8ae89c00c263371967addd"><tt>74d5c7b</tt></a> Bump github.com/golangci/golangci-lint from 1.51.2 to 1.52.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1632604265" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2270" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2270/hovercard" href="https://github.com/navidrome/navidrome/pull/2270">#2270</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/880fc9e195d2c6a1b45a0f1a073fa8ccb052b610/hovercard" href="https://github.com/navidrome/navidrome/commit/880fc9e195d2c6a1b45a0f1a073fa8ccb052b610"><tt>880fc9e</tt></a> Bump github.com/Masterminds/squirrel from 1.5.3 to 1.5.4 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1632603842" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2269" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2269/hovercard" href="https://github.com/navidrome/navidrome/pull/2269">#2269</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1430aa108d96f75869d22280921ac44666ed78f9/hovercard" href="https://github.com/navidrome/navidrome/commit/1430aa108d96f75869d22280921ac44666ed78f9"><tt>1430aa1</tt></a> Update play_date on scrobble only when newer - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1630286881" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2262" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2262/hovercard" href="https://github.com/navidrome/navidrome/issues/2262">#2262</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1630289680" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2263" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2263/hovercard" href="https://github.com/navidrome/navidrome/pull/2263">#2263</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/673880d6615abb48784980ecb0fb729e3a70ad98/hovercard" href="https://github.com/navidrome/navidrome/commit/673880d6615abb48784980ecb0fb729e3a70ad98"><tt>673880d</tt></a> Add option to load TLS cert/key, and use HTTPS</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7ea111322b5a9d9bae0041a0db732bf06fc50ba2/hovercard" href="https://github.com/navidrome/navidrome/commit/7ea111322b5a9d9bae0041a0db732bf06fc50ba2"><tt>7ea1113</tt></a> Don't pump the volume up to 100% if it is not in a mobile device. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1624681509" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2255" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2255/hovercard" href="https://github.com/navidrome/navidrome/issues/2255">#2255</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/377e7ebd5230894965a50106b668c43edb7dc92a/hovercard" href="https://github.com/navidrome/navidrome/commit/377e7ebd5230894965a50106b668c43edb7dc92a"><tt>377e7eb</tt></a> Disable share downloading when <code>EnableDownloads</code> is false.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/23c483da1000832bc88882c3a140c05b87dec891/hovercard" href="https://github.com/navidrome/navidrome/commit/23c483da1000832bc88882c3a140c05b87dec891"><tt>23c483d</tt></a> Only freezes issues/prs after 120 days</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c380139606e9d8648174f4a17b8ef0379ce44c87/hovercard" href="https://github.com/navidrome/navidrome/commit/c380139606e9d8648174f4a17b8ef0379ce44c87"><tt>c380139</tt></a> Fix lint</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/63fbccf5a9f5711988b8451cd1733080886ee42f/hovercard" href="https://github.com/navidrome/navidrome/commit/63fbccf5a9f5711988b8451cd1733080886ee42f"><tt>63fbccf</tt></a> Enable memory profiling</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1f6ec1d9f53e793215dcd62e13f9a7296bf62bba/hovercard" href="https://github.com/navidrome/navidrome/commit/1f6ec1d9f53e793215dcd62e13f9a7296bf62bba"><tt>1f6ec1d</tt></a> Add pprof endpoint, disabled by default</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cad815635329908c815326558d3e47299a41527f/hovercard" href="https://github.com/navidrome/navidrome/commit/cad815635329908c815326558d3e47299a41527f"><tt>cad8156</tt></a> Bump webpack from 5.74.0 to 5.76.1 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1624799823" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2256" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2256/hovercard" href="https://github.com/navidrome/navidrome/pull/2256">#2256</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f7d4fcdcc1a59d1b4f835519efb402897757e371/hovercard" href="https://github.com/navidrome/navidrome/commit/f7d4fcdcc1a59d1b4f835519efb402897757e371"><tt>f7d4fcd</tt></a> Convert all Subsonic API ints to int32 as per specification (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1622289018" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2252" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2252/hovercard" href="https://github.com/navidrome/navidrome/pull/2252">#2252</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/002cb4ed71550a5642612d29dd90b63636961430/hovercard" href="https://github.com/navidrome/navidrome/commit/002cb4ed71550a5642612d29dd90b63636961430"><tt>002cb4e</tt></a> Update README.md</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e13eaebbde9984fc99f18292af726b102845f050/hovercard" href="https://github.com/navidrome/navidrome/commit/e13eaebbde9984fc99f18292af726b102845f050"><tt>e13eaeb</tt></a> Update README.md</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/539c0faedb111a0573edbf2cde892f119db12403/hovercard" href="https://github.com/navidrome/navidrome/commit/539c0faedb111a0573edbf2cde892f119db12403"><tt>539c0fa</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.9.0 to 2.9.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1621981833" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2251" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2251/hovercard" href="https://github.com/navidrome/navidrome/pull/2251">#2251</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4ccb6ccb09298d4ec6fcde1ecad56a1a6b446bb0/hovercard" href="https://github.com/navidrome/navidrome/commit/4ccb6ccb09298d4ec6fcde1ecad56a1a6b446bb0"><tt>4ccb6cc</tt></a> Update Chinese translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1620561314" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2250" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2250/hovercard" href="https://github.com/navidrome/navidrome/pull/2250">#2250</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ec0eb2866be8ccaf0b51ffc6b5fc148c748f4776/hovercard" href="https://github.com/navidrome/navidrome/commit/ec0eb2866be8ccaf0b51ffc6b5fc148c748f4776"><tt>ec0eb28</tt></a> Hide Love button on Artist Page when EnableFavourites=false. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1619837719" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2245" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2245/hovercard" href="https://github.com/navidrome/navidrome/issues/2245">#2245</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b520d8827a2af26188ef64c343040595ceb83ca1/hovercard" href="https://github.com/navidrome/navidrome/commit/b520d8827a2af26188ef64c343040595ceb83ca1"><tt>b520d88</tt></a> Add download button in the SharePlayer</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a7d3e6e1f1d168d74b42151b8a776240af9e3734/hovercard" href="https://github.com/navidrome/navidrome/commit/a7d3e6e1f1d168d74b42151b8a776240af9e3734"><tt>a7d3e6e</tt></a> Add option to allow share to be downloaded</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a22eef39f71309a85ac1c04877f623f69a533b52/hovercard" href="https://github.com/navidrome/navidrome/commit/a22eef39f71309a85ac1c04877f623f69a533b52"><tt>a22eef3</tt></a> Add share download endpoint</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/50d983865283b2d49901916ba959e95fb84ce589/hovercard" href="https://github.com/navidrome/navidrome/commit/50d983865283b2d49901916ba959e95fb84ce589"><tt>50d9838</tt></a> Add docker compose examples, with traefik or caddy and without, fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="690413705" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/476" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/476/hovercard" href="https://github.com/navidrome/navidrome/issues/476">#476</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1619599231" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2240" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2240/hovercard" href="https://github.com/navidrome/navidrome/pull/2240">#2240</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/016454c21760b6fff6dbd26002f24fb6df1ef6ee/hovercard" href="https://github.com/navidrome/navidrome/commit/016454c21760b6fff6dbd26002f24fb6df1ef6ee"><tt>016454c</tt></a> Bump golangci-lint version</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/41a5db72e7d223a9f38e2cb21eb6045a14910aa6/hovercard" href="https://github.com/navidrome/navidrome/commit/41a5db72e7d223a9f38e2cb21eb6045a14910aa6"><tt>41a5db7</tt></a> Update more dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6e6ec58429b5e7879bab5beace1ea782760c0f65/hovercard" href="https://github.com/navidrome/navidrome/commit/6e6ec58429b5e7879bab5beace1ea782760c0f65"><tt>6e6ec58</tt></a> Update sanitize and golang.org/x dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c88e1baa7c33a07180504fd32e9fd6a06f847fe5/hovercard" href="https://github.com/navidrome/navidrome/commit/c88e1baa7c33a07180504fd32e9fd6a06f847fe5"><tt>c88e1ba</tt></a> Make playlist tracks match case-insensitive. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1224254951" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1720" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1720/hovercard" href="https://github.com/navidrome/navidrome/issues/1720">#1720</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e16e3d2e7bde8094471ba07e25918f782868d9e5/hovercard" href="https://github.com/navidrome/navidrome/commit/e16e3d2e7bde8094471ba07e25918f782868d9e5"><tt>e16e3d2</tt></a> Fix pipeline.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/339a6239fdfd0508fff6a0fe10a68554244d3fd1/hovercard" href="https://github.com/navidrome/navidrome/commit/339a6239fdfd0508fff6a0fe10a68554244d3fd1"><tt>339a623</tt></a> Ignore Recycle Bins in Windows. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="873728507" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1074" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1074/hovercard" href="https://github.com/navidrome/navidrome/issues/1074">#1074</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/47f15ccbc37265b492d905b678722859a60b8949/hovercard" href="https://github.com/navidrome/navidrome/commit/47f15ccbc37265b492d905b678722859a60b8949"><tt>47f15cc</tt></a> Make AlbumArtists clickable in AlbumSongs view. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1148875395" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1627" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1627/hovercard" href="https://github.com/navidrome/navidrome/issues/1627">#1627</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9667f3cd48e5ed414c2182e3030bcb831a25f61d/hovercard" href="https://github.com/navidrome/navidrome/commit/9667f3cd48e5ed414c2182e3030bcb831a25f61d"><tt>9667f3c</tt></a> Add file path to toggleable columns in SongList view. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1223720800" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1719" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1719/hovercard" href="https://github.com/navidrome/navidrome/issues/1719">#1719</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5773fa0349431ddc855cde97c2e8c239fe490468/hovercard" href="https://github.com/navidrome/navidrome/commit/5773fa0349431ddc855cde97c2e8c239fe490468"><tt>5773fa0</tt></a> Fix discussions links</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/527c378c41199e074141f8363297fdc813cd64f6/hovercard" href="https://github.com/navidrome/navidrome/commit/527c378c41199e074141f8363297fdc813cd64f6"><tt>527c378</tt></a> Add feature request link to About dialog</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/caa0788853b6d65e889c7a22af81044d87d3ee11/hovercard" href="https://github.com/navidrome/navidrome/commit/caa0788853b6d65e889c7a22af81044d87d3ee11"><tt>caa0788</tt></a> Fine tune issue templates</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/40b14e6d81505d4af799abff0a9184463929b101/hovercard" href="https://github.com/navidrome/navidrome/commit/40b14e6d81505d4af799abff0a9184463929b101"><tt>40b14e6</tt></a> Add log-output to lock-threads bot</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/becd50eb68bc8d81e3d3b3a3737247c2ede239d0/hovercard" href="https://github.com/navidrome/navidrome/commit/becd50eb68bc8d81e3d3b3a3737247c2ede239d0"><tt>becd50e</tt></a> Remove debug-only option from stale bot</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/15b5aa91433b2f5fe3fd170add8d89b03266dbd1/hovercard" href="https://github.com/navidrome/navidrome/commit/15b5aa91433b2f5fe3fd170add8d89b03266dbd1"><tt>15b5aa9</tt></a> Add stale/lock-threads bot</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7987d982cf5bd178e96fbe9d9c812f64bb74c5e6/hovercard" href="https://github.com/navidrome/navidrome/commit/7987d982cf5bd178e96fbe9d9c812f64bb74c5e6"><tt>7987d98</tt></a> Fix pipeline's lint error message</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1dd074bbb4717369a0e17c154a0c7e937262399e/hovercard" href="https://github.com/navidrome/navidrome/commit/1dd074bbb4717369a0e17c154a0c7e937262399e"><tt>1dd074b</tt></a> Add new issue templates</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7eac9d2bbec0cd9fd35f9c0e77e258a37b4be9c2/hovercard" href="https://github.com/navidrome/navidrome/commit/7eac9d2bbec0cd9fd35f9c0e77e258a37b4be9c2"><tt>7eac9d2</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/362d8c50fe20d0afe8219fadbf8763bab12efd69/hovercard" href="https://github.com/navidrome/navidrome/commit/362d8c50fe20d0afe8219fadbf8763bab12efd69"><tt>362d8c5</tt></a> Bump github.com/onsi/gomega from 1.26.0 to 1.27.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1592263705" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2204" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2204/hovercard" href="https://github.com/navidrome/navidrome/pull/2204">#2204</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/01c604ba7b5fcc662cc912a774781c9135ecfedd/hovercard" href="https://github.com/navidrome/navidrome/commit/01c604ba7b5fcc662cc912a774781c9135ecfedd"><tt>01c604b</tt></a> Bump github.com/stretchr/testify from 1.8.1 to 1.8.2 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1601677368" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2216" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2216/hovercard" href="https://github.com/navidrome/navidrome/pull/2216">#2216</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2c129a2890ca2f7c58ca374220ee0cc5366d8fdd/hovercard" href="https://github.com/navidrome/navidrome/commit/2c129a2890ca2f7c58ca374220ee0cc5366d8fdd"><tt>2c129a2</tt></a> Bump golang.org/x/image from 0.0.0-20191009234506-e7c1f5e7dbb8 to 0.5.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1601677498" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2217" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2217/hovercard" href="https://github.com/navidrome/navidrome/pull/2217">#2217</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5fc4076aec631ed5e2ff0b19bf5fe4f4c3bac170/hovercard" href="https://github.com/navidrome/navidrome/commit/5fc4076aec631ed5e2ff0b19bf5fe4f4c3bac170"><tt>5fc4076</tt></a> Fix translation key</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d303ad26764c9af0423a981dd20af211a68e37f7/hovercard" href="https://github.com/navidrome/navidrome/commit/d303ad26764c9af0423a981dd20af211a68e37f7"><tt>d303ad2</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c4a68c8a0ac442be644314bb98ec22beda4807dd/hovercard" href="https://github.com/navidrome/navidrome/commit/c4a68c8a0ac442be644314bb98ec22beda4807dd"><tt>c4a68c8</tt></a> Fix build pipeline</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ad9ce98cc23c957b726a3118707cfe10f7e65be7/hovercard" href="https://github.com/navidrome/navidrome/commit/ad9ce98cc23c957b726a3118707cfe10f7e65be7"><tt>ad9ce98</tt></a> Use GoLang 1.20.1 in pipeline</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a134b1b608902b69333ad48128f4de6c276605ce/hovercard" href="https://github.com/navidrome/navidrome/commit/a134b1b608902b69333ad48128f4de6c276605ce"><tt>a134b1b</tt></a> Use sync/atomic package, now that we are at Go 1.19</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6dce4b2478752a1c49482046d29fa4998489da9e/hovercard" href="https://github.com/navidrome/navidrome/commit/6dce4b2478752a1c49482046d29fa4998489da9e"><tt>6dce4b2</tt></a> Remove custom atomic.Bool, we are now at Go 1.19</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/10108c63c9b5bdf2966ffb3239bbfd89683e37b7/hovercard" href="https://github.com/navidrome/navidrome/commit/10108c63c9b5bdf2966ffb3239bbfd89683e37b7"><tt>10108c6</tt></a> Allow BaseURL to contain full server url, including scheme and host. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1583395234" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2183" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2183/hovercard" href="https://github.com/navidrome/navidrome/issues/2183">#2183</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/aac6e2cb0774aa256c00098b2d88bf8af288da79/hovercard" href="https://github.com/navidrome/navidrome/commit/aac6e2cb0774aa256c00098b2d88bf8af288da79"><tt>aac6e2c</tt></a> Add path to cookies. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1111955539" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1580" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1580/hovercard" href="https://github.com/navidrome/navidrome/issues/1580">#1580</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0ffdb2eee0c424427614b1dca97e543335a99082/hovercard" href="https://github.com/navidrome/navidrome/commit/0ffdb2eee0c424427614b1dca97e543335a99082"><tt>0ffdb2e</tt></a> Bump minimum Go version to 1.19</li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.49.3
+ 2023-02-14T05:21:57+01:00
+
+ v0.49.3
+ <h2>Bug fix point release</h2>
+<p>There was a <a href="https://github.com/navidrome/navidrome/issues/2168" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2168/hovercard">show stopper bug</a> in 0.49.2, sorry about that. Also, the ReplayGain implementation is broken in Safari, and it was causing no audio to be played. In this release Safari should play normally as long as you don't turn ReplayGain on. This will be properly fixed and supported in Safari in a future release.</p>
+<p>This release fixes the following issues:</p>
+<ul>
+<li>Fix DB upgrade from versions before 0.49.0 (<a href="https://github.com/navidrome/navidrome/issues/2168" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2168/hovercard">#2168</a>)</li>
+<li>Only create context if gain mode active (<a href="https://github.com/navidrome/navidrome/issues/2173" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2173/hovercard">#2173</a>) <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>Limit Share Player size while handling theme properly (<a href="https://github.com/navidrome/navidrome/issues/2171" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2171/hovercard">#2171</a>) <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+</ul>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8b93962faddff839e4137ab371776b2c8b2e6cd4/hovercard" href="https://github.com/navidrome/navidrome/commit/8b93962faddff839e4137ab371776b2c8b2e6cd4"><tt>8b93962</tt></a> Limit share size while handling theme properly (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1581333586" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2171" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2171/hovercard" href="https://github.com/navidrome/navidrome/pull/2171">#2171</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b129cae0d8b1d8e672626bd74917d0ec1809cc1c/hovercard" href="https://github.com/navidrome/navidrome/commit/b129cae0d8b1d8e672626bd74917d0ec1809cc1c"><tt>b129cae</tt></a> Only create context if gain mode active (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1581552613" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2173" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2173/hovercard" href="https://github.com/navidrome/navidrome/pull/2173">#2173</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2400e4f60da705888298cb493948b1c008a1980c/hovercard" href="https://github.com/navidrome/navidrome/commit/2400e4f60da705888298cb493948b1c008a1980c"><tt>2400e4f</tt></a> Fix DB migration. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1581230179" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2168" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2168/hovercard" href="https://github.com/navidrome/navidrome/issues/2168">#2168</a></li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.49.2
+ 2023-02-12T02:53:00+01:00
+
+ v0.49.2
+ <h2>Bug fix point release</h2>
+<p>This release fixes the following issues:</p>
+<ul>
+<li>Fix Playlist delete and reorder actions (<a href="https://github.com/navidrome/navidrome/issues/2160" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2160/hovercard">#2160</a>)</li>
+<li>"Spell-Jacking" mitigation - prevent sensitive data leak from spell checker (<a href="https://github.com/navidrome/navidrome/issues/2091" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2091/hovercard">#2091</a>). Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/dlehammer/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/dlehammer">@dlehammer</a></li>
+<li>Don't cancel transcoding session if context is canceled</li>
+<li>Make <code>ffmpeg</code> path configurable (option <code>FFmpegPath</code>), also finds it automatically in current folder (<a href="https://github.com/navidrome/navidrome/issues/1932" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1932/hovercard">#1932</a>)</li>
+<li>Enable ReplayGain by default and always import RG tags</li>
+<li>Limit Share player width to 768px (<a href="https://github.com/navidrome/navidrome/issues/2164" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2164/hovercard">#2164</a>) Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>Abort start up if config file is invalid.</li>
+<li>New Option <code>EnableArtworkPrecache</code> to control the usage of Image Cache Warmer. See discussion in <a href="https://github.com/navidrome/navidrome/issues/2142#issuecomment-1419243832" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2142/hovercard">#2142</a></li>
+</ul>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3cd934abd7f7e680f0ea3595b6d750e80963f308/hovercard" href="https://github.com/navidrome/navidrome/commit/3cd934abd7f7e680f0ea3595b6d750e80963f308"><tt>3cd934a</tt></a> Update translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1577613248" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2159" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2159/hovercard" href="https://github.com/navidrome/navidrome/pull/2159">#2159</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/727632b616fa0a18a753ae6a66d4757ed36da228/hovercard" href="https://github.com/navidrome/navidrome/commit/727632b616fa0a18a753ae6a66d4757ed36da228"><tt>727632b</tt></a> Refactor play tracking</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9e268678f26336a69dc09bfcb863f881c8b647e9/hovercard" href="https://github.com/navidrome/navidrome/commit/9e268678f26336a69dc09bfcb863f881c8b647e9"><tt>9e26867</tt></a> Limit Share player to 768 px (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1580740517" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2164" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2164/hovercard" href="https://github.com/navidrome/navidrome/pull/2164">#2164</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bb29ad3b12a704039ae3d50dbff8b5e5463fa6e4/hovercard" href="https://github.com/navidrome/navidrome/commit/bb29ad3b12a704039ae3d50dbff8b5e5463fa6e4"><tt>bb29ad3</tt></a> Update Spanish translation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1580830308" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2165" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2165/hovercard" href="https://github.com/navidrome/navidrome/pull/2165">#2165</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b68ed2e4f90ecd5b5401697826a61ac9ce82d8a9/hovercard" href="https://github.com/navidrome/navidrome/commit/b68ed2e4f90ecd5b5401697826a61ac9ce82d8a9"><tt>b68ed2e</tt></a> Fix album's image_files</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0c3ac906b897599e7a08feb2da9bc140b0b3431e/hovercard" href="https://github.com/navidrome/navidrome/commit/0c3ac906b897599e7a08feb2da9bc140b0b3431e"><tt>0c3ac90</tt></a> Enable ReplayGain by default and always import RG tags</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b0e58cb885122bb234654938d575962776dca243/hovercard" href="https://github.com/navidrome/navidrome/commit/b0e58cb885122bb234654938d575962776dca243"><tt>b0e58cb</tt></a> Use Navidrome's own public images endpoint for <code>getAlbumInfo</code>'s imageURLs</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/806713719fcfff29d4c1e03bffd39fbb228e46b1/hovercard" href="https://github.com/navidrome/navidrome/commit/806713719fcfff29d4c1e03bffd39fbb228e46b1"><tt>8067137</tt></a> Add lastUpdated to <code>coverArt</code> ids. Helps with invalidating art cache client-side.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a3b8682d441bd486f933deff78de994bb00fb9a0/hovercard" href="https://github.com/navidrome/navidrome/commit/a3b8682d441bd486f933deff78de994bb00fb9a0"><tt>a3b8682</tt></a> Fix polling of buffered scrobbles</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0bbb54934b6578a6eeb6cfd72fb4e25e50ad1e7c/hovercard" href="https://github.com/navidrome/navidrome/commit/0bbb54934b6578a6eeb6cfd72fb4e25e50ad1e7c"><tt>0bbb549</tt></a> Use Go 1.20 in pipeline, drop support for 1.18</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/759ff844e2d0b89661b6c5c83c5609d3f859bbc5/hovercard" href="https://github.com/navidrome/navidrome/commit/759ff844e2d0b89661b6c5c83c5609d3f859bbc5"><tt>759ff84</tt></a> Make ffmpeg path configurable, also finds it automatically in current folder. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1410624985" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1932" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1932/hovercard" href="https://github.com/navidrome/navidrome/issues/1932">#1932</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b8c5e49dd3b16f1b3ec00e25fb9d4108fdf4231d/hovercard" href="https://github.com/navidrome/navidrome/commit/b8c5e49dd3b16f1b3ec00e25fb9d4108fdf4231d"><tt>b8c5e49</tt></a> Close stream when downloading files, fix fd leak</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/05c6cdea1ae7f517c01bea1dc34580959386cd41/hovercard" href="https://github.com/navidrome/navidrome/commit/05c6cdea1ae7f517c01bea1dc34580959386cd41"><tt>05c6cde</tt></a> Don't cancel transcoding session if context is canceled</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fc8462dc8ac82f4aa27d9f3afcda7caf9a2967dc/hovercard" href="https://github.com/navidrome/navidrome/commit/fc8462dc8ac82f4aa27d9f3afcda7caf9a2967dc"><tt>fc8462d</tt></a> "Spell-Jacking" mitigation ~ prevent sensitive data leak from spell checker. (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1533864717" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2091" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2091/hovercard" href="https://github.com/navidrome/navidrome/pull/2091">#2091</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9d459fbd0a1bcc25ac3989185061b1a96c0a7383/hovercard" href="https://github.com/navidrome/navidrome/commit/9d459fbd0a1bcc25ac3989185061b1a96c0a7383"><tt>9d459fb</tt></a> Abort start-up if config file is invalid</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9b2dd1bb06abc8c43b17ec20933614f7b901edc0/hovercard" href="https://github.com/navidrome/navidrome/commit/9b2dd1bb06abc8c43b17ec20933614f7b901edc0"><tt>9b2dd1b</tt></a> Fix playlist delete and reorder actions</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bfaf4a3388d4aabfa75e19b36a0557df1d1be950/hovercard" href="https://github.com/navidrome/navidrome/commit/bfaf4a3388d4aabfa75e19b36a0557df1d1be950"><tt>bfaf4a3</tt></a> Add logs to cache hunter</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a7f15facf97b04315afb7a984a83fbc94ce18197/hovercard" href="https://github.com/navidrome/navidrome/commit/a7f15facf97b04315afb7a984a83fbc94ce18197"><tt>a7f15fa</tt></a> Bump github.com/golangci/golangci-lint to 1.51.1</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ee8f6447eb4d634a335b5ab4e65b85c129d0b1bf/hovercard" href="https://github.com/navidrome/navidrome/commit/ee8f6447eb4d634a335b5ab4e65b85c129d0b1bf"><tt>ee8f644</tt></a> Add option to disable Cache Warmer. Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1569727687" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2142" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2142/hovercard" href="https://github.com/navidrome/navidrome/issues/2142">#2142</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dad4949a6df2e07eda16e39b3d8f928e56161be1/hovercard" href="https://github.com/navidrome/navidrome/commit/dad4949a6df2e07eda16e39b3d8f928e56161be1"><tt>dad4949</tt></a> Refactor Subsonic search to make it a bit more readable</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3ce3185118b74b2add36ec470a8ae63423e65e26/hovercard" href="https://github.com/navidrome/navidrome/commit/3ce3185118b74b2add36ec470a8ae63423e65e26"><tt>3ce3185</tt></a> Don't retrieve Various Artists and Unknown Artist info from Last.fm</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a50d9c8b67e7d10c86eef4fd62d0f8c52ef201b4/hovercard" href="https://github.com/navidrome/navidrome/commit/a50d9c8b67e7d10c86eef4fd62d0f8c52ef201b4"><tt>a50d9c8</tt></a> Use the latest sanitize, to fix some diacritics</li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.49.1
+ 2023-02-04T19:56:54+01:00
+
+ v0.49.1
+ <h2>Bug fix point release</h2>
+<p>This release fixes the following issues:</p>
+<ul>
+<li>Proper handling of external metadata refreshes in background <a href="https://github.com/navidrome/navidrome/issues/2130" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2130/hovercard">#2130</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/Tolriq/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/Tolriq">@Tolriq</a> (from <a href="https://symfonium.app/" rel="nofollow">Symfonium</a>) for helping debug this.</li>
+<li>Add a fallback when the browser does not support copying the share link to clipboard</li>
+<li>Fix downloading and sharing from a playlist <a href="https://github.com/navidrome/navidrome/issues/2123" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2123/hovercard">#2123</a></li>
+<li>Fix invisible checkboxes in Gruvbox theme <a href="https://github.com/navidrome/navidrome/issues/2135" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2135/hovercard">#2135</a>. Thanks to @vlfldr</li>
+<li>Fix unreadable lyrics in Nord theme <a href="https://github.com/navidrome/navidrome/issues/2146" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2146/hovercard">#2146</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>Fix playing new music uses lyrics from previously played one in Web Browser <a href="https://github.com/navidrome/navidrome/issues/2117" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2117/hovercard">#2117</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/joaomqc/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/joaomqc">@joaomqc</a></li>
+<li>Fix artwork resolution when paths contains a <code>:</code> char <a href="https://github.com/navidrome/navidrome/issues/2137" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2137/hovercard">#2137</a></li>
+</ul>
+<p>It also adds a new config option to change max playlists shown in UI's sidebar, <code>MaxSidebarPlaylists</code>.<br>
+See <a href="https://github.com/navidrome/navidrome/issues/2077" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2077/hovercard">#2077</a></p>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f8dfb3ad86cf76c9127fee8e520c81e94c195811/hovercard" href="https://github.com/navidrome/navidrome/commit/f8dfb3ad86cf76c9127fee8e520c81e94c195811"><tt>f8dfb3a</tt></a> Clearer lyrics in Nord theme (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1571040981" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2146" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2146/hovercard" href="https://github.com/navidrome/navidrome/pull/2146">#2146</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/255f8e4a76318e89e413bcf4c426b9e8c2a672e8/hovercard" href="https://github.com/navidrome/navidrome/commit/255f8e4a76318e89e413bcf4c426b9e8c2a672e8"><tt>255f8e4</tt></a> Update react-player, fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1559212109" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2117" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2117/hovercard" href="https://github.com/navidrome/navidrome/issues/2117">#2117</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/eba70ab8267ee30b909419dc652bb201359a82c0/hovercard" href="https://github.com/navidrome/navidrome/commit/eba70ab8267ee30b909419dc652bb201359a82c0"><tt>eba70ab</tt></a> Change throttling log messages</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ee6b10db72ec6a29b7d7e83addc4f1404ab03c39/hovercard" href="https://github.com/navidrome/navidrome/commit/ee6b10db72ec6a29b7d7e83addc4f1404ab03c39"><tt>ee6b10d</tt></a> Replace custom code with <code>errgroup</code></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/797cc8714194d3c0bffd97895feb3d4c62aff7ce/hovercard" href="https://github.com/navidrome/navidrome/commit/797cc8714194d3c0bffd97895feb3d4c62aff7ce"><tt>797cc87</tt></a> Enqueue external metadata refreshes</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bfbe980637e842c5d168a08b09d30475df33f96f/hovercard" href="https://github.com/navidrome/navidrome/commit/bfbe980637e842c5d168a08b09d30475df33f96f"><tt>bfbe980</tt></a> Bump http-cache-semantics from 4.1.0 to 4.1.1 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1568337365" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2139" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2139/hovercard" href="https://github.com/navidrome/navidrome/pull/2139">#2139</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d9d0a976743f7619c23c3f598b0fa750e59b7545/hovercard" href="https://github.com/navidrome/navidrome/commit/d9d0a976743f7619c23c3f598b0fa750e59b7545"><tt>d9d0a97</tt></a> Better log message</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c031167bb182e251b44f97ffad7c715ea8457c43/hovercard" href="https://github.com/navidrome/navidrome/commit/c031167bb182e251b44f97ffad7c715ea8457c43"><tt>c031167</tt></a> Don't retrieve all artist external metadata if we just want artist images</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4a25e6d3d8c27cdcf7e7149c9adb336fc53c6614/hovercard" href="https://github.com/navidrome/navidrome/commit/4a25e6d3d8c27cdcf7e7149c9adb336fc53c6614"><tt>4a25e6d</tt></a> Fix Mapped Similar Artists log</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ad2ad514b32f7a7d960922160074dd847dbd2d53/hovercard" href="https://github.com/navidrome/navidrome/commit/ad2ad514b32f7a7d960922160074dd847dbd2d53"><tt>ad2ad51</tt></a> Add dev option to increase external metadata cache expiration. More logs</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/588ee94f7c756717f4f616f3aa9e9fb6ea736302/hovercard" href="https://github.com/navidrome/navidrome/commit/588ee94f7c756717f4f616f3aa9e9fb6ea736302"><tt>588ee94</tt></a> Discard request for image canceled by the client before any further processing</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3c5032a3e84bd480d9888d3f8ebc00dfb7975805/hovercard" href="https://github.com/navidrome/navidrome/commit/3c5032a3e84bd480d9888d3f8ebc00dfb7975805"><tt>3c5032a</tt></a> Add migration to rebuild albums paths</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bcab3cc0f908a01ebb99f9f6d0bfb37fadbd95bf/hovercard" href="https://github.com/navidrome/navidrome/commit/bcab3cc0f908a01ebb99f9f6d0bfb37fadbd95bf"><tt>bcab3cc</tt></a> Add throttling to /share/img endpoint.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9b81aa44031892e34bd417f7f1944836924d5250/hovercard" href="https://github.com/navidrome/navidrome/commit/9b81aa44031892e34bd417f7f1944836924d5250"><tt>9b81aa4</tt></a> Fix artwork resolution when paths contains <code>:</code>. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1567311735" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2137" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2137/hovercard" href="https://github.com/navidrome/navidrome/issues/2137">#2137</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f904784e67cc123132a2e043a28877bc8f0fec42/hovercard" href="https://github.com/navidrome/navidrome/commit/f904784e67cc123132a2e043a28877bc8f0fec42"><tt>f904784</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0ce750d469933cbcbd7e82f29d7546ec340182e6/hovercard" href="https://github.com/navidrome/navidrome/commit/0ce750d469933cbcbd7e82f29d7546ec340182e6"><tt>0ce750d</tt></a> Update golangci-lint and fix lint errors</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cf04db7a98b5e571b95638518eea8d85f6f1a623/hovercard" href="https://github.com/navidrome/navidrome/commit/cf04db7a98b5e571b95638518eea8d85f6f1a623"><tt>cf04db7</tt></a> Don't try to connect to external services if artist is Unknown</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f4b50c493c5fb130bf003c0dbdd211b719cc6171/hovercard" href="https://github.com/navidrome/navidrome/commit/f4b50c493c5fb130bf003c0dbdd211b719cc6171"><tt>f4b50c4</tt></a> When retrieving images from external sources, avoid calling it again if data is already cached locally.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4a7e86e989465203b16d9df74264556fc07f753b/hovercard" href="https://github.com/navidrome/navidrome/commit/4a7e86e989465203b16d9df74264556fc07f753b"><tt>4a7e86e</tt></a> Fix file descriptor leaking.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a1a5b2fc30fcd3b1cea45c5840ae61257b62911b/hovercard" href="https://github.com/navidrome/navidrome/commit/a1a5b2fc30fcd3b1cea45c5840ae61257b62911b"><tt>a1a5b2f</tt></a> Fix invisible checkboxes in Gruvbox theme (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1565523995" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2135" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2135/hovercard" href="https://github.com/navidrome/navidrome/pull/2135">#2135</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f00e6117ffdc3fd187007ecac21824aa5cd45234/hovercard" href="https://github.com/navidrome/navidrome/commit/f00e6117ffdc3fd187007ecac21824aa5cd45234"><tt>f00e611</tt></a> Invalidate artist cache (by changing cache key format)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d8e794317f788198227e10fb667e10496b3eb99a/hovercard" href="https://github.com/navidrome/navidrome/commit/d8e794317f788198227e10fb667e10496b3eb99a"><tt>d8e7943</tt></a> Return 404 when artwork is not available in <code>/share/img</code> endpoint</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/128b626ec9330a7693ec6bbc9788d75eb2ef55e6/hovercard" href="https://github.com/navidrome/navidrome/commit/128b626ec9330a7693ec6bbc9788d75eb2ef55e6"><tt>128b626</tt></a> Add option to change max playlists shown in UI's sidebar, <code>MaxSidebarPlaylists</code>. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1527457136" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2077" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2077/hovercard" href="https://github.com/navidrome/navidrome/issues/2077">#2077</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d683297fa70eb3514349641b8171bcbfe8c6c379/hovercard" href="https://github.com/navidrome/navidrome/commit/d683297fa70eb3514349641b8171bcbfe8c6c379"><tt>d683297</tt></a> Better behaviour of Prev/Next buttons when share has only one song:</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/aaf58bbd32f9e78b81f23a7620e0d9cb8df8d0f5/hovercard" href="https://github.com/navidrome/navidrome/commit/aaf58bbd32f9e78b81f23a7620e0d9cb8df8d0f5"><tt>aaf58bb</tt></a> Handle nil pointer dereference. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1564549482" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2133" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2133/hovercard" href="https://github.com/navidrome/navidrome/issues/2133">#2133</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/58c46827cdc33fde278a3ef215d73ba18672fff4/hovercard" href="https://github.com/navidrome/navidrome/commit/58c46827cdc33fde278a3ef215d73ba18672fff4"><tt>58c4682</tt></a> Update translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/712d8f9fcc998f5daa406d574d45e16abc977f89/hovercard" href="https://github.com/navidrome/navidrome/commit/712d8f9fcc998f5daa406d574d45e16abc977f89"><tt>712d8f9</tt></a> Add trace logs to calls to external services</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b6fcfa9fc870a78e9d7088b443b6b8302fed342b/hovercard" href="https://github.com/navidrome/navidrome/commit/b6fcfa9fc870a78e9d7088b443b6b8302fed342b"><tt>b6fcfa9</tt></a> Add a fallback when the browser does not support copying the share link to clipboard (not a secure origin)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/762a1ba9984db728b847fc768524c4064f3ff20b/hovercard" href="https://github.com/navidrome/navidrome/commit/762a1ba9984db728b847fc768524c4064f3ff20b"><tt>762a1ba</tt></a> Fix downloading and sharing from a playlist. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1562660693" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2123" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2123/hovercard" href="https://github.com/navidrome/navidrome/issues/2123">#2123</a></li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.49.0
+ 2023-01-30T21:48:25+01:00
+
+ v0.49.0
+ <h2>New in this release</h2>
+<h3>Sharing (preview)</h3>
+<p>A new nice feature is the ability to generate a sharing link for a track/album/artist/playlist to send to friends, so that they can listen to the music without having an account on your Navidrome server. This is a nice alternative to YouTube links to share music. Sharing works from the UI and from Subsonic clients that support this feature.</p>
+<p><strong>NOTE</strong>: The <em>sharing</em> feature is complete but misses fine-grained permissions. Because of that it is disabled by default. If you want to give it a try, you can enable it by setting <code>EnableSharing=true</code> in your config, or the environment var <code>ND_ENABLESHARING=true</code>. Just remember that once enabled <em>all</em> users (not only admins) will have <em>full permission</em> to share and change existing shares.</p>
+<h3>Revamped Artwork Resolution</h3>
+<p>Various issues with artwork were resolved in this release, including support for <a href="https://github.com/navidrome/navidrome/issues/394" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/394/hovercard">local artists images</a>. Also, playlist covers are now generated as a tiled (2x2) image from the album covers (only supported in Subsonic clients for now). To learn more, see <a href="https://www.navidrome.org/docs/usage/artwork/" rel="nofollow">Artwork Resolution</a> in the documentation.</p>
+<h3>Internet Radio</h3>
+<p>You can now add your favorite Internet Radio streams to Navidrome and listen to them directly in the UI or in Subsonic clients that support this feature. Big thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a> for implementing this.</p>
+<p>As usual, a big thanks to <a href="https://github.com/navidrome/navidrome/graphs/contributors?from=2022-10-16&to=2023-01-30&type=c">all contributors</a> who helped in this release.</p>
+<h2>Other highlights</h2>
+<ul>
+<li>[UI] New Gruvbox Dark theme <a href="https://github.com/navidrome/navidrome/pull/2092" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2092/hovercard">#2092</a>. Thanks to @vlfldr</li>
+<li>[UI] Add ReplayGain support <a href="https://github.com/navidrome/navidrome/pull/1988" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1988/hovercard">#1988</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[UI] Add Internet Radios support <a href="https://github.com/navidrome/navidrome/pull/2063" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2063/hovercard">#2063</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[UI] Add keyboard shortcut <code>shift-C</code> to go to current playing song</li>
+<li>[UI] Add option to transcode when downloading <a href="https://github.com/navidrome/navidrome/pull/1667" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1667/hovercard">#1667</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[UI] Show album description from Last.fm if enabled and available <a href="https://github.com/navidrome/navidrome/pull/2061" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2061/hovercard">#2061</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[UI] Fix "Play Next" resetting the play queue <a href="https://github.com/navidrome/navidrome/pull/1472" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1472/hovercard">#1472</a></li>
+<li>[UI] More columns to select in List views</li>
+<li>[UI] Hide toggleable columns when in Album Grid view mode. Fix <a href="https://github.com/navidrome/navidrome/pull/2064" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2064/hovercard">#2064</a></li>
+<li>[UI] Hide Links to external services if they are disabled</li>
+<li>[UI] Respect prefers-reduced-motion browser configuration <a href="https://github.com/navidrome/navidrome/pull/2090" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2090/hovercard">#2090</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gildesmarais/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gildesmarais">@gildesmarais</a></li>
+<li>[UI] New <code>DefaultUIVolume</code> config option. Fix <a href="https://github.com/navidrome/navidrome/issues/1679" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1679/hovercard">#1679</a></li>
+<li>[Server] Much improved artwork handling. See <a href="https://www.navidrome.org/docs/usage/artwork/" rel="nofollow">Artwork Resolution</a> in documentation</li>
+<li>[Server] Support local artist images. Fix <a href="https://github.com/navidrome/navidrome/pull/394" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/394/hovercard">#394</a></li>
+<li>[Server] Uses <code>ffmpeg</code> to extract images as a fallback. Should handle all filetypes with embedded images now. Fix <a href="https://github.com/navidrome/navidrome/pull/1492" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1492/hovercard">#1492</a></li>
+<li>[Server] Add Downsampling feature <a href="https://github.com/navidrome/navidrome/pull/1575" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1575/hovercard">#1575</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gauth-fr/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gauth-fr">@gauth-fr</a></li>
+<li>[Server] Fix compatibility with Maloja <a href="https://github.com/navidrome/navidrome/pull/1994" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1994/hovercard">#1994</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/rhamzeh/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/rhamzeh">@rhamzeh</a></li>
+<li>[Server] New command line option (<code>navidrome pls</code>) to export playlists in M3U format <a href="https://github.com/navidrome/navidrome/pull/1914" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1914/hovercard">#1914</a></li>
+<li>[Server] Create accounts automatically when authenticating from HTTP header <a href="https://github.com/navidrome/navidrome/pull/2087" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2087/hovercard">#2087</a>. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/selfhoster1312/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/selfhoster1312">@selfhoster1312</a></li>
+<li>[Server] Expose more Prometheus metrics <a href="https://github.com/navidrome/navidrome/pull/2002" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2002/hovercard">#2002</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/AlekseyLobanov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/AlekseyLobanov">@AlekseyLobanov</a></li>
+<li>[Server] Downloads of multi-disc albums now create subfolders for each disc. Fix <a href="https://github.com/navidrome/navidrome/pull/2121" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2121/hovercard">#2121</a></li>
+<li>[Subsonic] Add <a href="http://subsonic.org/pages/api.jsp#getInternetRadioStations" rel="nofollow">Internet Radio endpoints</a> <a href="https://github.com/navidrome/navidrome/pull/2063" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2063/hovercard">#2063</a></li>
+<li>[Subsonic] Add initial <a href="http://subsonic.org/pages/api.jsp#getShares" rel="nofollow">Sharing</a> support (if <code>EnableSharing</code> is set to <code>true</code>)</li>
+<li>[Subsonic] Add <code>coverArt</code> to playlists</li>
+<li>[Subsonic] Make artist artwork handling more compatible with Subsonic clients</li>
+<li>[Subsonic] <code>getTopSongs</code> return starred and 5-star rated songs if <code>ExternalServices</code> are disabled</li>
+<li>[Subsonic] Add <code>getAlbumInfo</code> and <code>getAlbumInfo2</code> endpoints. Thanks to <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kgarner7/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kgarner7">@kgarner7</a></li>
+<li>[Subsonic] New <code>SubsonicArtistParticipations</code> to show album participations under artists (ex: in Various Artists compilations)</li>
+<li>[Build] Fix ARMv5 and v6 builds <a href="https://github.com/navidrome/navidrome/pull/1968" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1968/hovercard">#1968</a></li>
+<li>[Build] Fix Illumos build <a href="https://github.com/navidrome/navidrome/pull/2067" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2067/hovercard">#2067</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bardo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bardo">@bardo</a></li>
+</ul>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/25374b3bbe389d919f9c558c52328ff6ccf8fa7c/hovercard" href="https://github.com/navidrome/navidrome/commit/25374b3bbe389d919f9c558c52328ff6ccf8fa7c"><tt>25374b3</tt></a> Update translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/68e611578997158d6c44d84710b952152dd8ef52/hovercard" href="https://github.com/navidrome/navidrome/commit/68e611578997158d6c44d84710b952152dd8ef52"><tt>68e6115</tt></a> Rename <code>DevEnableShare</code> to <code>EnableSharing</code></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a651d65a5b93cbb6739cf40b76447635351ee067/hovercard" href="https://github.com/navidrome/navidrome/commit/a651d65a5b93cbb6739cf40b76447635351ee067"><tt>a651d65</tt></a> Add a comment to the generated zip</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dc56c525576666a0fae0a5a6680f2e33fa12c579/hovercard" href="https://github.com/navidrome/navidrome/commit/dc56c525576666a0fae0a5a6680f2e33fa12c579"><tt>dc56c52</tt></a> Refactor zip archiver.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5163df6531cf829180d9b6b75da411dfe0ba3261/hovercard" href="https://github.com/navidrome/navidrome/commit/5163df6531cf829180d9b6b75da411dfe0ba3261"><tt>5163df6</tt></a> Rollback changes to Chinese translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fc693e56017259f5f31c63f805bf35081da7d6b5/hovercard" href="https://github.com/navidrome/navidrome/commit/fc693e56017259f5f31c63f805bf35081da7d6b5"><tt>fc693e5</tt></a> Update translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/731bd7ee7333ab04eea13644970fe036af271214/hovercard" href="https://github.com/navidrome/navidrome/commit/731bd7ee7333ab04eea13644970fe036af271214"><tt>731bd7e</tt></a> Fix update translations job</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9f684e5a69e35688d1fd422a378779a96d057075/hovercard" href="https://github.com/navidrome/navidrome/commit/9f684e5a69e35688d1fd422a378779a96d057075"><tt>9f684e5</tt></a> Add job to create translations PRs</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e2ea5eba8cbbb1451b5f3c4ea02882a8253bbb85/hovercard" href="https://github.com/navidrome/navidrome/commit/e2ea5eba8cbbb1451b5f3c4ea02882a8253bbb85"><tt>e2ea5eb</tt></a> Disable creation of shares when feature is disabled.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b825d3cfac0a1061d3210c9cf0c10b8db5aa9b86/hovercard" href="https://github.com/navidrome/navidrome/commit/b825d3cfac0a1061d3210c9cf0c10b8db5aa9b86"><tt>b825d3c</tt></a> Fix versioning releases in the pipeline (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1538571059" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2101" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2101/hovercard" href="https://github.com/navidrome/navidrome/pull/2101">#2101</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1950c07b1d828e82422661baba83d8d9c18b590a/hovercard" href="https://github.com/navidrome/navidrome/commit/1950c07b1d828e82422661baba83d8d9c18b590a"><tt>1950c07</tt></a> Disable external links when <code>EnableExternalServices</code> is false. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1471089397" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2022" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2022/hovercard" href="https://github.com/navidrome/navidrome/issues/2022">#2022</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e0fc997adb2bb07c8857810e3c228b702ed35d91/hovercard" href="https://github.com/navidrome/navidrome/commit/e0fc997adb2bb07c8857810e3c228b702ed35d91"><tt>e0fc997</tt></a> Fix Share dialog titles for Album and Playlist</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5eefb265e50419c3db7f2bfe828b195e3440432e/hovercard" href="https://github.com/navidrome/navidrome/commit/5eefb265e50419c3db7f2bfe828b195e3440432e"><tt>5eefb26</tt></a> Simplify radio CRUD code</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/39161fdf4712fd069e77ebec749a661f3f48e046/hovercard" href="https://github.com/navidrome/navidrome/commit/39161fdf4712fd069e77ebec749a661f3f48e046"><tt>39161fd</tt></a> Playlist view: optionally show comment column (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1525815666" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2073" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2073/hovercard" href="https://github.com/navidrome/navidrome/pull/2073">#2073</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1e24809ed6cf0f25f359af818b9c89cae8d873cd/hovercard" href="https://github.com/navidrome/navidrome/commit/1e24809ed6cf0f25f359af818b9c89cae8d873cd"><tt>1e24809</tt></a> Create accounts automatically when authenticating from HTTP header (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1532335672" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2087" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2087/hovercard" href="https://github.com/navidrome/navidrome/pull/2087">#2087</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9721ef8974fece79527f69912f7f250fcf3b6f98/hovercard" href="https://github.com/navidrome/navidrome/commit/9721ef8974fece79527f69912f7f250fcf3b6f98"><tt>9721ef8</tt></a> Fix download translation key</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/16850a9be0688fb261b26883c1e691c62cfc330f/hovercard" href="https://github.com/navidrome/navidrome/commit/16850a9be0688fb261b26883c1e691c62cfc330f"><tt>16850a9</tt></a> Revert "Replace the LoveButton with ArtistContextMenu in the artist page - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1441091364" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1979" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1979/hovercard" href="https://github.com/navidrome/navidrome/issues/1979">#1979</a>"</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/457e1fc97b95570655e1cb5f9c127faac0e52325/hovercard" href="https://github.com/navidrome/navidrome/commit/457e1fc97b95570655e1cb5f9c127faac0e52325"><tt>457e1fc</tt></a> Base SQL metrics in MetricsWorker (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1455809309" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2002" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2002/hovercard" href="https://github.com/navidrome/navidrome/pull/2002">#2002</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d31faf5249894c2bebeb53f4f06e87e2611a1e08/hovercard" href="https://github.com/navidrome/navidrome/commit/d31faf5249894c2bebeb53f4f06e87e2611a1e08"><tt>d31faf5</tt></a> Bump github.com/onsi/gomega from 1.25.0 to 1.26.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/20829481440d5162463f84149f6a1e9964084ab0/hovercard" href="https://github.com/navidrome/navidrome/commit/20829481440d5162463f84149f6a1e9964084ab0"><tt>2082948</tt></a> Fix downloadOriginalFormat term in English translation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/39dc9c431082589af5b30d80545b63d13d2474a4/hovercard" href="https://github.com/navidrome/navidrome/commit/39dc9c431082589af5b30d80545b63d13d2474a4"><tt>39dc9c4</tt></a> Disable Subsonic Share endpoints if feature is disabled</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0c263cf2342e832b41c09b1542d8f29c4ffefd24/hovercard" href="https://github.com/navidrome/navidrome/commit/0c263cf2342e832b41c09b1542d8f29c4ffefd24"><tt>0c263cf</tt></a> Make AlbumSongs BulkActionsToolbar more responsive</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/85084cda577bea4ddeb264da758fa72504878680/hovercard" href="https://github.com/navidrome/navidrome/commit/85084cda577bea4ddeb264da758fa72504878680"><tt>85084cd</tt></a> Add button to share selected songs</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/69b36c75a5601c955e1cea9215281dec001dbaee/hovercard" href="https://github.com/navidrome/navidrome/commit/69b36c75a5601c955e1cea9215281dec001dbaee"><tt>69b36c7</tt></a> Add meta tags to show cover and share description in social platforms</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cab43c89e6b7121fdf2eeb7ffbacf2592ef02cac/hovercard" href="https://github.com/navidrome/navidrome/commit/cab43c89e6b7121fdf2eeb7ffbacf2592ef02cac"><tt>cab43c8</tt></a> Mark Share.LastVisited optional in Subsonic API</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/433da37982a60f80b8a63410d8af6ef08045e38b/hovercard" href="https://github.com/navidrome/navidrome/commit/433da37982a60f80b8a63410d8af6ef08045e38b"><tt>433da37</tt></a> Add Share to Context menus, also share artist</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/051e9c556dca5172eb1f9590af193e2acf4f830c/hovercard" href="https://github.com/navidrome/navidrome/commit/051e9c556dca5172eb1f9590af193e2acf4f830c"><tt>051e9c5</tt></a> Use redux for ShareDialog</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/17d9573f4defdc777afe6975a7f47e39b3d5cc56/hovercard" href="https://github.com/navidrome/navidrome/commit/17d9573f4defdc777afe6975a7f47e39b3d5cc56"><tt>17d9573</tt></a> Refactor dialogs, make it simple to add a new dialog to all views</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/26be5b839643b91bf263c8f8cf749b360bab5001/hovercard" href="https://github.com/navidrome/navidrome/commit/26be5b839643b91bf263c8f8cf749b360bab5001"><tt>26be5b8</tt></a> Keep order of shared mediafiles</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c770229154de4cc4ff30af4e3249f046ec133b7e/hovercard" href="https://github.com/navidrome/navidrome/commit/c770229154de4cc4ff30af4e3249f046ec133b7e"><tt>c770229</tt></a> Add Share capability to Subsonic user's info</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ef4765c768ef6182301cbf6f07d832752c86e3cc/hovercard" href="https://github.com/navidrome/navidrome/commit/ef4765c768ef6182301cbf6f07d832752c86e3cc"><tt>ef4765c</tt></a> Fix getShares sort order</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6c05fcb6992530f5e98f300b68b3c0b070334688/hovercard" href="https://github.com/navidrome/navidrome/commit/6c05fcb6992530f5e98f300b68b3c0b070334688"><tt>6c05fcb</tt></a> Create contents label for group of shared mediafiles</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/63e67bd5021dc6fcc1ca48013ffbe58ba767bb44/hovercard" href="https://github.com/navidrome/navidrome/commit/63e67bd5021dc6fcc1ca48013ffbe58ba767bb44"><tt>63e67bd</tt></a> Make Share list responsive</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/230f2fdc02bdc3a063ddd3aa26d2817efe441fb2/hovercard" href="https://github.com/navidrome/navidrome/commit/230f2fdc02bdc3a063ddd3aa26d2817efe441fb2"><tt>230f2fd</tt></a> Reduce spacing between album buttons, to avoid breaking the toolbar in two</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d639da9eb58c7c65e9668a41ca5309b928fa1e3a/hovercard" href="https://github.com/navidrome/navidrome/commit/d639da9eb58c7c65e9668a41ca5309b928fa1e3a"><tt>d639da9</tt></a> Enable sharing only selected songs with the Subsonic API</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e34f26588ea5f5b3c5dcc92d21251deb231076ea/hovercard" href="https://github.com/navidrome/navidrome/commit/e34f26588ea5f5b3c5dcc92d21251deb231076ea"><tt>e34f265</tt></a> Fix empty <code>entry</code> collection in Shares</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c994ed70eadfbb6a9af4fe283ad09d19eb2f39a9/hovercard" href="https://github.com/navidrome/navidrome/commit/c994ed70eadfbb6a9af4fe283ad09d19eb2f39a9"><tt>c994ed7</tt></a> Fix <code>expireAt</code> update error</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/40cac5c367ad75aaf1f462f2c5afa42e4c16def1/hovercard" href="https://github.com/navidrome/navidrome/commit/40cac5c367ad75aaf1f462f2c5afa42e4c16def1"><tt>40cac5c</tt></a> Fix JS console warning</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/34277f238c484f421cf5a7fbd2d1cbe8553f8097/hovercard" href="https://github.com/navidrome/navidrome/commit/34277f238c484f421cf5a7fbd2d1cbe8553f8097"><tt>34277f2</tt></a> Make Share icon dynamic</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dbf80d85927626e0f4e38a38bd7c35dc88236346/hovercard" href="https://github.com/navidrome/navidrome/commit/dbf80d85927626e0f4e38a38bd7c35dc88236346"><tt>dbf80d8</tt></a> Change public/share path to <code>/share</code> - DSub does not use the URL from the API response... :(</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d5df102f9f97c21715c756069c9e141da2a422dc/hovercard" href="https://github.com/navidrome/navidrome/commit/d5df102f9f97c21715c756069c9e141da2a422dc"><tt>d5df102</tt></a> Implement <code>updateShare</code> and <code>deleteShare</code> Subsonic endpoints</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/20271df4fb0b94e201ed5e4b6501d591aa8cd813/hovercard" href="https://github.com/navidrome/navidrome/commit/20271df4fb0b94e201ed5e4b6501d591aa8cd813"><tt>20271df</tt></a> Workaround to detect empty dates in some Subsonic clients</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d4c1d2ece450af7a857c3075607652448b951a7e/hovercard" href="https://github.com/navidrome/navidrome/commit/d4c1d2ece450af7a857c3075607652448b951a7e"><tt>d4c1d2e</tt></a> Handle expired shares</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d0dceae0943b8df16e579c2d9437e11760a0626a/hovercard" href="https://github.com/navidrome/navidrome/commit/d0dceae0943b8df16e579c2d9437e11760a0626a"><tt>d0dceae</tt></a> Add <code>getShares</code> and <code>createShare</code> Subsonic endpoints</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/94cc2b2ac56e2a8295dc258ddf5b8383b0b58e70/hovercard" href="https://github.com/navidrome/navidrome/commit/94cc2b2ac56e2a8295dc258ddf5b8383b0b58e70"><tt>94cc2b2</tt></a> Fix tests and lint errors, plus a bit of refactor</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/72a12e344ee825cea38a9bb0a0cc14618a79c5f8/hovercard" href="https://github.com/navidrome/navidrome/commit/72a12e344ee825cea38a9bb0a0cc14618a79c5f8"><tt>72a12e3</tt></a> More share translations</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/12bb6c3847900b018bc657a5cc0ed48da953adb4/hovercard" href="https://github.com/navidrome/navidrome/commit/12bb6c3847900b018bc657a5cc0ed48da953adb4"><tt>12bb6c3</tt></a> Don't expose empty dates in share info</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/58fc271864bd7d1c9f2038e88d1d1edc7e5599db/hovercard" href="https://github.com/navidrome/navidrome/commit/58fc271864bd7d1c9f2038e88d1d1edc7e5599db"><tt>58fc271</tt></a> Share playlists</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/65174d3fb270c0a977190980feca0216b60998bc/hovercard" href="https://github.com/navidrome/navidrome/commit/65174d3fb270c0a977190980feca0216b60998bc"><tt>65174d3</tt></a> Refactor DownloadMenuDialog to use <code>useTranscodingOptions</code> hook</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c8293fcdd88e5ae30e22544375af69ce9ff109d2/hovercard" href="https://github.com/navidrome/navidrome/commit/c8293fcdd88e5ae30e22544375af69ce9ff109d2"><tt>c8293fc</tt></a> Extract transcoding options to its own hook</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d9c42b318382f7f1a67162f6a23a387f1383b024/hovercard" href="https://github.com/navidrome/navidrome/commit/d9c42b318382f7f1a67162f6a23a387f1383b024"><tt>d9c42b3</tt></a> Add share's <code>contents</code> and <code>description</code> to the DB</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/364fdfbd8df73ff45bc1c5b2bec5626509a0ca4d/hovercard" href="https://github.com/navidrome/navidrome/commit/364fdfbd8df73ff45bc1c5b2bec5626509a0ca4d"><tt>364fdfb</tt></a> Use defaultDownsamplingFormat in share options</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/63b4a12a93994a717f1c300d9e259df55204e015/hovercard" href="https://github.com/navidrome/navidrome/commit/63b4a12a93994a717f1c300d9e259df55204e015"><tt>63b4a12</tt></a> Fine tune SharePlayer</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/357c0e1e19a0063a3fc8d128e37206a073a6fa7e/hovercard" href="https://github.com/navidrome/navidrome/commit/357c0e1e19a0063a3fc8d128e37206a073a6fa7e"><tt>357c0e1</tt></a> Refactor URL builders in UI</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/84aa094e56de3d2896d2ffcbc5d2554de0cf9ad1/hovercard" href="https://github.com/navidrome/navidrome/commit/84aa094e56de3d2896d2ffcbc5d2554de0cf9ad1"><tt>84aa094</tt></a> More work on Shares</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ab04e33da68a043417d79f69aa542cf3255f433c/hovercard" href="https://github.com/navidrome/navidrome/commit/ab04e33da68a043417d79f69aa542cf3255f433c"><tt>ab04e33</tt></a> Initial work on Shares</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5331de17c2caa83fce45cef9374f7230a655cc88/hovercard" href="https://github.com/navidrome/navidrome/commit/5331de17c2caa83fce45cef9374f7230a655cc88"><tt>5331de1</tt></a> Fixes the slide bar clickable area (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1554283316" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2113" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2113/hovercard" href="https://github.com/navidrome/navidrome/pull/2113">#2113</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/199f66b8def425236bb386f3b8db8dc5f124570c/hovercard" href="https://github.com/navidrome/navidrome/commit/199f66b8def425236bb386f3b8db8dc5f124570c"><tt>199f66b</tt></a> Bump @testing-library/react from 12.1.2 to 12.1.5 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1553444340" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2109" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2109/hovercard" href="https://github.com/navidrome/navidrome/pull/2109">#2109</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/535171faf8a9a7c5403d7554bebcd39f16b708b4/hovercard" href="https://github.com/navidrome/navidrome/commit/535171faf8a9a7c5403d7554bebcd39f16b708b4"><tt>535171f</tt></a> Bump github.com/onsi/gomega from 1.24.2 to 1.25.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1553444982" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2111" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2111/hovercard" href="https://github.com/navidrome/navidrome/pull/2111">#2111</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bee39ad28edb627907c09c350c85485c5e7ab929/hovercard" href="https://github.com/navidrome/navidrome/commit/bee39ad28edb627907c09c350c85485c5e7ab929"><tt>bee39ad</tt></a> Bump github.com/spf13/viper from 1.14.0 to 1.15.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1553444753" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2110" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2110/hovercard" href="https://github.com/navidrome/navidrome/pull/2110">#2110</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2de570fe7269012c9f8585ba55229e1c5fa6b769/hovercard" href="https://github.com/navidrome/navidrome/commit/2de570fe7269012c9f8585ba55229e1c5fa6b769"><tt>2de570f</tt></a> Fix order of gain menu options (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1552009947" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2105" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2105/hovercard" href="https://github.com/navidrome/navidrome/pull/2105">#2105</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/33f033bebab13116eec6c12cac3c3d579a4f44ff/hovercard" href="https://github.com/navidrome/navidrome/commit/33f033bebab13116eec6c12cac3c3d579a4f44ff"><tt>33f033b</tt></a> Fix artist image not caching on browser</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b9934799ec526bb59683fc296f4b99112536fce0/hovercard" href="https://github.com/navidrome/navidrome/commit/b9934799ec526bb59683fc296f4b99112536fce0"><tt>b993479</tt></a> Increase size of artist image</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/adea15ab93c15852b0c211fb735789f1bf166c40/hovercard" href="https://github.com/navidrome/navidrome/commit/adea15ab93c15852b0c211fb735789f1bf166c40"><tt>adea15a</tt></a> Use constant</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0c27e7a43b7a77ce6295cbfe30093def5977fe4b/hovercard" href="https://github.com/navidrome/navidrome/commit/0c27e7a43b7a77ce6295cbfe30093def5977fe4b"><tt>0c27e7a</tt></a> Fix Illumos build - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1516765095" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2067" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2067/hovercard" href="https://github.com/navidrome/navidrome/issues/2067">#2067</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1521085605" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2069" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2069/hovercard" href="https://github.com/navidrome/navidrome/pull/2069">#2069</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8956f5e7fdcec48491596801e604b8c01bfaf8f3/hovercard" href="https://github.com/navidrome/navidrome/commit/8956f5e7fdcec48491596801e604b8c01bfaf8f3"><tt>8956f5e</tt></a> Fix Album.MaxYear calculation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7073d18b54da7e53274d11c9e2baef1242e8769e/hovercard" href="https://github.com/navidrome/navidrome/commit/7073d18b54da7e53274d11c9e2baef1242e8769e"><tt>7073d18</tt></a> Make private methods unpublished</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7fc964aec5d432480d76bb90eee14a09aca5125f/hovercard" href="https://github.com/navidrome/navidrome/commit/7fc964aec5d432480d76bb90eee14a09aca5125f"><tt>7fc964a</tt></a> Don't wake CacheWarmer every 10 seconds, let it sleep :)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/136d5f9a83555c5405ee72c337b6cf360dc0da04/hovercard" href="https://github.com/navidrome/navidrome/commit/136d5f9a83555c5405ee72c337b6cf360dc0da04"><tt>136d5f9</tt></a> Add config option to show album participations under artists in Subsonic clients</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8ae0bcb4592d39859abea2d5b3650b9b9181265f/hovercard" href="https://github.com/navidrome/navidrome/commit/8ae0bcb4592d39859abea2d5b3650b9b9181265f"><tt>8ae0bcb</tt></a> Add Gruvbox Dark color theme (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1534467673" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2092" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2092/hovercard" href="https://github.com/navidrome/navidrome/pull/2092">#2092</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/127c75e34b5052872590f7fd508125b327a7201e/hovercard" href="https://github.com/navidrome/navidrome/commit/127c75e34b5052872590f7fd508125b327a7201e"><tt>127c75e</tt></a> Don't try to downsample if requested bitrate is equal or greater than original. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1516521676" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2066" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2066/hovercard" href="https://github.com/navidrome/navidrome/issues/2066">#2066</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d5c9cf07bd0fdc954c79e86c262b4748e43a8897/hovercard" href="https://github.com/navidrome/navidrome/commit/d5c9cf07bd0fdc954c79e86c262b4748e43a8897"><tt>d5c9cf0</tt></a> Fix Playlist show</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/701e301d48ce6cbd3b6b0fb1d2802678516ccc84/hovercard" href="https://github.com/navidrome/navidrome/commit/701e301d48ce6cbd3b6b0fb1d2802678516ccc84"><tt>701e301</tt></a> Increase timeout for obtaining login background image list</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/580e9ae4bdf195063bbbb0d737f7e337ef070a0c/hovercard" href="https://github.com/navidrome/navidrome/commit/580e9ae4bdf195063bbbb0d737f7e337ef070a0c"><tt>580e9ae</tt></a> Fix timer going awry</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/feb774a149cab2743e75b49dbbaf96a2d51c9deb/hovercard" href="https://github.com/navidrome/navidrome/commit/feb774a149cab2743e75b49dbbaf96a2d51c9deb"><tt>feb774a</tt></a> Change genre.Put() to upsert. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1399943809" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1918" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1918/hovercard" href="https://github.com/navidrome/navidrome/issues/1918">#1918</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1095224424" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1564" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1564/hovercard" href="https://github.com/navidrome/navidrome/issues/1564">#1564</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1400927706" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1920" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1920/hovercard" href="https://github.com/navidrome/navidrome/pull/1920">#1920</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/17eab6a88db527e50e05797769f99943b39d2d3b/hovercard" href="https://github.com/navidrome/navidrome/commit/17eab6a88db527e50e05797769f99943b39d2d3b"><tt>17eab6a</tt></a> Fix resized image cache key</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bedd2b20745d7e4986b0285a28c86b3d940ccf83/hovercard" href="https://github.com/navidrome/navidrome/commit/bedd2b20745d7e4986b0285a28c86b3d940ccf83"><tt>bedd2b2</tt></a> Implement better artwork cache keys</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/93adda66d96348f618052a16818d032ffd1212f9/hovercard" href="https://github.com/navidrome/navidrome/commit/93adda66d96348f618052a16818d032ffd1212f9"><tt>93adda6</tt></a> Get album info (when available) from Last.fm, add getAlbumInfo endpoint (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1513470756" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2061" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2061/hovercard" href="https://github.com/navidrome/navidrome/pull/2061">#2061</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5564f00838556beadf85c842aeb8bddddd307853/hovercard" href="https://github.com/navidrome/navidrome/commit/5564f00838556beadf85c842aeb8bddddd307853"><tt>5564f00</tt></a> Some refactor, log message changes</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1324a16fc534d2de0ccd7d1ebc0d5020b4e38af6/hovercard" href="https://github.com/navidrome/navidrome/commit/1324a16fc534d2de0ccd7d1ebc0d5020b4e38af6"><tt>1324a16</tt></a> ReplayGain support + audio normalization (web player) (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1447527474" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1988" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1988/hovercard" href="https://github.com/navidrome/navidrome/pull/1988">#1988</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9ae156dd8296c9c0744b7ea1317831d95f267128/hovercard" href="https://github.com/navidrome/navidrome/commit/9ae156dd8296c9c0744b7ea1317831d95f267128"><tt>9ae156d</tt></a> Remove unused prop</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/438d45c176ccfd9245243a5604b86da6ee9a72d4/hovercard" href="https://github.com/navidrome/navidrome/commit/438d45c176ccfd9245243a5604b86da6ee9a72d4"><tt>438d45c</tt></a> Change Internet Radio UX</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e76080809dd55186eb940428c00f7518dc75aedd/hovercard" href="https://github.com/navidrome/navidrome/commit/e76080809dd55186eb940428c00f7518dc75aedd"><tt>e760808</tt></a> Fix pipeline lint error help message</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0a65bf171b60956c682dd89ef5bb5cd3e1ad9148/hovercard" href="https://github.com/navidrome/navidrome/commit/0a65bf171b60956c682dd89ef5bb5cd3e1ad9148"><tt>0a65bf1</tt></a> Change Players icon, to distinguish it from Internet Radios</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e40da183bbe33dbb9a0631c825c815c064b6a349/hovercard" href="https://github.com/navidrome/navidrome/commit/e40da183bbe33dbb9a0631c825c815c064b6a349"><tt>e40da18</tt></a> Move artwork id encoding to public package</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/13ba08157a531d16b3e729ae77ac297962b1ccf0/hovercard" href="https://github.com/navidrome/navidrome/commit/13ba08157a531d16b3e729ae77ac297962b1ccf0"><tt>13ba081</tt></a> Add Size column to Album Songs view</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7682fddec0f55b81581e367fef1d766b0f8b0090/hovercard" href="https://github.com/navidrome/navidrome/commit/7682fddec0f55b81581e367fef1d766b0f8b0090"><tt>7682fdd</tt></a> Add Size column to Artist and Album views</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4a054de3d5a59d0a6c039e0efaeb226751819319/hovercard" href="https://github.com/navidrome/navidrome/commit/4a054de3d5a59d0a6c039e0efaeb226751819319"><tt>4a054de</tt></a> Hide togglable columns when in Album Grid view mode. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1515102159" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2064" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2064/hovercard" href="https://github.com/navidrome/navidrome/issues/2064">#2064</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b6233e57b334ae19895e1aadafb60271017c9177/hovercard" href="https://github.com/navidrome/navidrome/commit/b6233e57b334ae19895e1aadafb60271017c9177"><tt>b6233e5</tt></a> Bump @material-ui/styles from 4.11.4 to 4.11.5 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1535241886" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2093" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2093/hovercard" href="https://github.com/navidrome/navidrome/pull/2093">#2093</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c00040d94e0440cb118832d36b32c191c3ede6f4/hovercard" href="https://github.com/navidrome/navidrome/commit/c00040d94e0440cb118832d36b32c191c3ede6f4"><tt>c00040d</tt></a> Bump github.com/dustin/go-humanize from 1.0.0 to 1.0.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1535242567" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2094" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2094/hovercard" href="https://github.com/navidrome/navidrome/pull/2094">#2094</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c748d669d6f869b895f61ec81f4a6e35e36a9a33/hovercard" href="https://github.com/navidrome/navidrome/commit/c748d669d6f869b895f61ec81f4a6e35e36a9a33"><tt>c748d66</tt></a> Sort radio stations by name</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d319b66ff39cd31a7341ccd7d0cda9b8b8ae1754/hovercard" href="https://github.com/navidrome/navidrome/commit/d319b66ff39cd31a7341ccd7d0cda9b8b8ae1754"><tt>d319b66</tt></a> Make Radio Create and Edit forms consistent</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a8478ca74c319eeb1c30bec996dd148ffc47e185/hovercard" href="https://github.com/navidrome/navidrome/commit/a8478ca74c319eeb1c30bec996dd148ffc47e185"><tt>a8478ca</tt></a> Fix Subsonic XML Internet Radio response</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8877b1695a440a7155a66ab30ce1ec628692800d/hovercard" href="https://github.com/navidrome/navidrome/commit/8877b1695a440a7155a66ab30ce1ec628692800d"><tt>8877b16</tt></a> Add Internet Radio support (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1514980280" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2063" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2063/hovercard" href="https://github.com/navidrome/navidrome/pull/2063">#2063</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/aa21a2a305299483dc05f403e98dbc4b171fee0e/hovercard" href="https://github.com/navidrome/navidrome/commit/aa21a2a305299483dc05f403e98dbc4b171fee0e"><tt>aa21a2a</tt></a> Respect prefers-reduced-motion browser configuration (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1533447409" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2090" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2090/hovercard" href="https://github.com/navidrome/navidrome/pull/2090">#2090</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e3496c7eea5d6dde09053585866e77919ae7cc09/hovercard" href="https://github.com/navidrome/navidrome/commit/e3496c7eea5d6dde09053585866e77919ae7cc09"><tt>e3496c7</tt></a> Fix artist folder detection. Now works when the artist has only one album.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d3e4a5287d6f882aed0142a92126f8c3818bd2a9/hovercard" href="https://github.com/navidrome/navidrome/commit/d3e4a5287d6f882aed0142a92126f8c3818bd2a9"><tt>d3e4a52</tt></a> "Touch" playlists to force some clients to reload cover art</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/12dd219e16b8f625d1f889ea312a030469183c9c/hovercard" href="https://github.com/navidrome/navidrome/commit/12dd219e16b8f625d1f889ea312a030469183c9c"><tt>12dd219</tt></a> Don't refresh artistInfo when setting artist's love/rating</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1d6b04e3ad0e58b2cec0c50c9f72965c55d6772f/hovercard" href="https://github.com/navidrome/navidrome/commit/1d6b04e3ad0e58b2cec0c50c9f72965c55d6772f"><tt>1d6b04e</tt></a> Replace the LoveButton with ArtistContextMenu in the artist page - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1441091364" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1979" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1979/hovercard" href="https://github.com/navidrome/navidrome/issues/1979">#1979</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dfbf86c5779efff2ecbfd6930c9c70334df74b89/hovercard" href="https://github.com/navidrome/navidrome/commit/dfbf86c5779efff2ecbfd6930c9c70334df74b89"><tt>dfbf86c</tt></a> Allow any HTTP methods for public images endpoint. Fix artist covers in Subtracks</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/16c869ec867263ad99512d9c05c96549f6dc3b56/hovercard" href="https://github.com/navidrome/navidrome/commit/16c869ec867263ad99512d9c05c96549f6dc3b56"><tt>16c869e</tt></a> Optimize playlist cover generation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c46a2a5f5fddec0b13e4902e0f17c4bf2fb8207c/hovercard" href="https://github.com/navidrome/navidrome/commit/c46a2a5f5fddec0b13e4902e0f17c4bf2fb8207c"><tt>c46a2a5</tt></a> New dev options to control getCoverArt throttling</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ab7668f562b9d21b4e12479f87fa632076391928/hovercard" href="https://github.com/navidrome/navidrome/commit/ab7668f562b9d21b4e12479f87fa632076391928"><tt>ab7668f</tt></a> Use a custom artist image cache key.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/94c6d471816a4b9b535061f9b16f578d7b3210cd/hovercard" href="https://github.com/navidrome/navidrome/commit/94c6d471816a4b9b535061f9b16f578d7b3210cd"><tt>94c6d47</tt></a> More descriptive error when artist.jpg not found</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0ffef05cc398f8556507129e177ff62de6cfb089/hovercard" href="https://github.com/navidrome/navidrome/commit/0ffef05cc398f8556507129e177ff62de6cfb089"><tt>0ffef05</tt></a> Remove "Biography not available" when agents are not available</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3f2d24695e9382125dfe5e6d6c8bbeb4a313a4f9/hovercard" href="https://github.com/navidrome/navidrome/commit/3f2d24695e9382125dfe5e6d6c8bbeb4a313a4f9"><tt>3f2d246</tt></a> PreCache artist images</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cbe3adf9873af6d255c5476d2fde54116968f01c/hovercard" href="https://github.com/navidrome/navidrome/commit/cbe3adf9873af6d255c5476d2fde54116968f01c"><tt>cbe3adf</tt></a> Don't show error when it is nil</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c90468b895f6171e33e937ff20dc915c995274f0/hovercard" href="https://github.com/navidrome/navidrome/commit/c90468b895f6171e33e937ff20dc915c995274f0"><tt>c90468b</tt></a> Find <code>artist.*</code> image in Artist folder</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/69e0a266f48bae24a11312e9efbe495a337e4c84/hovercard" href="https://github.com/navidrome/navidrome/commit/69e0a266f48bae24a11312e9efbe495a337e4c84"><tt>69e0a26</tt></a> Remove size from public image ID JWT</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8f0d002922272432f5f6fed869c02480147cea6e/hovercard" href="https://github.com/navidrome/navidrome/commit/8f0d002922272432f5f6fed869c02480147cea6e"><tt>8f0d002</tt></a> Add local TopSongs</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/77a99a735b723c25015b1306bbfd250c40afdaaf/hovercard" href="https://github.com/navidrome/navidrome/commit/77a99a735b723c25015b1306bbfd250c40afdaaf"><tt>77a99a7</tt></a> Always access artist images through Navidrome (proxy calls to external URLs)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/918fee3ea3e7d8aee673eda5a0d3556f420030a4/hovercard" href="https://github.com/navidrome/navidrome/commit/918fee3ea3e7d8aee673eda5a0d3556f420030a4"><tt>918fee3</tt></a> Artwork reader for Artist</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bf461473ef52748f4e12bb5489ff22737879509f/hovercard" href="https://github.com/navidrome/navidrome/commit/bf461473ef52748f4e12bb5489ff22737879509f"><tt>bf46147</tt></a> Add local agent, only for images</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/387acc5f6302b650e67172f10f47a31e099c4bdd/hovercard" href="https://github.com/navidrome/navidrome/commit/387acc5f6302b650e67172f10f47a31e099c4bdd"><tt>387acc5</tt></a> Add public endpoint to expose images</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7fbcb2904a483e535344b730bb1ec8ffe1e590ad/hovercard" href="https://github.com/navidrome/navidrome/commit/7fbcb2904a483e535344b730bb1ec8ffe1e590ad"><tt>7fbcb29</tt></a> Add function number.RandomInt64</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7a617d3a1d7694b417be9b93dfada5e8dd675271/hovercard" href="https://github.com/navidrome/navidrome/commit/7a617d3a1d7694b417be9b93dfada5e8dd675271"><tt>7a617d3</tt></a> Remove unused "embed" build tag</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/769e8bedbadce9b8b92a059881246d4d83906e9f/hovercard" href="https://github.com/navidrome/navidrome/commit/769e8bedbadce9b8b92a059881246d4d83906e9f"><tt>769e8be</tt></a> Rename WeightedChooser's method Put to Add, a better name</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/291455f0b7ae1d3b496944bf0b4877eda1bb2645/hovercard" href="https://github.com/navidrome/navidrome/commit/291455f0b7ae1d3b496944bf0b4877eda1bb2645"><tt>291455f</tt></a> Fix Download Dialog not showing in Artist page</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b1b081e3d800191faeaf120ab462fdab6714dcc2/hovercard" href="https://github.com/navidrome/navidrome/commit/b1b081e3d800191faeaf120ab462fdab6714dcc2"><tt>b1b081e</tt></a> Move react-scripts to devDependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9ea9b4889129caf33fddbe173c0776c7ecfe11d0/hovercard" href="https://github.com/navidrome/navidrome/commit/9ea9b4889129caf33fddbe173c0776c7ecfe11d0"><tt>9ea9b48</tt></a> Bump golang.org/x/tools from 0.4.0 to 0.5.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e6e9260648c02f6812761534287621eeab07e99a/hovercard" href="https://github.com/navidrome/navidrome/commit/e6e9260648c02f6812761534287621eeab07e99a"><tt>e6e9260</tt></a> Bump decode-uri-component from 0.2.0 to 0.2.2 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/224e3b3089165f144c74aca32aec48525b0910b7/hovercard" href="https://github.com/navidrome/navidrome/commit/224e3b3089165f144c74aca32aec48525b0910b7"><tt>224e3b3</tt></a> Bump json5 from 1.0.1 to 1.0.2 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/023e103720305f742b007a98006795320c2968f5/hovercard" href="https://github.com/navidrome/navidrome/commit/023e103720305f742b007a98006795320c2968f5"><tt>023e103</tt></a> Bump prettier from 2.4.1 to 2.8.2 in /ui</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/53ef50d980fdf77ed05c491dc8fb5aef63be97ec/hovercard" href="https://github.com/navidrome/navidrome/commit/53ef50d980fdf77ed05c491dc8fb5aef63be97ec"><tt>53ef50d</tt></a> Bump golang.org/x/text from 0.5.0 to 0.6.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/feabcdfe9fe2528897b789f1447c4c84c3dfd59a/hovercard" href="https://github.com/navidrome/navidrome/commit/feabcdfe9fe2528897b789f1447c4c84c3dfd59a"><tt>feabcdf</tt></a> Show help message when goimports/go mod tidy breaks the build</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1374dab08775d3fefff96dbe707675e0d1a766d3/hovercard" href="https://github.com/navidrome/navidrome/commit/1374dab08775d3fefff96dbe707675e0d1a766d3"><tt>1374dab</tt></a> Disable buildvcs flag</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/18aac7c729685136c12a6b1cd0910b18a51d104b/hovercard" href="https://github.com/navidrome/navidrome/commit/18aac7c729685136c12a6b1cd0910b18a51d104b"><tt>18aac7c</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.6.1 to 2.7.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c8ecf3b495a172a86ed57cbc1d4926ab558fe9e1/hovercard" href="https://github.com/navidrome/navidrome/commit/c8ecf3b495a172a86ed57cbc1d4926ab558fe9e1"><tt>c8ecf3b</tt></a> Bump github.com/go-chi/httprate from 0.7.0 to 0.7.1</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7e03f8ca82aeecf99d7d83593c297d8026ba992e/hovercard" href="https://github.com/navidrome/navidrome/commit/7e03f8ca82aeecf99d7d83593c297d8026ba992e"><tt>7e03f8c</tt></a> Upgrade to Go 1.19.5</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fdbece5c92b7e69c67ef1b2b8f3980aa77266690/hovercard" href="https://github.com/navidrome/navidrome/commit/fdbece5c92b7e69c67ef1b2b8f3980aa77266690"><tt>fdbece5</tt></a> Use custom sanitize package, fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1521696150" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2070" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/2070/hovercard" href="https://github.com/navidrome/navidrome/issues/2070">#2070</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/df0f140f9f91bac880acbcf4c7a1cd719fac9708/hovercard" href="https://github.com/navidrome/navidrome/commit/df0f140f9f91bac880acbcf4c7a1cd719fac9708"><tt>df0f140</tt></a> Don't refresh smart playlists when generating covers</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/950cc28e67609f3ec0bd85dcb870e4c8691e81f8/hovercard" href="https://github.com/navidrome/navidrome/commit/950cc28e67609f3ec0bd85dcb870e4c8691e81f8"><tt>950cc28</tt></a> Add coverArt to Subsonic playlist response</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6260927074d6bb5750f54d2d2e9550ef029a5d9a/hovercard" href="https://github.com/navidrome/navidrome/commit/6260927074d6bb5750f54d2d2e9550ef029a5d9a"><tt>6260927</tt></a> Serve artist placeholder directly, instead of using LastFM's CDN</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b8c171d3d4a9669c860e979fbcc0bdebae0d6d1e/hovercard" href="https://github.com/navidrome/navidrome/commit/b8c171d3d4a9669c860e979fbcc0bdebae0d6d1e"><tt>b8c171d</tt></a> Hide LastFM icons if <code>config.lastFMEnabled</code> is false (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1411261264" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1935" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1935/hovercard" href="https://github.com/navidrome/navidrome/pull/1935">#1935</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/80ded63d353912e6999620495d9a1c30ca7ebecd/hovercard" href="https://github.com/navidrome/navidrome/commit/80ded63d353912e6999620495d9a1c30ca7ebecd"><tt>80ded63</tt></a> Add test for mapTrackTitle</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cc14485194125866491a45d7b6a10e9a88ab5a7d/hovercard" href="https://github.com/navidrome/navidrome/commit/cc14485194125866491a45d7b6a10e9a88ab5a7d"><tt>cc14485</tt></a> When trying to PreCache, wait for ImageCache to be available</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0c7c6ba02060c94302dedb649a8502a8f0da2991/hovercard" href="https://github.com/navidrome/navidrome/commit/0c7c6ba02060c94302dedb649a8502a8f0da2991"><tt>0c7c6ba</tt></a> PreCache Playlists CoverArt</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/14032a524bc88ae383b0372e2980ca94350961b0/hovercard" href="https://github.com/navidrome/navidrome/commit/14032a524bc88ae383b0372e2980ca94350961b0"><tt>14032a5</tt></a> Reduce retention in CacheWarmer</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/61e5523457641fd662f69ff569f38671a61f9301/hovercard" href="https://github.com/navidrome/navidrome/commit/61e5523457641fd662f69ff569f38671a61f9301"><tt>61e5523</tt></a> Handle "naked" CoverArtIDs (IDs of album, mediafiles and playlists)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bc09de66400355995f709b70daf338a09e9d436f/hovercard" href="https://github.com/navidrome/navidrome/commit/bc09de66400355995f709b70daf338a09e9d436f"><tt>bc09de6</tt></a> Better error handling</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/949331ed243abefd65de7db04a38e9dd535be5c5/hovercard" href="https://github.com/navidrome/navidrome/commit/949331ed243abefd65de7db04a38e9dd535be5c5"><tt>949331e</tt></a> GetCoverArt generates a tiled (2x2) image for playlists</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/501386b11f2f535fe7fefcb61d91cdd0d147391b/hovercard" href="https://github.com/navidrome/navidrome/commit/501386b11f2f535fe7fefcb61d91cdd0d147391b"><tt>501386b</tt></a> Parse correctly playlist CoverArt ids</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8f3387a894a67b130a26c4d4871fad8f9897a3fe/hovercard" href="https://github.com/navidrome/navidrome/commit/8f3387a894a67b130a26c4d4871fad8f9897a3fe"><tt>8f3387a</tt></a> Fix tests and clean up code a bit</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/332900774d5e6b103c69ba1340c9fec5d400cb8f/hovercard" href="https://github.com/navidrome/navidrome/commit/332900774d5e6b103c69ba1340c9fec5d400cb8f"><tt>3329007</tt></a> Rename DevFastAccessCoverArt to EnableMediaFileCoverArt</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/722a00cacff5c9c93ab973a182f78d17608b2717/hovercard" href="https://github.com/navidrome/navidrome/commit/722a00cacff5c9c93ab973a182f78d17608b2717"><tt>722a00c</tt></a> Fix artwork caching</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/92ddae4a65bdfe009deabeeb0050176b1f32f4c7/hovercard" href="https://github.com/navidrome/navidrome/commit/92ddae4a65bdfe009deabeeb0050176b1f32f4c7"><tt>92ddae4</tt></a> Created dedicated artwork readers</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c1c46455016eeb0bf04b33a87ab078875e205c18/hovercard" href="https://github.com/navidrome/navidrome/commit/c1c46455016eeb0bf04b33a87ab078875e205c18"><tt>c1c4645</tt></a> Move artwork handling to its own package</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8cf78efb9c249ed88f7718a735f7ff23eae8a346/hovercard" href="https://github.com/navidrome/navidrome/commit/8cf78efb9c249ed88f7718a735f7ff23eae8a346"><tt>8cf78ef</tt></a> Add timeout for artwork extraction</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/52a4721c91dc3bf1eee05e1f96476455c4a63237/hovercard" href="https://github.com/navidrome/navidrome/commit/52a4721c91dc3bf1eee05e1f96476455c4a63237"><tt>52a4721</tt></a> Remove empty (invalid) entries from the cache</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e89d99aee0e0f00e6448de6814d51a81d32ccd88/hovercard" href="https://github.com/navidrome/navidrome/commit/e89d99aee0e0f00e6448de6814d51a81d32ccd88"><tt>e89d99a</tt></a> Also caches resized images</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dc16ccdb93c1c545f4064bab6444a9abc5317773/hovercard" href="https://github.com/navidrome/navidrome/commit/dc16ccdb93c1c545f4064bab6444a9abc5317773"><tt>dc16ccd</tt></a> Make tests compatible with GoLang 1.18</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b6eb60f01931f61257052e26264ebb750fcc72c7/hovercard" href="https://github.com/navidrome/navidrome/commit/b6eb60f01931f61257052e26264ebb750fcc72c7"><tt>b6eb60f</tt></a> Add new Artwork Cache Warmer</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8c1cd9c273d923463b9ecf377c8cd345ce0dc8d9/hovercard" href="https://github.com/navidrome/navidrome/commit/8c1cd9c273d923463b9ecf377c8cd345ce0dc8d9"><tt>8c1cd9c</tt></a> Refactor file type functions</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9ec349dce04c81a6538c095eebdda49dbbfb6818/hovercard" href="https://github.com/navidrome/navidrome/commit/9ec349dce04c81a6538c095eebdda49dbbfb6818"><tt>9ec349d</tt></a> Make sure album is updated if external cover changes</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f5719a7571df025e8f5301dfc2aaac33b2526b85/hovercard" href="https://github.com/navidrome/navidrome/commit/f5719a7571df025e8f5301dfc2aaac33b2526b85"><tt>f5719a7</tt></a> Fix spaces in CoverArtPriority, more trace logs in artwork resolution</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3dbd5c8d3115fd9db031296bb50e67b0f0220c46/hovercard" href="https://github.com/navidrome/navidrome/commit/3dbd5c8d3115fd9db031296bb50e67b0f0220c46"><tt>3dbd5c8</tt></a> Remove unnecessary cache invalidator, as ID nows contains the updatedAt value</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/73bb0104f09e21f1b7782ae6a81af2a80e7132b7/hovercard" href="https://github.com/navidrome/navidrome/commit/73bb0104f09e21f1b7782ae6a81af2a80e7132b7"><tt>73bb010</tt></a> Cache original images</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/26a7adae5fc93198665ae393ab016b17e1d31524/hovercard" href="https://github.com/navidrome/navidrome/commit/26a7adae5fc93198665ae393ab016b17e1d31524"><tt>26a7ada</tt></a> Change Image cache key format</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/04eab5666a70d6f7d33436cc3d6f3b6b4403bcb6/hovercard" href="https://github.com/navidrome/navidrome/commit/04eab5666a70d6f7d33436cc3d6f3b6b4403bcb6"><tt>04eab56</tt></a> Add back CoverArtPriority</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/045b023b350801cdb5048dc2966b885d386044ec/hovercard" href="https://github.com/navidrome/navidrome/commit/045b023b350801cdb5048dc2966b885d386044ec"><tt>045b023</tt></a> Fix <code>DevFastAccessCoverArt</code> flag</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/57c3334ea09fad189c21d9df52e0105e5e1d92d7/hovercard" href="https://github.com/navidrome/navidrome/commit/57c3334ea09fad189c21d9df52e0105e5e1d92d7"><tt>57c3334</tt></a> Remove unused <code>DevPreCacheAlbumArtwork</code> config option</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/847a0432ea74963bff60ba4f2fb9f04494ebcba0/hovercard" href="https://github.com/navidrome/navidrome/commit/847a0432ea74963bff60ba4f2fb9f04494ebcba0"><tt>847a043</tt></a> If resize fails, send the artwork as is. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="880017902" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1102" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1102/hovercard" href="https://github.com/navidrome/navidrome/issues/1102">#1102</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8e640bb8580affb7e0ea6225c0bbe240186b6b08/hovercard" href="https://github.com/navidrome/navidrome/commit/8e640bb8580affb7e0ea6225c0bbe240186b6b08"><tt>8e640bb</tt></a> Implement new Artist refresh</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bce7b163bae6e0a377a3fde66b3aea2cfdce841b/hovercard" href="https://github.com/navidrome/navidrome/commit/bce7b163bae6e0a377a3fde66b3aea2cfdce841b"><tt>bce7b16</tt></a> Skip trying to read cover art from mediafile if it does not have one</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2923f01cd9a702c4977947b9238ccaf79bbffd40/hovercard" href="https://github.com/navidrome/navidrome/commit/2923f01cd9a702c4977947b9238ccaf79bbffd40"><tt>2923f01</tt></a> Fix UI artwork id creation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a087f57d2dcf0001f8a483c6d388bf54e7210493/hovercard" href="https://github.com/navidrome/navidrome/commit/a087f57d2dcf0001f8a483c6d388bf54e7210493"><tt>a087f57</tt></a> Handle request (context) cancellation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9fcd1c935481643c939eb9ba3461a35098bf7b07/hovercard" href="https://github.com/navidrome/navidrome/commit/9fcd1c935481643c939eb9ba3461a35098bf7b07"><tt>9fcd1c9</tt></a> Make internal method unexported</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2814c818bd3cbb9161c997936bfc328935d6780a/hovercard" href="https://github.com/navidrome/navidrome/commit/2814c818bd3cbb9161c997936bfc328935d6780a"><tt>2814c81</tt></a> go mod tidy</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/73719c3abd4ee4c9114bf0f49a8375b9ada7d098/hovercard" href="https://github.com/navidrome/navidrome/commit/73719c3abd4ee4c9114bf0f49a8375b9ada7d098"><tt>73719c3</tt></a> Fix cover detection on M4A containers</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e0da1d15895e2b05a9d3d16b87b4a3523295e356/hovercard" href="https://github.com/navidrome/navidrome/commit/e0da1d15895e2b05a9d3d16b87b4a3523295e356"><tt>e0da1d1</tt></a> Log artwork origin (tag, file, etc...)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/92b42b35b38293e188a360d69d8ed263392de511/hovercard" href="https://github.com/navidrome/navidrome/commit/92b42b35b38293e188a360d69d8ed263392de511"><tt>92b42b3</tt></a> Fallback extracting tags using ffmpeg</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/abd3274250e84f849db6f9064dde75a0d6c686eb/hovercard" href="https://github.com/navidrome/navidrome/commit/abd3274250e84f849db6f9064dde75a0d6c686eb"><tt>abd3274</tt></a> Handle empty cover art ID in subsonic API</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0da27e8a3f534ae86eaa5c32fc77de709d7bf11d/hovercard" href="https://github.com/navidrome/navidrome/commit/0da27e8a3f534ae86eaa5c32fc77de709d7bf11d"><tt>0da27e8</tt></a> Add image cache back</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/40bb211b3937e764b63ad1f90c303d1c157d4f69/hovercard" href="https://github.com/navidrome/navidrome/commit/40bb211b3937e764b63ad1f90c303d1c157d4f69"><tt>40bb211</tt></a> Small test refactor</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/87d4db7638b37eeb754b217440ab7a372f669205/hovercard" href="https://github.com/navidrome/navidrome/commit/87d4db7638b37eeb754b217440ab7a372f669205"><tt>87d4db7</tt></a> Handle mediafile covers</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/213ceeca7893d3c85eb688e6e99c09dd6cd7e453/hovercard" href="https://github.com/navidrome/navidrome/commit/213ceeca7893d3c85eb688e6e99c09dd6cd7e453"><tt>213ceec</tt></a> Resize if requested</li>
+<li>7b873860 Load artwork from embedded</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c36e77d41f6be7fe1bc896a5a40ad2645dab6467/hovercard" href="https://github.com/navidrome/navidrome/commit/c36e77d41f6be7fe1bc896a5a40ad2645dab6467"><tt>c36e77d</tt></a> Remove CoverArtID, fix tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/38bde0ddba809a0d0d4c30afe8d10c09a485b9e3/hovercard" href="https://github.com/navidrome/navidrome/commit/38bde0ddba809a0d0d4c30afe8d10c09a485b9e3"><tt>38bde0d</tt></a> Remove current Image Cache implementation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c430401ea9fc65c2cb5da1133cf3487f71a48073/hovercard" href="https://github.com/navidrome/navidrome/commit/c430401ea9fc65c2cb5da1133cf3487f71a48073"><tt>c430401</tt></a> Remove current artwork implementation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0130c6dc13438b48cf0fdfab08a89e357b5517c9/hovercard" href="https://github.com/navidrome/navidrome/commit/0130c6dc13438b48cf0fdfab08a89e357b5517c9"><tt>0130c6d</tt></a> Add all images found for each album in the database</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2f90fc9bd40e24afd900b5ee85426f32684b960b/hovercard" href="https://github.com/navidrome/navidrome/commit/2f90fc9bd40e24afd900b5ee85426f32684b960b"><tt>2f90fc9</tt></a> Move album refresh to scanner</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/566ae939506ac698bc1ef9f0c9d6738d4a17f4dd/hovercard" href="https://github.com/navidrome/navidrome/commit/566ae939506ac698bc1ef9f0c9d6738d4a17f4dd"><tt>566ae93</tt></a> Remove old refresh code</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/83ff44f5f4f1d597d796d3db337ccbc15ffc88c2/hovercard" href="https://github.com/navidrome/navidrome/commit/83ff44f5f4f1d597d796d3db337ccbc15ffc88c2"><tt>83ff44f</tt></a> Move cover art discovery (temporarily) to model</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/28e7371d939ffd5baa9ccdc33d914713e238d829/hovercard" href="https://github.com/navidrome/navidrome/commit/28e7371d939ffd5baa9ccdc33d914713e238d829"><tt>28e7371</tt></a> Moved logic of collapsing songs into albums to model package</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e03ccb316637e19f846c5e2922dd47356cbb6d3c/hovercard" href="https://github.com/navidrome/navidrome/commit/e03ccb316637e19f846c5e2922dd47356cbb6d3c"><tt>e03ccb3</tt></a> Replace MinInt/MaxInt with generic versions</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6f5aaa1ec43123bbaf0e564f6a3c6b3da74ee11b/hovercard" href="https://github.com/navidrome/navidrome/commit/6f5aaa1ec43123bbaf0e564f6a3c6b3da74ee11b"><tt>6f5aaa1</tt></a> Move alternative tag names mapping to metadata</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0c22af3585c8e448139ca4b0b9fa27a03b02b883/hovercard" href="https://github.com/navidrome/navidrome/commit/0c22af3585c8e448139ca4b0b9fa27a03b02b883"><tt>0c22af3</tt></a> Invert dependency of metadata and extractors</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/55b02274942a9219b79c45ab1e8393ceaa88ea32/hovercard" href="https://github.com/navidrome/navidrome/commit/55b02274942a9219b79c45ab1e8393ceaa88ea32"><tt>55b0227</tt></a> Add Date Added column in Album and Song lists (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1507268622" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2055" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2055/hovercard" href="https://github.com/navidrome/navidrome/pull/2055">#2055</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/db6e8e45b756dbadd95f6c56b2c1a2056b3967cf/hovercard" href="https://github.com/navidrome/navidrome/commit/db6e8e45b756dbadd95f6c56b2c1a2056b3967cf"><tt>db6e8e4</tt></a> Fix build badge: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1471818100" data-permission-text="Title is private" data-url="https://github.com/badges/shields/issues/8671" data-hovercard-type="issue" data-hovercard-url="/badges/shields/issues/8671/hovercard" href="https://github.com/badges/shields/issues/8671">badges/shields#8671</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5943e8f9533b2b1706dc0a4fd19f21f9e380319b/hovercard" href="https://github.com/navidrome/navidrome/commit/5943e8f9533b2b1706dc0a4fd19f21f9e380319b"><tt>5943e8f</tt></a> Rename log.LevelCritical to log.LevelFatal</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/28389fb05e1523564dfc61fa43ed8eb8a10f938c/hovercard" href="https://github.com/navidrome/navidrome/commit/28389fb05e1523564dfc61fa43ed8eb8a10f938c"><tt>28389fb</tt></a> Add command line M3U exporter. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1397383462" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1914" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1914/hovercard" href="https://github.com/navidrome/navidrome/issues/1914">#1914</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5d8318f7b362c5b044f892f775d264a5d40e4e24/hovercard" href="https://github.com/navidrome/navidrome/commit/5d8318f7b362c5b044f892f775d264a5d40e4e24"><tt>5d8318f</tt></a> Change "Go to current song" hotkey.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/75596a6b64ca9ebf131fdce8a41c94fc2ee70aa1/hovercard" href="https://github.com/navidrome/navidrome/commit/75596a6b64ca9ebf131fdce8a41c94fc2ee70aa1"><tt>75596a6</tt></a> Bump github.com/onsi/gomega from 1.24.1 to 1.24.2 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1501976544" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2048" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2048/hovercard" href="https://github.com/navidrome/navidrome/pull/2048">#2048</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a9ddb2db6b3b5753a300eb00399499fe5b38682a/hovercard" href="https://github.com/navidrome/navidrome/commit/a9ddb2db6b3b5753a300eb00399499fe5b38682a"><tt>a9ddb2d</tt></a> Bump github.com/beego/beego/v2 from 2.0.6 to 2.0.7 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1501976527" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2047" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2047/hovercard" href="https://github.com/navidrome/navidrome/pull/2047">#2047</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fe1a6a7dd55b83e32d376beaf82f98b136843dfe/hovercard" href="https://github.com/navidrome/navidrome/commit/fe1a6a7dd55b83e32d376beaf82f98b136843dfe"><tt>fe1a6a7</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.5.1 to 2.6.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1501976492" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2046" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2046/hovercard" href="https://github.com/navidrome/navidrome/pull/2046">#2046</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9cb1fc4fa12f5a00e060087f49e8af3796608876/hovercard" href="https://github.com/navidrome/navidrome/commit/9cb1fc4fa12f5a00e060087f49e8af3796608876"><tt>9cb1fc4</tt></a> Bump github.com/go-chi/chi/v5 from 5.0.7 to 5.0.8 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1492338398" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2040" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2040/hovercard" href="https://github.com/navidrome/navidrome/pull/2040">#2040</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/24d520882e207301ab130de9330136ca927dcdef/hovercard" href="https://github.com/navidrome/navidrome/commit/24d520882e207301ab130de9330136ca927dcdef"><tt>24d5208</tt></a> Don't cache transcoded files if the request was cancelled (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1493326679" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2041" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2041/hovercard" href="https://github.com/navidrome/navidrome/pull/2041">#2041</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/54395e7e6a03b2b4a9e038fb32519fa4e55ad00f/hovercard" href="https://github.com/navidrome/navidrome/commit/54395e7e6a03b2b4a9e038fb32519fa4e55ad00f"><tt>54395e7</tt></a> Enable transcoding of downlods (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1181468766" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1667" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1667/hovercard" href="https://github.com/navidrome/navidrome/pull/1667">#1667</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6489dd4478b40b333ac0c365dc2d716a3d9c4b09/hovercard" href="https://github.com/navidrome/navidrome/commit/6489dd4478b40b333ac0c365dc2d716a3d9c4b09"><tt>6489dd4</tt></a> Fix overriding previous logger in context</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6c4a0be6ff639fb53faeb947843ef38c010505c1/hovercard" href="https://github.com/navidrome/navidrome/commit/6c4a0be6ff639fb53faeb947843ef38c010505c1"><tt>6c4a0be</tt></a> Add endpoints in Subsonic API logs</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/982b60450069ca68db0c1c55b455245c80220201/hovercard" href="https://github.com/navidrome/navidrome/commit/982b60450069ca68db0c1c55b455245c80220201"><tt>982b604</tt></a> Add username to authenticated log messages</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f206d81afd3eccd4b42e24d6396ef903ccb70f02/hovercard" href="https://github.com/navidrome/navidrome/commit/f206d81afd3eccd4b42e24d6396ef903ccb70f02"><tt>f206d81</tt></a> Some cleanup, fixes typos and grammar errors</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c5f7cf97f49e75950ce2954437d933cdf31a0487/hovercard" href="https://github.com/navidrome/navidrome/commit/c5f7cf97f49e75950ce2954437d933cdf31a0487"><tt>c5f7cf9</tt></a> Some cleanup, adding missing context handling</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/55ba39cb79891e477a5a77a1d7721ccbfb946eb6/hovercard" href="https://github.com/navidrome/navidrome/commit/55ba39cb79891e477a5a77a1d7721ccbfb946eb6"><tt>55ba39c</tt></a> Add global Downsampling feature (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1107271683" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1575" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1575/hovercard" href="https://github.com/navidrome/navidrome/pull/1575">#1575</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0cc1db54d4cc0f4be44ae8179fcc94749dce6108/hovercard" href="https://github.com/navidrome/navidrome/commit/0cc1db54d4cc0f4be44ae8179fcc94749dce6108"><tt>0cc1db5</tt></a> Bump github.com/bradleyjkemp/cupaloy to v2.8.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/879992eb33779710aa2a6a5c65920c7ae887436b/hovercard" href="https://github.com/navidrome/navidrome/commit/879992eb33779710aa2a6a5c65920c7ae887436b"><tt>879992e</tt></a> Change "current song" hotkey English label</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b5b01f78dbd3abb820a920c17626d6d8c0de9e38/hovercard" href="https://github.com/navidrome/navidrome/commit/b5b01f78dbd3abb820a920c17626d6d8c0de9e38"><tt>b5b01f7</tt></a> Keyboard shortcut to go to current song (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1476503291" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2029" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2029/hovercard" href="https://github.com/navidrome/navidrome/pull/2029">#2029</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cdddd4ce30de12270643a2caed538a6350e17590/hovercard" href="https://github.com/navidrome/navidrome/commit/cdddd4ce30de12270643a2caed538a6350e17590"><tt>cdddd4c</tt></a> Bump golang.org/x/text from 0.4.0 to 0.5.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1476996652" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2030" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2030/hovercard" href="https://github.com/navidrome/navidrome/pull/2030">#2030</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4489c3475716e0c70d6ebacc3b82bae7563093ab/hovercard" href="https://github.com/navidrome/navidrome/commit/4489c3475716e0c70d6ebacc3b82bae7563093ab"><tt>4489c34</tt></a> Fix Misleading Error Message on unreadable Media due to Permission (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1376738378" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1873" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1873/hovercard" href="https://github.com/navidrome/navidrome/pull/1873">#1873</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/51b67d18d3cb3e692088912b4c9123befe11ff1c/hovercard" href="https://github.com/navidrome/navidrome/commit/51b67d18d3cb3e692088912b4c9123befe11ff1c"><tt>51b67d1</tt></a> Increase number of "Shuffle All" songs</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c4d156944148020588c138857ade63f6a0a84ba2/hovercard" href="https://github.com/navidrome/navidrome/commit/c4d156944148020588c138857ade63f6a0a84ba2"><tt>c4d1569</tt></a> Fix bug in duration format logic (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1473841078" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2026" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2026/hovercard" href="https://github.com/navidrome/navidrome/pull/2026">#2026</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/68ceeb9ea1b1b6750639d9156a0c9156e68b9f52/hovercard" href="https://github.com/navidrome/navidrome/commit/68ceeb9ea1b1b6750639d9156a0c9156e68b9f52"><tt>68ceeb9</tt></a> Fix build for non-unix</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4549b91ae015e28406cfaa053fb4f66831b000fa/hovercard" href="https://github.com/navidrome/navidrome/commit/4549b91ae015e28406cfaa053fb4f66831b000fa"><tt>4549b91</tt></a> Fix build for non-unix</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9ffd145e82bb3d98b3af44543746e2c1ba6d25fe/hovercard" href="https://github.com/navidrome/navidrome/commit/9ffd145e82bb3d98b3af44543746e2c1ba6d25fe"><tt>9ffd145</tt></a> Add log for signal received</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5713010984fbde4c104d493a733fc5324857a64b/hovercard" href="https://github.com/navidrome/navidrome/commit/5713010984fbde4c104d493a733fc5324857a64b"><tt>5713010</tt></a> Bump github.com/spf13/viper from 1.13.0 to 1.14.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1466763590" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2019" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2019/hovercard" href="https://github.com/navidrome/navidrome/pull/2019">#2019</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/00c6545cb194bb2217d39037f0516e0d94b07e2d/hovercard" href="https://github.com/navidrome/navidrome/commit/00c6545cb194bb2217d39037f0516e0d94b07e2d"><tt>00c6545</tt></a> Bump github.com/go-chi/jwtauth/v5 from 5.0.2 to 5.1.0</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3f45a4ed98e5a813b4f20051cf714e40db8d7258/hovercard" href="https://github.com/navidrome/navidrome/commit/3f45a4ed98e5a813b4f20051cf714e40db8d7258"><tt>3f45a4e</tt></a> Bump github.com/beego/beego/v2 from 2.0.5 to 2.0.6 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1466762997" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2016" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2016/hovercard" href="https://github.com/navidrome/navidrome/pull/2016">#2016</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/46c09e4b114346696e4eee070c941625b0cfc7f0/hovercard" href="https://github.com/navidrome/navidrome/commit/46c09e4b114346696e4eee070c941625b0cfc7f0"><tt>46c09e4</tt></a> Bump github.com/prometheus/client_golang from 1.13.0 to 1.14.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1466763427" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2018" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2018/hovercard" href="https://github.com/navidrome/navidrome/pull/2018">#2018</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/40395f47f0974e0e171d338b9cefe0261c38c0f1/hovercard" href="https://github.com/navidrome/navidrome/commit/40395f47f0974e0e171d338b9cefe0261c38c0f1"><tt>40395f4</tt></a> Use forked react-player. May fix issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1058415828" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1472" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1472/hovercard" href="https://github.com/navidrome/navidrome/issues/1472">#1472</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2c214154dc946e26255022328052df8f5300bef4/hovercard" href="https://github.com/navidrome/navidrome/commit/2c214154dc946e26255022328052df8f5300bef4"><tt>2c21415</tt></a> Add nakedret linter</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/03640ca93d32ef885b8c684889584376717a6eaa/hovercard" href="https://github.com/navidrome/navidrome/commit/03640ca93d32ef885b8c684889584376717a6eaa"><tt>03640ca</tt></a> Fix background images when BaseURL is specified</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d8c5944ef17d205cdabf94f1c67761d5a9381d82/hovercard" href="https://github.com/navidrome/navidrome/commit/d8c5944ef17d205cdabf94f1c67761d5a9381d82"><tt>d8c5944</tt></a> Fix race condition in scanner</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/10cd3152bab50f1d298eaab261fbcdeabe0390ec/hovercard" href="https://github.com/navidrome/navidrome/commit/10cd3152bab50f1d298eaab261fbcdeabe0390ec"><tt>10cd315</tt></a> Remove misplaced import</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/950b5dc1cebb831c696bc6c18985ab91f4e536d3/hovercard" href="https://github.com/navidrome/navidrome/commit/950b5dc1cebb831c696bc6c18985ab91f4e536d3"><tt>950b5dc</tt></a> Remove <code>math/rand</code> and only use <code>crypto/rand</code></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/195f39182db9b7a9231fa4fc9f39cac23775bae1/hovercard" href="https://github.com/navidrome/navidrome/commit/195f39182db9b7a9231fa4fc9f39cac23775bae1"><tt>195f391</tt></a> Host default login background images in Navidrome's own website</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/334ccac643d9eca867755b0ba6b357f219544d88/hovercard" href="https://github.com/navidrome/navidrome/commit/334ccac643d9eca867755b0ba6b357f219544d88"><tt>334ccac</tt></a> Spotify-ish Improvement (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1465515744" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2012" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2012/hovercard" href="https://github.com/navidrome/navidrome/pull/2012">#2012</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/676de79fb370da1b71486f3c866232561d024dc1/hovercard" href="https://github.com/navidrome/navidrome/commit/676de79fb370da1b71486f3c866232561d024dc1"><tt>676de79</tt></a> Don't abort scan if all audio files are in the MediaFolder's root. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="837233473" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/868" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/868/hovercard" href="https://github.com/navidrome/navidrome/issues/868">#868</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="838734285" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/893" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/893/hovercard" href="https://github.com/navidrome/navidrome/pull/893">#893</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d5fe0f214c89ef5108e72c61d3b06479730ca89e/hovercard" href="https://github.com/navidrome/navidrome/commit/d5fe0f214c89ef5108e72c61d3b06479730ca89e"><tt>d5fe0f2</tt></a> fix: send content type header in listenbrainz requests - <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1414290627" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1944" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1944/hovercard" href="https://github.com/navidrome/navidrome/issues/1944">#1944</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1451150624" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1994" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1994/hovercard" href="https://github.com/navidrome/navidrome/pull/1994">#1994</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6ae6e023ea2d5373c35c2341b6ff0a9338b80546/hovercard" href="https://github.com/navidrome/navidrome/commit/6ae6e023ea2d5373c35c2341b6ff0a9338b80546"><tt>6ae6e02</tt></a> Bump some NPM dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7bafbce8168271f9d9c2f4c263d129b8b8b0b7b8/hovercard" href="https://github.com/navidrome/navidrome/commit/7bafbce8168271f9d9c2f4c263d129b8b8b0b7b8"><tt>7bafbce</tt></a> Reduce number of goroutines in test, to avoid hitting the hard limit of 8128</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a69a31a3bf09d51d3b374c481e2f4eaa8354e30d/hovercard" href="https://github.com/navidrome/navidrome/commit/a69a31a3bf09d51d3b374c481e2f4eaa8354e30d"><tt>a69a31a</tt></a> Use custom atomic.Bool, as it is not supported in Go 1.18</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/88823fca76de7051fa264fa3c5f8c0d480ec6170/hovercard" href="https://github.com/navidrome/navidrome/commit/88823fca76de7051fa264fa3c5f8c0d480ec6170"><tt>88823fc</tt></a> Fix race conditions in tests</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0bb133a6acde2591e672820328fd45564399e2a0/hovercard" href="https://github.com/navidrome/navidrome/commit/0bb133a6acde2591e672820328fd45564399e2a0"><tt>0bb133a</tt></a> Kill ffmpeg if context is cancelled</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/76a94ecb709a342aad7cd711eeacf7b287d4fbed/hovercard" href="https://github.com/navidrome/navidrome/commit/76a94ecb709a342aad7cd711eeacf7b287d4fbed"><tt>76a94ec</tt></a> Update GH actions</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1b5f855bff52c46c3de1d24c0ebf414f18abef5d/hovercard" href="https://github.com/navidrome/navidrome/commit/1b5f855bff52c46c3de1d24c0ebf414f18abef5d"><tt>1b5f855</tt></a> Compress more http content-types.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/472f99b2b5f951c61450a873376024dddbb43aa8/hovercard" href="https://github.com/navidrome/navidrome/commit/472f99b2b5f951c61450a873376024dddbb43aa8"><tt>472f99b</tt></a> Add AAC default transcoding (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1461773518" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2010" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2010/hovercard" href="https://github.com/navidrome/navidrome/pull/2010">#2010</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4d660a2ba7c033a2c62333ca3f86b49d37de2e59/hovercard" href="https://github.com/navidrome/navidrome/commit/4d660a2ba7c033a2c62333ca3f86b49d37de2e59"><tt>4d660a2</tt></a> Bump github.com/golangci/golangci-lint from 1.49.0 to 1.50.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1421194080" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1954" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1954/hovercard" href="https://github.com/navidrome/navidrome/pull/1954">#1954</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/398101896fc3cd102bb50fa90fe870091a021a76/hovercard" href="https://github.com/navidrome/navidrome/commit/398101896fc3cd102bb50fa90fe870091a021a76"><tt>3981018</tt></a> Bump golang.org/x/tools from 0.1.12 to 0.3.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1448426618" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1991" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1991/hovercard" href="https://github.com/navidrome/navidrome/pull/1991">#1991</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d76985e3f7118fe5f8505f73532cdd1b38f8fcaa/hovercard" href="https://github.com/navidrome/navidrome/commit/d76985e3f7118fe5f8505f73532cdd1b38f8fcaa"><tt>d76985e</tt></a> Bump github.com/kr/pretty from 0.3.0 to 0.3.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1403480125" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1924" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1924/hovercard" href="https://github.com/navidrome/navidrome/pull/1924">#1924</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e17e4ef146dbc7f50ba9916773ee8addb75f427d/hovercard" href="https://github.com/navidrome/navidrome/commit/e17e4ef146dbc7f50ba9916773ee8addb75f427d"><tt>e17e4ef</tt></a> Bump github.com/microcosm-cc/bluemonday from 1.0.20 to 1.0.21 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1395052116" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1905" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1905/hovercard" href="https://github.com/navidrome/navidrome/pull/1905">#1905</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0a4a9d485eea6d299c05541776d1843380464229/hovercard" href="https://github.com/navidrome/navidrome/commit/0a4a9d485eea6d299c05541776d1843380464229"><tt>0a4a9d4</tt></a> Bump github.com/mattn/go-sqlite3 from 1.14.15 to 1.14.16 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1430182511" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1965" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1965/hovercard" href="https://github.com/navidrome/navidrome/pull/1965">#1965</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ce2c5792357a6b4565bd9fb5ffd8b75567a04124/hovercard" href="https://github.com/navidrome/navidrome/commit/ce2c5792357a6b4565bd9fb5ffd8b75567a04124"><tt>ce2c579</tt></a> Bump github.com/spf13/cobra from 1.5.0 to 1.6.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1430182625" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1966" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1966/hovercard" href="https://github.com/navidrome/navidrome/pull/1966">#1966</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4e19c5e0781be3fa82cbc722c17aa00b3e426193/hovercard" href="https://github.com/navidrome/navidrome/commit/4e19c5e0781be3fa82cbc722c17aa00b3e426193"><tt>4e19c5e</tt></a> Bump github.com/stretchr/testify from 1.8.0 to 1.8.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1421193567" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1951" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1951/hovercard" href="https://github.com/navidrome/navidrome/pull/1951">#1951</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ab6be8d2dc8ae246185cc8d0b2f0f54c633c7433/hovercard" href="https://github.com/navidrome/navidrome/commit/ab6be8d2dc8ae246185cc8d0b2f0f54c633c7433"><tt>ab6be8d</tt></a> Listenbrainz Scrobble (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1459237927" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2009" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2009/hovercard" href="https://github.com/navidrome/navidrome/pull/2009">#2009</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/586f5c413df52035528a63b612413574a3110482/hovercard" href="https://github.com/navidrome/navidrome/commit/586f5c413df52035528a63b612413574a3110482"><tt>586f5c4</tt></a> Bump github.com/onsi/ginkgo/v2 from 2.2.0 to 2.5.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1458282588" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/2007" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/2007/hovercard" href="https://github.com/navidrome/navidrome/pull/2007">#2007</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e6a93da75f8a30b744c28ef435a1b39b870cd1ad/hovercard" href="https://github.com/navidrome/navidrome/commit/e6a93da75f8a30b744c28ef435a1b39b870cd1ad"><tt>e6a93da</tt></a> Bump github.com/onsi/gomega from 1.20.2 to 1.24.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1448426376" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1990" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1990/hovercard" href="https://github.com/navidrome/navidrome/pull/1990">#1990</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fcb891e704c34d8d72e52162838958697c423e25/hovercard" href="https://github.com/navidrome/navidrome/commit/fcb891e704c34d8d72e52162838958697c423e25"><tt>fcb891e</tt></a> Add an <code>id</code> attribute to Search boxes. Should fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1453858227" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1998" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1998/hovercard" href="https://github.com/navidrome/navidrome/issues/1998">#1998</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/19af11efbe68d133f1913adb43d5c5ea4b01f20e/hovercard" href="https://github.com/navidrome/navidrome/commit/19af11efbe68d133f1913adb43d5c5ea4b01f20e"><tt>19af11e</tt></a> Simplify Subsonic API handler implementation</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cd41d9a4192e96b9844b6dbb245c325992baa312/hovercard" href="https://github.com/navidrome/navidrome/commit/cd41d9a4192e96b9844b6dbb245c325992baa312"><tt>cd41d9a</tt></a> Shutdown gracefully, close DB connection</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5f3f7afb9038c6a79537496649d4899ee2351700/hovercard" href="https://github.com/navidrome/navidrome/commit/5f3f7afb9038c6a79537496649d4899ee2351700"><tt>5f3f7af</tt></a> Add note about unstable state of master branch</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/1467036efd7591ed5d1c10b4bbb34c5b9cb5a4fc/hovercard" href="https://github.com/navidrome/navidrome/commit/1467036efd7591ed5d1c10b4bbb34c5b9cb5a4fc"><tt>1467036</tt></a> Add <code>DefaultUIVolume</code> option. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1192032178" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1679" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1679/hovercard" href="https://github.com/navidrome/navidrome/issues/1679">#1679</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ff6c8f7e9dc6d856bbfbc34cd633b232fe07bbc0/hovercard" href="https://github.com/navidrome/navidrome/commit/ff6c8f7e9dc6d856bbfbc34cd633b232fe07bbc0"><tt>ff6c8f7</tt></a> Bump loader-utils from 2.0.0 to 2.0.3 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1439088636" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1978" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1978/hovercard" href="https://github.com/navidrome/navidrome/pull/1978">#1978</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3a462c7f07bbef5b25cf97f2f9e84ed04679a89d/hovercard" href="https://github.com/navidrome/navidrome/commit/3a462c7f07bbef5b25cf97f2f9e84ed04679a89d"><tt>3a462c7</tt></a> Fix ARM v5 and v6 builds, by going back to armel.</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9c433b5d68e730f8b862a5654a3601037a5574aa/hovercard" href="https://github.com/navidrome/navidrome/commit/9c433b5d68e730f8b862a5654a3601037a5574aa"><tt>9c433b5</tt></a> Add missing context to logger calls</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/daa428ede763673d5460372dae414d1ae15153b4/hovercard" href="https://github.com/navidrome/navidrome/commit/daa428ede763673d5460372dae414d1ae15153b4"><tt>daa428e</tt></a> Update Chinese translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1414499247" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1945" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1945/hovercard" href="https://github.com/navidrome/navidrome/pull/1945">#1945</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/76517cab12b190618f8966e5b7c41a6d6d361326/hovercard" href="https://github.com/navidrome/navidrome/commit/76517cab12b190618f8966e5b7c41a6d6d361326"><tt>76517ca</tt></a> Fix potential nil pointer dereference</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8f02daf337dce8a6bf899a78d2c1fc3a3a7a5bb9/hovercard" href="https://github.com/navidrome/navidrome/commit/8f02daf337dce8a6bf899a78d2c1fc3a3a7a5bb9"><tt>8f02daf</tt></a> Reduce spurious error/warn messages, if loglevel != debug</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/80b7311453d6572d80d55fc831b7e7b405485cbe/hovercard" href="https://github.com/navidrome/navidrome/commit/80b7311453d6572d80d55fc831b7e7b405485cbe"><tt>80b7311</tt></a> Add TrackNumber to "fake" generated filenames. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1395819880" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1912" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1912/hovercard" href="https://github.com/navidrome/navidrome/issues/1912">#1912</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ca2cb26d8ed3081d2f96a69dca11833a2ce00613/hovercard" href="https://github.com/navidrome/navidrome/commit/ca2cb26d8ed3081d2f96a69dca11833a2ce00613"><tt>ca2cb26</tt></a> Add <code>played</code> field to Subsonic API responses. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1433255033" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1971" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1971/hovercard" href="https://github.com/navidrome/navidrome/issues/1971">#1971</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/081cfe5a9f2175751135807a393f1eb31859544e/hovercard" href="https://github.com/navidrome/navidrome/commit/081cfe5a9f2175751135807a393f1eb31859544e"><tt>081cfe5</tt></a> Fix build badge</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5f38d9dca2c93f9527eb1d1014e13d4631f17eff/hovercard" href="https://github.com/navidrome/navidrome/commit/5f38d9dca2c93f9527eb1d1014e13d4631f17eff"><tt>5f38d9d</tt></a> Fix 60 seconds (again). Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1423858987" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1956" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1956/hovercard" href="https://github.com/navidrome/navidrome/issues/1956">#1956</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/64e2a0bcd47ae35849ce453285065d54b6d22950/hovercard" href="https://github.com/navidrome/navidrome/commit/64e2a0bcd47ae35849ce453285065d54b6d22950"><tt>64e2a0b</tt></a> Optimize static images (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1412083797" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1941" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1941/hovercard" href="https://github.com/navidrome/navidrome/pull/1941">#1941</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/aab4925dfcfd67fe77981659286acd50eb2a88de/hovercard" href="https://github.com/navidrome/navidrome/commit/aab4925dfcfd67fe77981659286acd50eb2a88de"><tt>aab4925</tt></a> Restore DefaultLanguage case-sensitiveness by reverting commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bfeb8ef6b3e5756d72b230abdbb96f8a31b2e2fa/hovercard" href="https://github.com/navidrome/navidrome/commit/bfeb8ef6b3e5756d72b230abdbb96f8a31b2e2fa"><tt>bfeb8ef</tt></a>.</li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.48.0
+ 2022-10-16T19:04:28+02:00
+
+ v0.48.0
+ <p>This release is focused on fixing bugs and security issues. Also fixes a bunch of edge cases in Smart Playlists.<br>
+Thanks to <a href="https://github.com/navidrome/navidrome/graphs/contributors?from=2022-01-22&to=2022-10-16&type=c">all contributors</a> who helped in this release.</p>
+<h2>Highlights</h2>
+<ul>
+<li>[UI] New Theme - Nord <a href="https://github.com/navidrome/navidrome/pull/1899" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1899/hovercard">#1899</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/renere/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/renere">@renere</a> and <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tpbnick/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tpbnick">@tpbnick</a></li>
+<li>[UI] New Theme - Monokai <a href="https://github.com/navidrome/navidrome/pull/1669" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1669/hovercard">#1669</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chief8192/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chief8192">@chief8192</a></li>
+<li>[UI] New Theme - Electric Purple <a href="https://github.com/navidrome/navidrome/pull/1889" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1889/hovercard">#1889</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/william-lohan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/william-lohan">@william-lohan</a></li>
+<li>[UI] New config <code>DefaultLanguage</code> <a href="https://github.com/navidrome/navidrome/pull/1561" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1561/hovercard">#1561</a></li>
+<li>[UI] "Linkify" URLs in Album and Playlist comments <a href="https://github.com/navidrome/navidrome/pull/1053" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1053/hovercard">#1053</a></li>
+<li>[Server] Add "random" sort option to Smart Playlists</li>
+<li>[Server] Add ListenBrainz URL config, allowing to use self-hosted solutions <a href="https://github.com/navidrome/navidrome/pull/1774" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1774/hovercard">#1774</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/andyklimczak/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/andyklimczak">@andyklimczak</a></li>
+<li>[Server] Add basic Prometheus metrics <a href="https://github.com/navidrome/navidrome/pull/1830" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1830/hovercard">#1830</a>. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/AlekseyLobanov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/AlekseyLobanov">@AlekseyLobanov</a></li>
+<li>[Server] Fix cache not honoring <code>ND_TRANSCODINGCACHESIZE</code> <a href="https://github.com/navidrome/navidrome/issues/1778" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1778/hovercard">#1778</a></li>
+<li>[Build] Fix building on Fedora. Thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/pimzand/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/pimzand">@pimzand</a> for reporting it</li>
+<li>[Build] Minimum Go version is now 1.18</li>
+</ul>
+<h2>Changelog</h2>
+<ul>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/af5c2b5a42ed8b1038f8434ff64bab78378360a4/hovercard" href="https://github.com/navidrome/navidrome/commit/af5c2b5a42ed8b1038f8434ff64bab78378360a4"><tt>af5c2b5</tt></a> Round song duration (instead of truncating it). Relates to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1403499069" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1926" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1926/hovercard" href="https://github.com/navidrome/navidrome/issues/1926">#1926</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/62e7492357de411d72a6fe931e5c557dd0bfb78a/hovercard" href="https://github.com/navidrome/navidrome/commit/62e7492357de411d72a6fe931e5c557dd0bfb78a"><tt>62e7492</tt></a> Add Linkify test</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/53a4ea673bf15c9e86b4bbb972411f6e8aced402/hovercard" href="https://github.com/navidrome/navidrome/commit/53a4ea673bf15c9e86b4bbb972411f6e8aced402"><tt>53a4ea6</tt></a> Linkify urls in playlist comments</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c530ccf13854e3a840ddf63eef5e2323fbe2827d/hovercard" href="https://github.com/navidrome/navidrome/commit/c530ccf13854e3a840ddf63eef5e2323fbe2827d"><tt>c530ccf</tt></a> Linkify urls in album comments. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="867005853" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1053" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1053/hovercard" href="https://github.com/navidrome/navidrome/issues/1053">#1053</a>, supersedes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1101276377" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1570" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1570/hovercard" href="https://github.com/navidrome/navidrome/pull/1570">#1570</a> and <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="919477135" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1169" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1169/hovercard" href="https://github.com/navidrome/navidrome/pull/1169">#1169</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/fa5dc5af10f7e0eb52167915adfc2a6f3f280574/hovercard" href="https://github.com/navidrome/navidrome/commit/fa5dc5af10f7e0eb52167915adfc2a6f3f280574"><tt>fa5dc5a</tt></a> Fix adding songs to plain playlists</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bbd3882a752c956a8891938973f653e08a947710/hovercard" href="https://github.com/navidrome/navidrome/commit/bbd3882a752c956a8891938973f653e08a947710"><tt>bbd3882</tt></a> Some clean-up in <code>criteria</code> package</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/12b4a488427f53f383b2a8ed651a18ef572e8753/hovercard" href="https://github.com/navidrome/navidrome/commit/12b4a488427f53f383b2a8ed651a18ef572e8753"><tt>12b4a48</tt></a> Fix get info dialog in artist page. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1395742060" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1909" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1909/hovercard" href="https://github.com/navidrome/navidrome/issues/1909">#1909</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/37f7625c7d8b2a07a6766ac8a69a36e6d2e1ce43/hovercard" href="https://github.com/navidrome/navidrome/commit/37f7625c7d8b2a07a6766ac8a69a36e6d2e1ce43"><tt>37f7625</tt></a> Bump github.com/prometheus/client_golang from 1.12.1 to 1.13.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1393941568" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1902" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1902/hovercard" href="https://github.com/navidrome/navidrome/pull/1902">#1902</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7612a55859a13d0c3d84a470248ad38dcdde8bb6/hovercard" href="https://github.com/navidrome/navidrome/commit/7612a55859a13d0c3d84a470248ad38dcdde8bb6"><tt>7612a55</tt></a> Bump github.com/mileusna/useragent from 1.2.0 to 1.2.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1393941493" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1901" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1901/hovercard" href="https://github.com/navidrome/navidrome/pull/1901">#1901</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3d5a1cef920339a8666779a6aee65a6e9702f0bb/hovercard" href="https://github.com/navidrome/navidrome/commit/3d5a1cef920339a8666779a6aee65a6e9702f0bb"><tt>3d5a1ce</tt></a> Don't allow adding songs to smart playlists</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/552989a05b0456fe76f851773a20d4e217350163/hovercard" href="https://github.com/navidrome/navidrome/commit/552989a05b0456fe76f851773a20d4e217350163"><tt>552989a</tt></a> Add basic Prometheus metrics handler (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1319949717" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1830" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1830/hovercard" href="https://github.com/navidrome/navidrome/pull/1830">#1830</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6a6fa3e3b53c774fce51e41cd7fc4a8b80a14d61/hovercard" href="https://github.com/navidrome/navidrome/commit/6a6fa3e3b53c774fce51e41cd7fc4a8b80a14d61"><tt>6a6fa3e</tt></a> Nord Theme - Make links have a different colour (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1393602828" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1900" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1900/hovercard" href="https://github.com/navidrome/navidrome/pull/1900">#1900</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c7ef4bd8033677fe636feebe7e89cd55f51b1dbc/hovercard" href="https://github.com/navidrome/navidrome/commit/c7ef4bd8033677fe636feebe7e89cd55f51b1dbc"><tt>c7ef4bd</tt></a> Capture "musicbrainz_releasetrackid" tag (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1318496305" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1827" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1827/hovercard" href="https://github.com/navidrome/navidrome/pull/1827">#1827</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/22507c9789f275a7a9a99b119dfab02b6722c26c/hovercard" href="https://github.com/navidrome/navidrome/commit/22507c9789f275a7a9a99b119dfab02b6722c26c"><tt>22507c9</tt></a> Add Nord Theme. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="912863808" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1158" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1158/hovercard" href="https://github.com/navidrome/navidrome/issues/1158">#1158</a> and supersedes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="912872313" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1159" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1159/hovercard" href="https://github.com/navidrome/navidrome/pull/1159">#1159</a> (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1393267743" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1899" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1899/hovercard" href="https://github.com/navidrome/navidrome/pull/1899">#1899</a>).</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/87feac041b742e8217be19811c38c737e5732bfb/hovercard" href="https://github.com/navidrome/navidrome/commit/87feac041b742e8217be19811c38c737e5732bfb"><tt>87feac0</tt></a> Add make target to download some music for development purposes. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1213467175" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1703" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1703/hovercard" href="https://github.com/navidrome/navidrome/issues/1703">#1703</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f82df703022f6c325d75cc224cacecc5561f2945/hovercard" href="https://github.com/navidrome/navidrome/commit/f82df703022f6c325d75cc224cacecc5561f2945"><tt>f82df70</tt></a> Add nilerr linter</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/364e699ac1af1084bf97175b5dbf7d3e6a7a9408/hovercard" href="https://github.com/navidrome/navidrome/commit/364e699ac1af1084bf97175b5dbf7d3e6a7a9408"><tt>364e699</tt></a> Add asciicheck, bidichk, and durationcheck linters</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0798959be882eb9b10ddced37e7048bd2d7c77ea/hovercard" href="https://github.com/navidrome/navidrome/commit/0798959be882eb9b10ddced37e7048bd2d7c77ea"><tt>0798959</tt></a> Add asasalint linter</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4209e1420827245e75de418f7ce1f6edec40977c/hovercard" href="https://github.com/navidrome/navidrome/commit/4209e1420827245e75de418f7ce1f6edec40977c"><tt>4209e14</tt></a> Add theme Electric Purple (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1386409649" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1889" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1889/hovercard" href="https://github.com/navidrome/navidrome/pull/1889">#1889</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/77dbafff0f1c76267b970c59df395f5c791e097f/hovercard" href="https://github.com/navidrome/navidrome/commit/77dbafff0f1c76267b970c59df395f5c791e097f"><tt>77dbaff</tt></a> Add errorlint linter</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/db67c1277efea985d4f3aa9592f6a844ddf1d83b/hovercard" href="https://github.com/navidrome/navidrome/commit/db67c1277efea985d4f3aa9592f6a844ddf1d83b"><tt>db67c12</tt></a> Fix error comparisons</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7b0a8f47def17cea593aa8e957193e0a9b766424/hovercard" href="https://github.com/navidrome/navidrome/commit/7b0a8f47def17cea593aa8e957193e0a9b766424"><tt>7b0a8f4</tt></a> Add exportloopref linter</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/16865f0fca02f827fa5b260bdcf66b6031114ea0/hovercard" href="https://github.com/navidrome/navidrome/commit/16865f0fca02f827fa5b260bdcf66b6031114ea0"><tt>16865f0</tt></a> remove deprecated linters (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1393014483" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1898" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1898/hovercard" href="https://github.com/navidrome/navidrome/pull/1898">#1898</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5965459bb92b95b9a0c30490eed113a7f54cc54a/hovercard" href="https://github.com/navidrome/navidrome/commit/5965459bb92b95b9a0c30490eed113a7f54cc54a"><tt>5965459</tt></a> Update browserlist db</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/66818b25ec8ab896b90ec6dbe41d6a42562243a0/hovercard" href="https://github.com/navidrome/navidrome/commit/66818b25ec8ab896b90ec6dbe41d6a42562243a0"><tt>66818b2</tt></a> Allow ExternalLink icons to be styled (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1071721035" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1503" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1503/hovercard" href="https://github.com/navidrome/navidrome/pull/1503">#1503</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e7fab8bb7b5e1445d9f925d3358433e8e201cf87/hovercard" href="https://github.com/navidrome/navidrome/commit/e7fab8bb7b5e1445d9f925d3358433e8e201cf87"><tt>e7fab8b</tt></a> Show AlbumArtist in Album table view. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1147986982" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1626" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1626/hovercard" href="https://github.com/navidrome/navidrome/issues/1626">#1626</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8befe10ee637be8868129b3ec22126168dfe3c6d/hovercard" href="https://github.com/navidrome/navidrome/commit/8befe10ee637be8868129b3ec22126168dfe3c6d"><tt>8befe10</tt></a> fix(UI): Warn if track is already present when adding to playlist - 1604 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1390684941" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1897" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1897/hovercard" href="https://github.com/navidrome/navidrome/pull/1897">#1897</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/218d14727a8a6f887e0367d13204a2681bd3f820/hovercard" href="https://github.com/navidrome/navidrome/commit/218d14727a8a6f887e0367d13204a2681bd3f820"><tt>218d147</tt></a> Bump redux and react-redux versions</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/50a4ce6ba2af019e1dee28147aac5952de02854b/hovercard" href="https://github.com/navidrome/navidrome/commit/50a4ce6ba2af019e1dee28147aac5952de02854b"><tt>50a4ce6</tt></a> Fix add playlist dialog (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1260863120" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1758" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1758/hovercard" href="https://github.com/navidrome/navidrome/pull/1758">#1758</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8130c05ccc55b100fb1e73289619affda7dbde87/hovercard" href="https://github.com/navidrome/navidrome/commit/8130c05ccc55b100fb1e73289619affda7dbde87"><tt>8130c05</tt></a> Mount devcontainer workspace SELinux compatible (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1314890041" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1816" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1816/hovercard" href="https://github.com/navidrome/navidrome/pull/1816">#1816</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/15952a3c7ffc698d751c79f69cf9ea0a2b030337/hovercard" href="https://github.com/navidrome/navidrome/commit/15952a3c7ffc698d751c79f69cf9ea0a2b030337"><tt>15952a3</tt></a> npm audit fix</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9a99a2bd490da0cbaa19cbed47c9e0dc3b296e84/hovercard" href="https://github.com/navidrome/navidrome/commit/9a99a2bd490da0cbaa19cbed47c9e0dc3b296e84"><tt>9a99a2b</tt></a> Update Chinese (simplified) translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1152910072" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1633" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1633/hovercard" href="https://github.com/navidrome/navidrome/pull/1633">#1633</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c7b65509ae113f41d02264d6913a830120d17346/hovercard" href="https://github.com/navidrome/navidrome/commit/c7b65509ae113f41d02264d6913a830120d17346"><tt>c7b6550</tt></a> Bump @testing-library/jest-dom from 5.15.0 to 5.16.5 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1332160604" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1836" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1836/hovercard" href="https://github.com/navidrome/navidrome/pull/1836">#1836</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6b09dc719885573469ce542337799b95a2b13337/hovercard" href="https://github.com/navidrome/navidrome/commit/6b09dc719885573469ce542337799b95a2b13337"><tt>6b09dc7</tt></a> Fix new test-library eslint errors</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/86ab35069dec2ad4cc4bd21a1cb1c872b76f3e34/hovercard" href="https://github.com/navidrome/navidrome/commit/86ab35069dec2ad4cc4bd21a1cb1c872b76f3e34"><tt>86ab350</tt></a> Upgrade react-scripts to 5.0.1</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/413292da6bd38e700fd974fd217008d36d60682c/hovercard" href="https://github.com/navidrome/navidrome/commit/413292da6bd38e700fd974fd217008d36d60682c"><tt>413292d</tt></a> Reduce go mod download verbosity</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/694968c60737a2ba47c15a53a61008e8271570b4/hovercard" href="https://github.com/navidrome/navidrome/commit/694968c60737a2ba47c15a53a61008e8271570b4"><tt>694968c</tt></a> Bump dependencies</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6dc70d68102ab77cb580b0ffa2193a2279b4b7c8/hovercard" href="https://github.com/navidrome/navidrome/commit/6dc70d68102ab77cb580b0ffa2193a2279b4b7c8"><tt>6dc70d6</tt></a> Don't reset language to default after logout</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bfeb8ef6b3e5756d72b230abdbb96f8a31b2e2fa/hovercard" href="https://github.com/navidrome/navidrome/commit/bfeb8ef6b3e5756d72b230abdbb96f8a31b2e2fa"><tt>bfeb8ef</tt></a> DefaultLanguage is now case-insensitive</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ba28e9a109fb3bb57233f2b4c6ad8ad95f4c3f86/hovercard" href="https://github.com/navidrome/navidrome/commit/ba28e9a109fb3bb57233f2b4c6ad8ad95f4c3f86"><tt>ba28e9a</tt></a> Update README. Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1330887075" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1834" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1834/hovercard" href="https://github.com/navidrome/navidrome/issues/1834">#1834</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2f7a3c5eda957f0a48c4c18a825abb96183e2cfe/hovercard" href="https://github.com/navidrome/navidrome/commit/2f7a3c5eda957f0a48c4c18a825abb96183e2cfe"><tt>2f7a3c5</tt></a> feat: Add listenbrainz base url configuration (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1269892402" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1774" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1774/hovercard" href="https://github.com/navidrome/navidrome/pull/1774">#1774</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cb3ba23fce5c37887d1e8952452292afe90b466b/hovercard" href="https://github.com/navidrome/navidrome/commit/cb3ba23fce5c37887d1e8952452292afe90b466b"><tt>cb3ba23</tt></a> New config DefaultLanguage. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1092884775" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1561" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1561/hovercard" href="https://github.com/navidrome/navidrome/issues/1561">#1561</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/72cde6dfde440dce4c66e19c108864a1df1ebca5/hovercard" href="https://github.com/navidrome/navidrome/commit/72cde6dfde440dce4c66e19c108864a1df1ebca5"><tt>72cde6d</tt></a> fix:(middlewares.go) - Set Cookie SameSite mode to Strict - 1776 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1275326720" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1777" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1777/hovercard" href="https://github.com/navidrome/navidrome/pull/1777">#1777</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/751e42c705c29e1d2fcdc0708961a090fc5dfa78/hovercard" href="https://github.com/navidrome/navidrome/commit/751e42c705c29e1d2fcdc0708961a090fc5dfa78"><tt>751e42c</tt></a> Fix creating server (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1388285254" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1894" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1894/hovercard" href="https://github.com/navidrome/navidrome/pull/1894">#1894</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ded9ab53e5cd504211a6ade1adeb5358d11a120b/hovercard" href="https://github.com/navidrome/navidrome/commit/ded9ab53e5cd504211a6ade1adeb5358d11a120b"><tt>ded9ab5</tt></a> Use armhf for ARM builds</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/416b5c7d136b1bcb6a9922f50ea79af60202613e/hovercard" href="https://github.com/navidrome/navidrome/commit/416b5c7d136b1bcb6a9922f50ea79af60202613e"><tt>416b5c7</tt></a> Fix Linux 32 bits build</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/afb31c3eae63c9234d36a5474c9975cd0692d004/hovercard" href="https://github.com/navidrome/navidrome/commit/afb31c3eae63c9234d36a5474c9975cd0692d004"><tt>afb31c3</tt></a> Fix invalid option in pipeline</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/dd57278ba2b382025ebcdcea521339d47bc39a56/hovercard" href="https://github.com/navidrome/navidrome/commit/dd57278ba2b382025ebcdcea521339d47bc39a56"><tt>dd57278</tt></a> Upgrade to GoLang 1.19 and bump golangci-lint version</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2a3cd08f201d30385f3e2b76b6b11d5f5e1d70b2/hovercard" href="https://github.com/navidrome/navidrome/commit/2a3cd08f201d30385f3e2b76b6b11d5f5e1d70b2"><tt>2a3cd08</tt></a> Fix GO-S2114 security issue</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a7a0e23956ea4b965bbe870258e05f9fa975f0df/hovercard" href="https://github.com/navidrome/navidrome/commit/a7a0e23956ea4b965bbe870258e05f9fa975f0df"><tt>a7a0e23</tt></a> Fix formatting</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4cf43ed73541447280ebe8dcd803a1d3233ee145/hovercard" href="https://github.com/navidrome/navidrome/commit/4cf43ed73541447280ebe8dcd803a1d3233ee145"><tt>4cf43ed</tt></a> Only compute version once</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ebad96b8a45684b41d0af5d857efe3e2b80b7102/hovercard" href="https://github.com/navidrome/navidrome/commit/ebad96b8a45684b41d0af5d857efe3e2b80b7102"><tt>ebad96b</tt></a> Fix warning about mixing value and pointer receivers</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e981ee27c015fc44b430ec9ae0c86d91bcdcc65f/hovercard" href="https://github.com/navidrome/navidrome/commit/e981ee27c015fc44b430ec9ae0c86d91bcdcc65f"><tt>e981ee2</tt></a> Add test for WithTx</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/965dbccd4848539032e43dd8858b1db52e749222/hovercard" href="https://github.com/navidrome/navidrome/commit/965dbccd4848539032e43dd8858b1db52e749222"><tt>965dbcc</tt></a> Upgrade to latest go-sqlite3 (it's v1.14, not v2!)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/695f82a1a0cc58db35fe3dcfb3e75770186246a1/hovercard" href="https://github.com/navidrome/navidrome/commit/695f82a1a0cc58db35fe3dcfb3e75770186246a1"><tt>695f82a</tt></a> Upgrade to Beego 2's orm</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/16afd3a4909364f0d99a7f531d83bc06d465fd9c/hovercard" href="https://github.com/navidrome/navidrome/commit/16afd3a4909364f0d99a7f531d83bc06d465fd9c"><tt>16afd3a</tt></a> Remove <code>//+build</code> tags, as the code does not compile on older versions of Go anymore</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/67f2a89d8908dc728fd345b2977cb21cb79aad5c/hovercard" href="https://github.com/navidrome/navidrome/commit/67f2a89d8908dc728fd345b2977cb21cb79aad5c"><tt>67f2a89</tt></a> Fix tracks never "loved" to be selected in Smart Playlists. Refer to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1029782710" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1417" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1417/hovercard?comment_id=1163423575&comment_type=issue_comment" href="https://github.com/navidrome/navidrome/issues/1417#issuecomment-1163423575">#1417 (comment)</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bf1f93ef1a8f6c8518f48c4e2cd6f8742eb89792/hovercard" href="https://github.com/navidrome/navidrome/commit/bf1f93ef1a8f6c8518f48c4e2cd6f8742eb89792"><tt>bf1f93e</tt></a> Bump github.com/go-chi/httprate from 0.5.2 to 0.6.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1318703767" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1828" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1828/hovercard" href="https://github.com/navidrome/navidrome/pull/1828">#1828</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ebf7354df4acab269c21d29cf6255373adb8ec52/hovercard" href="https://github.com/navidrome/navidrome/commit/ebf7354df4acab269c21d29cf6255373adb8ec52"><tt>ebf7354</tt></a> Add more info in search log message</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/c0066ebd85e0a164035942c9be800c540298a5d7/hovercard" href="https://github.com/navidrome/navidrome/commit/c0066ebd85e0a164035942c9be800c540298a5d7"><tt>c0066eb</tt></a> Add log warn when request is cancelled/interrupted</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cd5bce7b1627ea9e045a7a6cfb267a94e7382043/hovercard" href="https://github.com/navidrome/navidrome/commit/cd5bce7b1627ea9e045a7a6cfb267a94e7382043"><tt>cd5bce7</tt></a> Speed up <code>/search</code> subsonic endpoints by parallelizing the queries</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d613b1930688422122796b43acb3caf2538c8fd1/hovercard" href="https://github.com/navidrome/navidrome/commit/d613b1930688422122796b43acb3caf2538c8fd1"><tt>d613b19</tt></a> Simplify Singleton usage by leveraging Go 1.18's generics</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a2d9aaeff8774115cd1d911c23a74e319d72ce62/hovercard" href="https://github.com/navidrome/navidrome/commit/a2d9aaeff8774115cd1d911c23a74e319d72ce62"><tt>a2d9aae</tt></a> Fix Quality translation in Spanish</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/49392e06a756875b90b2147460fbf4c4a5e29819/hovercard" href="https://github.com/navidrome/navidrome/commit/49392e06a756875b90b2147460fbf4c4a5e29819"><tt>49392e0</tt></a> Update caniuse-lite</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/181cb8a2b706f60e28d521775ab8bb021d99e55b/hovercard" href="https://github.com/navidrome/navidrome/commit/181cb8a2b706f60e28d521775ab8bb021d99e55b"><tt>181cb8a</tt></a> Remove <code>interfacer</code> linter, as it does not work with Go 1.18 and will not be updated (it is deprecated)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/31882abf6fb5015c1145690191fb8f0ae9780cbe/hovercard" href="https://github.com/navidrome/navidrome/commit/31882abf6fb5015c1145690191fb8f0ae9780cbe"><tt>31882ab</tt></a> Upgrade Ginkgo to V2</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0d8eaa28785a6e229bdc74d71526af19d182d59b/hovercard" href="https://github.com/navidrome/navidrome/commit/0d8eaa28785a6e229bdc74d71526af19d182d59b"><tt>0d8eaa2</tt></a> Remove experimental version of <code>context</code> package</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f4bffb1676044d9273daabd0cb82fb4395b5cd37/hovercard" href="https://github.com/navidrome/navidrome/commit/f4bffb1676044d9273daabd0cb82fb4395b5cd37"><tt>f4bffb1</tt></a> Update <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/djherbis/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/djherbis">@djherbis</a>'s packages</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/f21847308c62af21e9508503e01cf6c8c2c0f04e/hovercard" href="https://github.com/navidrome/navidrome/commit/f21847308c62af21e9508503e01cf6c8c2c0f04e"><tt>f218473</tt></a> Remove hardcoded github.com/dhowden/tag branch. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1268308618" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1764" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1764/hovercard" href="https://github.com/navidrome/navidrome/issues/1764">#1764</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9c3b14c5c43f7b28e89f52b395f87e715bd93026/hovercard" href="https://github.com/navidrome/navidrome/commit/9c3b14c5c43f7b28e89f52b395f87e715bd93026"><tt>9c3b14c</tt></a> Return 501 for "not implemented". Fixes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1284054445" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1785" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1785/hovercard" href="https://github.com/navidrome/navidrome/issues/1785">#1785</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8cd405d15e60041e6b8508ae9ca4411d00998284/hovercard" href="https://github.com/navidrome/navidrome/commit/8cd405d15e60041e6b8508ae9ca4411d00998284"><tt>8cd405d</tt></a> Add IP to Subsonic API's invalid login log messages. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1309942293" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1814" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1814/hovercard" href="https://github.com/navidrome/navidrome/issues/1814">#1814</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/35bec14d4d55f751def63ce93d2a67eed5b435aa/hovercard" href="https://github.com/navidrome/navidrome/commit/35bec14d4d55f751def63ce93d2a67eed5b435aa"><tt>35bec14</tt></a> Add missing test case for <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1276107902" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1778" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1778/hovercard" href="https://github.com/navidrome/navidrome/issues/1778">#1778</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/321b3c5a6441a389bfa268bb0202fe392a0fbc57/hovercard" href="https://github.com/navidrome/navidrome/commit/321b3c5a6441a389bfa268bb0202fe392a0fbc57"><tt>321b3c5</tt></a> Fix fscache key mapping. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1276107902" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1778" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1778/hovercard" href="https://github.com/navidrome/navidrome/issues/1778">#1778</a></li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b7e50f7731d27ec59b2ae02bb24a5cfaf87b30bb/hovercard" href="https://github.com/navidrome/navidrome/commit/b7e50f7731d27ec59b2ae02bb24a5cfaf87b30bb"><tt>b7e50f7</tt></a> Fix docker build in pipeline</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2e9c81c3decc4c4c37eb07fea935f02d6ba64379/hovercard" href="https://github.com/navidrome/navidrome/commit/2e9c81c3decc4c4c37eb07fea935f02d6ba64379"><tt>2e9c81c</tt></a> Bump github.com/mileusna/useragent from 1.0.2 to 1.1.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1316038768" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1819" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1819/hovercard" href="https://github.com/navidrome/navidrome/pull/1819">#1819</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/49647423aa8ec8ecee542d366491d42a128e9d71/hovercard" href="https://github.com/navidrome/navidrome/commit/49647423aa8ec8ecee542d366491d42a128e9d71"><tt>4964742</tt></a> Bump github.com/sirupsen/logrus from 1.8.1 to 1.9.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1316079123" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1821" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1821/hovercard" href="https://github.com/navidrome/navidrome/pull/1821">#1821</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9f62533bb0b335e8eddb7396fd1eec2784edd998/hovercard" href="https://github.com/navidrome/navidrome/commit/9f62533bb0b335e8eddb7396fd1eec2784edd998"><tt>9f62533</tt></a> Bump github.com/go-chi/cors from 1.2.0 to 1.2.1 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1316079226" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1822" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1822/hovercard" href="https://github.com/navidrome/navidrome/pull/1822">#1822</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7d58f4469ac3b7382a34217c3cc06c3e92f290c1/hovercard" href="https://github.com/navidrome/navidrome/commit/7d58f4469ac3b7382a34217c3cc06c3e92f290c1"><tt>7d58f44</tt></a> Bump github.com/lestrrat-go/jwx from 1.2.17 to 1.2.25 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1245469508" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1742" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1742/hovercard" href="https://github.com/navidrome/navidrome/pull/1742">#1742</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/974816f0a28668557c5d5b3b946e7afada3af644/hovercard" href="https://github.com/navidrome/navidrome/commit/974816f0a28668557c5d5b3b946e7afada3af644"><tt>974816f</tt></a> Bump github.com/onsi/gomega from 1.18.1 to 1.20.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1316023258" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1817" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1817/hovercard" href="https://github.com/navidrome/navidrome/pull/1817">#1817</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/7665478a526f4b6e1ca70d359dffb68a8eed6272/hovercard" href="https://github.com/navidrome/navidrome/commit/7665478a526f4b6e1ca70d359dffb68a8eed6272"><tt>7665478</tt></a> Upgrade golangci-lint and fix new lint error</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bde5be347bba66b0288224489977282c4f648e32/hovercard" href="https://github.com/navidrome/navidrome/commit/bde5be347bba66b0288224489977282c4f648e32"><tt>bde5be3</tt></a> Build with GoLang 1.18.4</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/aae79b4561db3f0f9068fb183c1b74bba5ae178c/hovercard" href="https://github.com/navidrome/navidrome/commit/aae79b4561db3f0f9068fb183c1b74bba5ae178c"><tt>aae79b4</tt></a> Upgrade to GoLang 1.18</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ce0db8344b1d12ae7b5680fa95bdbdb88612fa9e/hovercard" href="https://github.com/navidrome/navidrome/commit/ce0db8344b1d12ae7b5680fa95bdbdb88612fa9e"><tt>ce0db83</tt></a> Fix signaler not exiting on cancel (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1156532581" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1638" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1638/hovercard" href="https://github.com/navidrome/navidrome/pull/1638">#1638</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5987cd0c08d7fbde236e796dc52f8e5654086d7f/hovercard" href="https://github.com/navidrome/navidrome/commit/5987cd0c08d7fbde236e796dc52f8e5654086d7f"><tt>5987cd0</tt></a> Fixes a coloring glitch with the Monokai theme "unauthorized" popup (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1182251970" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1670" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1670/hovercard" href="https://github.com/navidrome/navidrome/pull/1670">#1670</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e7cf74d863569911ee99c7835b5f86e736a6514c/hovercard" href="https://github.com/navidrome/navidrome/commit/e7cf74d863569911ee99c7835b5f86e736a6514c"><tt>e7cf74d</tt></a> Adds a Monokai theme (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1181979845" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1669" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1669/hovercard" href="https://github.com/navidrome/navidrome/pull/1669">#1669</a>)</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2ddd3acba6cde5fae11e6684a8aa01a070fda23d/hovercard" href="https://github.com/navidrome/navidrome/commit/2ddd3acba6cde5fae11e6684a8aa01a070fda23d"><tt>2ddd3ac</tt></a> Fix translatable label</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/028723f7212f27bf6e64074997a51befa3742c67/hovercard" href="https://github.com/navidrome/navidrome/commit/028723f7212f27bf6e64074997a51befa3742c67"><tt>028723f</tt></a> Fix loading overridden translations from ${DataFolder}/resources/i18n</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/50ff8bcce78055d90be7cd1c027e0cf55a7f609e/hovercard" href="https://github.com/navidrome/navidrome/commit/50ff8bcce78055d90be7cd1c027e0cf55a7f609e"><tt>50ff8bc</tt></a> Add "random" sort option for Smart Playlists</li>
+<li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e966d94c0be0dcc9f4534e564345a3a1aaa51b51/hovercard" href="https://github.com/navidrome/navidrome/commit/e966d94c0be0dcc9f4534e564345a3a1aaa51b51"><tt>e966d94</tt></a> Force correct mime-type for JS and CSS files</li>
+</ul>
+
+ github-actions[bot]
+
+
+
+
+ tag:github.com,2008:Repository/52481933/v0.47.5
+ 2022-01-22T15:44:26+01:00
+
+ v0.47.5
+ <p>This bug-fix release includes a fix to a potential SQL injection and a couple of other niceties and fixes.</p>
+<p>There are a few nice contributions that needs more testing, and I plan to validate and release them in<br>
+the next month or so. Stay tuned!</p>
+<h2>Highlights</h2>
+<ul>
+<li>[UI] Set volume to 100% when web player is in mobile mode. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1035325480" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1429" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1429/hovercard" href="https://github.com/navidrome/navidrome/issues/1429">#1429</a></li>
+<li>[UI] New translations: Bulgarian (thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/MrEddX/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/MrEddX">@MrEddX</a>) and Catalan (thanks Sàdur)</li>
+<li>[UI] Fix ActivityPanel should behave better now, with (hopefully) no more UI freezing</li>
+<li>[UI] Handle invalid theme in ui state (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1071723449" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1504" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1504/hovercard" href="https://github.com/navidrome/navidrome/pull/1504">#1504</a>) (thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/srichter/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/srichter">@srichter</a>)</li>
+<li>[Server] Fix potential SQL injection in Smart Playlists (thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/DePierre/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/DePierre">@DePierre</a>)</li>
+<li>[Server] Fix issue in smart playlists with values compared to <code>0</code> (See: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1029782710" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1417" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1417/hovercard?comment_id=974052454&comment_type=issue_comment" href="https://github.com/navidrome/navidrome/issues/1417#issuecomment-974052454">#1417 (comment)</a>)</li>
+<li>[Server] Add <code>name</code> and <code>comment</code> fields to .NSP files</li>
+<li>[Server] Allowing 3rd party UIs to access <code>x-total-count</code> http header (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1057489554" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1470" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1470/hovercard" href="https://github.com/navidrome/navidrome/pull/1470">#1470</a>) (thanks <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/bricej13/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/bricej13">@bricej13</a>)</li>
+<li>[Subsonic] Add <code>userRating</code> to Subsonic Album/Artist responses. Fix <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1061083077" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1486" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1486/hovercard" href="https://github.com/navidrome/navidrome/issues/1486">#1486</a></li>
+</ul>
+<h2>Changelog</h2>
+<p><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/86fe1e3b2c417891e79ad799a54cb0af9b35d295/hovercard" href="https://github.com/navidrome/navidrome/commit/86fe1e3b2c417891e79ad799a54cb0af9b35d295"><tt>86fe1e3</tt></a> Bump github.com/ReneKroon/ttlcache/v2 from 2.9.0 to 2.11.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1085026345" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1529" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1529/hovercard" href="https://github.com/navidrome/navidrome/pull/1529">#1529</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/eed54d7e10e5c56138a610bf3fa2b8ec5be2e9ae/hovercard" href="https://github.com/navidrome/navidrome/commit/eed54d7e10e5c56138a610bf3fa2b8ec5be2e9ae"><tt>eed54d7</tt></a> Bump github.com/lestrrat-go/jwx from 1.2.11 to 1.2.17 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1106087847" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1574" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1574/hovercard" href="https://github.com/navidrome/navidrome/pull/1574">#1574</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ab36344d7635ae76a8b42682bb5168d50222bb74/hovercard" href="https://github.com/navidrome/navidrome/commit/ab36344d7635ae76a8b42682bb5168d50222bb74"><tt>ab36344</tt></a> Bump github.com/microcosm-cc/bluemonday from 1.0.16 to 1.0.17 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1092680814" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1560" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1560/hovercard" href="https://github.com/navidrome/navidrome/pull/1560">#1560</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e5d03a3bdba2045c8663d88211a8fcfaba9a6aa1/hovercard" href="https://github.com/navidrome/navidrome/commit/e5d03a3bdba2045c8663d88211a8fcfaba9a6aa1"><tt>e5d03a3</tt></a> Bump github.com/Masterminds/squirrel from 1.5.1 to 1.5.2 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1066300768" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1501" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1501/hovercard" href="https://github.com/navidrome/navidrome/pull/1501">#1501</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/30813cd34ba7560c889a2b84f0711d303177e547/hovercard" href="https://github.com/navidrome/navidrome/commit/30813cd34ba7560c889a2b84f0711d303177e547"><tt>30813cd</tt></a> Update translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1111110853" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1578" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1578/hovercard" href="https://github.com/navidrome/navidrome/pull/1578">#1578</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6164f37c9ea2858ee8f3941babae75e3c53ad1f6/hovercard" href="https://github.com/navidrome/navidrome/commit/6164f37c9ea2858ee8f3941babae75e3c53ad1f6"><tt>6164f37</tt></a> Added Bulgarian Translation (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1110969858" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1577" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1577/hovercard" href="https://github.com/navidrome/navidrome/pull/1577">#1577</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9e79b5cbf2a48c1e4344df00fea4ed3844ea965d/hovercard" href="https://github.com/navidrome/navidrome/commit/9e79b5cbf2a48c1e4344df00fea4ed3844ea965d"><tt>9e79b5c</tt></a> Fix potential SQL injection in Smart Playlists<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/8c707b4e0ccfb5f05cea3c69a8ef51d0a63e15f1/hovercard" href="https://github.com/navidrome/navidrome/commit/8c707b4e0ccfb5f05cea3c69a8ef51d0a63e15f1"><tt>8c707b4</tt></a> Handle invalid theme in ui state (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1071723449" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1504" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1504/hovercard" href="https://github.com/navidrome/navidrome/pull/1504">#1504</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/910091f1f1730fe040a09747440de0c8dc432dd9/hovercard" href="https://github.com/navidrome/navidrome/commit/910091f1f1730fe040a09747440de0c8dc432dd9"><tt>910091f</tt></a> Fix <code>playCount</code> casing<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/2e1b985d30d38165a88207326f173fe89612efee/hovercard" href="https://github.com/navidrome/navidrome/commit/2e1b985d30d38165a88207326f173fe89612efee"><tt>2e1b985</tt></a> Revert "Direct link to dev build"<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/100b80528e3f3ed4203ce7a9a092fe451a88c992/hovercard" href="https://github.com/navidrome/navidrome/commit/100b80528e3f3ed4203ce7a9a092fe451a88c992"><tt>100b805</tt></a> Update README.md<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/bde9d5f954af6fa33bf271083fd8e0d34709e44c/hovercard" href="https://github.com/navidrome/navidrome/commit/bde9d5f954af6fa33bf271083fd8e0d34709e44c"><tt>bde9d5f</tt></a> Fix <code>TypeError: Cannot read property 'id' of undefined</code><br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/69615f1aa1a9e96fe4175f52e7fc0d2e860cf1f1/hovercard" href="https://github.com/navidrome/navidrome/commit/69615f1aa1a9e96fe4175f52e7fc0d2e860cf1f1"><tt>69615f1</tt></a> Trying to fix multiple EventStream connections, one more time<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a99b9b4d44f0e304d9ebd7f7ff4c5546276c7efc/hovercard" href="https://github.com/navidrome/navidrome/commit/a99b9b4d44f0e304d9ebd7f7ff4c5546276c7efc"><tt>a99b9b4</tt></a> Direct link to dev build<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9892524ab89ac944015f8f13dd9a4249c60ad172/hovercard" href="https://github.com/navidrome/navidrome/commit/9892524ab89ac944015f8f13dd9a4249c60ad172"><tt>9892524</tt></a> Connect eventStream after login<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/9fe978953c07390a340fc8d2db202ec957808515/hovercard" href="https://github.com/navidrome/navidrome/commit/9fe978953c07390a340fc8d2db202ec957808515"><tt>9fe9789</tt></a> Try to avoid creating multiple eventStreams<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/5425c1a4d7741de03f9b2ecb854d96825c92fa49/hovercard" href="https://github.com/navidrome/navidrome/commit/5425c1a4d7741de03f9b2ecb854d96825c92fa49"><tt>5425c1a</tt></a> Update translations (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1064714965" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1489" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1489/hovercard" href="https://github.com/navidrome/navidrome/pull/1489">#1489</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/afe1e4cfcd56e7bc1d5442b53f9e32b9e7322d9e/hovercard" href="https://github.com/navidrome/navidrome/commit/afe1e4cfcd56e7bc1d5442b53f9e32b9e7322d9e"><tt>afe1e4c</tt></a> Fix lint for public credentials<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/20cdd38fc4dd9a87172758a6aa090c8d3f501c3f/hovercard" href="https://github.com/navidrome/navidrome/commit/20cdd38fc4dd9a87172758a6aa090c8d3f501c3f"><tt>20cdd38</tt></a> Better logging for agents configuration<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/913a4cf546db6929b3b6f66a4b0bbcd8d50d0e83/hovercard" href="https://github.com/navidrome/navidrome/commit/913a4cf546db6929b3b6f66a4b0bbcd8d50d0e83"><tt>913a4cf</tt></a> Bump github.com/onsi/gomega from 1.16.0 to 1.17.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1047711391" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1459" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1459/hovercard" href="https://github.com/navidrome/navidrome/pull/1459">#1459</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/121ada5acd25b8c821e1dfd9356dd71978e2d102/hovercard" href="https://github.com/navidrome/navidrome/commit/121ada5acd25b8c821e1dfd9356dd71978e2d102"><tt>121ada5</tt></a> Bump @testing-library/jest-dom from 5.14.1 to 5.15.0 in /ui (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1047693610" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1456" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1456/hovercard" href="https://github.com/navidrome/navidrome/pull/1456">#1456</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/e59a95c9eb6a3a8f83bd55d08f63bcbfc7887357/hovercard" href="https://github.com/navidrome/navidrome/commit/e59a95c9eb6a3a8f83bd55d08f63bcbfc7887357"><tt>e59a95c</tt></a> Bump github.com/golangci/golangci-lint from 1.42.1 to 1.43.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1047713260" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1460" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1460/hovercard" href="https://github.com/navidrome/navidrome/pull/1460">#1460</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/d75f286ae86ae08040ffe36b9280617b3c975d04/hovercard" href="https://github.com/navidrome/navidrome/commit/d75f286ae86ae08040ffe36b9280617b3c975d04"><tt>d75f286</tt></a> Update zh-Hans.json (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1059266170" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1478" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1478/hovercard" href="https://github.com/navidrome/navidrome/pull/1478">#1478</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/30d3f1eda0f53c493885045ad6efa6e277ce5471/hovercard" href="https://github.com/navidrome/navidrome/commit/30d3f1eda0f53c493885045ad6efa6e277ce5471"><tt>30d3f1e</tt></a> Add userRating to Subsonic Album/Artist responses. Closes <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1061083077" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1486" data-hovercard-type="issue" data-hovercard-url="/navidrome/navidrome/issues/1486/hovercard" href="https://github.com/navidrome/navidrome/issues/1486">#1486</a><br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6a1f9678b19c3290c5f09c91b4acc20a027ac5c4/hovercard" href="https://github.com/navidrome/navidrome/commit/6a1f9678b19c3290c5f09c91b4acc20a027ac5c4"><tt>6a1f967</tt></a> Bump github.com/ReneKroon/ttlcache/v2 from 2.8.1 to 2.9.0 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1029394446" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1414" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1414/hovercard" href="https://github.com/navidrome/navidrome/pull/1414">#1414</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/a0977ce48afcb5213d8f9fab2f2d3ad9b9914fae/hovercard" href="https://github.com/navidrome/navidrome/commit/a0977ce48afcb5213d8f9fab2f2d3ad9b9914fae"><tt>a0977ce</tt></a> Bump github.com/go-chi/chi/v5 from 5.0.4 to 5.0.7 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1060406542" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1484" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1484/hovercard" href="https://github.com/navidrome/navidrome/pull/1484">#1484</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/b3d803868650e5c9e2f0eaa38d748a25c3d53212/hovercard" href="https://github.com/navidrome/navidrome/commit/b3d803868650e5c9e2f0eaa38d748a25c3d53212"><tt>b3d8038</tt></a> Bump github.com/lestrrat-go/jwx from 1.2.7 to 1.2.11 (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1060407084" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1485" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1485/hovercard" href="https://github.com/navidrome/navidrome/pull/1485">#1485</a>)<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/0714f082746bc8add1c8b034b3496b72b6b3a0e8/hovercard" href="https://github.com/navidrome/navidrome/commit/0714f082746bc8add1c8b034b3496b72b6b3a0e8"><tt>0714f08</tt></a> Recover from SIGSEGVs in taglib's code<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/cbeaadf8e253994260d8ce54c157a6fb223f9535/hovercard" href="https://github.com/navidrome/navidrome/commit/cbeaadf8e253994260d8ce54c157a6fb223f9535"><tt>cbeaadf</tt></a> Fix logging smart playlist's song count<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/3e282df6391c9f271ca719bd505604b728b84e76/hovercard" href="https://github.com/navidrome/navidrome/commit/3e282df6391c9f271ca719bd505604b728b84e76"><tt>3e282df</tt></a> Set volume to 100% when web player is in mobile mode.<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/ce7940bbfce72f726717eac007394f2a04a46d4b/hovercard" href="https://github.com/navidrome/navidrome/commit/ce7940bbfce72f726717eac007394f2a04a46d4b"><tt>ce7940b</tt></a> Allow overriding <code>name</code> and <code>comment</code> when importing NSP playlists<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/92c31c961d6adda61509105fe5dfad3c84a11f51/hovercard" href="https://github.com/navidrome/navidrome/commit/92c31c961d6adda61509105fe5dfad3c84a11f51"><tt>92c31c9</tt></a> Fix values from annotation table cannot be compared to 0<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/4bf476544262033d6b844d973734d901f21ca72e/hovercard" href="https://github.com/navidrome/navidrome/commit/4bf476544262033d6b844d973734d901f21ca72e"><tt>4bf4765</tt></a> Bot that adds a download link on pull requests<br>
+<a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/navidrome/navidrome/commit/6d947f6f7e784edfcfa507374942a784c417b571/hovercard" href="https://github.com/navidrome/navidrome/commit/6d947f6f7e784edfcfa507374942a784c417b571"><tt>6d947f6</tt></a> Allowing 3rd party UIs to access <code>x-total-count</code> http header (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1057489554" data-permission-text="Title is private" data-url="https://github.com/navidrome/navidrome/issues/1470" data-hovercard-type="pull_request" data-hovercard-url="/navidrome/navidrome/pull/1470/hovercard" href="https://github.com/navidrome/navidrome/pull/1470">#1470</a>)</p>
+
+ github-actions[bot]
+
+
+
+
diff --git a/assets/navidrome-releases-header.png b/assets/navidrome-releases-header.png
new file mode 100644
index 0000000..f17bbed
Binary files /dev/null and b/assets/navidrome-releases-header.png differ
diff --git a/assets/navidrome-releases-header.xcf b/assets/navidrome-releases-header.xcf
new file mode 100644
index 0000000..765b17c
Binary files /dev/null and b/assets/navidrome-releases-header.xcf differ
diff --git a/assets/navidrome.png b/assets/navidrome.png
new file mode 100644
index 0000000..9055d79
Binary files /dev/null and b/assets/navidrome.png differ
diff --git a/assets/navidrome.svg b/assets/navidrome.svg
new file mode 100644
index 0000000..1ec9541
--- /dev/null
+++ b/assets/navidrome.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
new file mode 100644
index 0000000..1c81cda
--- /dev/null
+++ b/gradle/libs.versions.toml
@@ -0,0 +1,13 @@
+# This file was generated by the Gradle 'init' task.
+# https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format
+
+[versions]
+guava = "32.1.2-jre"
+junit-jupiter-engine = "5.10.0"
+
+[libraries]
+guava = { module = "com.google.guava:guava", version.ref = "guava" }
+junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit-jupiter-engine" }
+
+[plugins]
+jvm = { id = "org.jetbrains.kotlin.jvm", version = "1.9.20" }
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..d64cd49
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..1af9e09
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,7 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
+networkTimeout=10000
+validateDistributionUrl=true
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/gradlew b/gradlew
new file mode 100755
index 0000000..1aa94a4
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,249 @@
+#!/bin/sh
+
+#
+# Copyright © 2015-2021 the original authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+#
+# Gradle start up script for POSIX generated by Gradle.
+#
+# Important for running:
+#
+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+# noncompliant, but you have some other compliant shell such as ksh or
+# bash, then to run this script, type that shell name before the whole
+# command line, like:
+#
+# ksh Gradle
+#
+# Busybox and similar reduced shells will NOT work, because this script
+# requires all of these POSIX shell features:
+# * functions;
+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+# * compound commands having a testable exit status, especially «case»;
+# * various built-in commands including «command», «set», and «ulimit».
+#
+# Important for patching:
+#
+# (2) This script targets any POSIX shell, so it avoids extensions provided
+# by Bash, Ksh, etc; in particular arrays are avoided.
+#
+# The "traditional" practice of packing multiple parameters into a
+# space-separated string is a well documented source of bugs and security
+# problems, so this is (mostly) avoided, by progressively accumulating
+# options in "$@", and eventually passing that to Java.
+#
+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+# see the in-line comments for details.
+#
+# There are tweaks for specific operating systems such as AIX, CygWin,
+# Darwin, MinGW, and NonStop.
+#
+# (3) This script is generated from the Groovy template
+# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# within the Gradle project.
+#
+# You can find Gradle at https://github.com/gradle/gradle/.
+#
+##############################################################################
+
+# Attempt to set APP_HOME
+
+# Resolve links: $0 may be a link
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
+ [ -h "$app_path" ]
+do
+ ls=$( ls -ld "$app_path" )
+ link=${ls#*' -> '}
+ case $link in #(
+ /*) app_path=$link ;; #(
+ *) app_path=$APP_HOME$link ;;
+ esac
+done
+
+# This is normally unused
+# shellcheck disable=SC2034
+APP_BASE_NAME=${0##*/}
+# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
+APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD=maximum
+
+warn () {
+ echo "$*"
+} >&2
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+} >&2
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "$( uname )" in #(
+ CYGWIN* ) cygwin=true ;; #(
+ Darwin* ) darwin=true ;; #(
+ MSYS* | MINGW* ) msys=true ;; #(
+ NONSTOP* ) nonstop=true ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD=$JAVA_HOME/jre/sh/java
+ else
+ JAVACMD=$JAVA_HOME/bin/java
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD=java
+ if ! command -v java >/dev/null 2>&1
+ then
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+fi
+
+# Increase the maximum file descriptors if we can.
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+ case $MAX_FD in #(
+ max*)
+ # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
+ MAX_FD=$( ulimit -H -n ) ||
+ warn "Could not query maximum file descriptor limit"
+ esac
+ case $MAX_FD in #(
+ '' | soft) :;; #(
+ *)
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC2039,SC3045
+ ulimit -n "$MAX_FD" ||
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
+ esac
+fi
+
+# Collect all arguments for the java command, stacking in reverse order:
+# * args from the command line
+# * the main class name
+# * -classpath
+# * -D...appname settings
+# * --module-path (only if needed)
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if "$cygwin" || "$msys" ; then
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
+
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
+
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ for arg do
+ if
+ case $arg in #(
+ -*) false ;; # don't mess with options #(
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
+ [ -e "$t" ] ;; #(
+ *) false ;;
+ esac
+ then
+ arg=$( cygpath --path --ignore --mixed "$arg" )
+ fi
+ # Roll the args list around exactly as many times as the number of
+ # args, so each arg winds up back in the position where it started, but
+ # possibly modified.
+ #
+ # NB: a `for` loop captures its iteration list before it begins, so
+ # changing the positional parameters here affects neither the number of
+ # iterations, nor the values presented in `arg`.
+ shift # remove old arg
+ set -- "$@" "$arg" # push replacement arg
+ done
+fi
+
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Collect all arguments for the java command:
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
+# and any embedded shellness will be escaped.
+# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
+# treated as '${Hostname}' itself on the command line.
+
+set -- \
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
+ -classpath "$CLASSPATH" \
+ org.gradle.wrapper.GradleWrapperMain \
+ "$@"
+
+# Stop when "xargs" is not available.
+if ! command -v xargs >/dev/null 2>&1
+then
+ die "xargs is not available"
+fi
+
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+# set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
+
+eval "set -- $(
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+ xargs -n1 |
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+ tr '\n' ' '
+ )" '"$@"'
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..93e3f59
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,92 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%"=="" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%"=="" set DIRNAME=.
+@rem This is normally unused
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if %ERRORLEVEL% equ 0 goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if %ERRORLEVEL% equ 0 goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+set EXIT_CODE=%ERRORLEVEL%
+if %EXIT_CODE% equ 0 set EXIT_CODE=1
+if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
+exit /b %EXIT_CODE%
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/settings.gradle.kts b/settings.gradle.kts
new file mode 100644
index 0000000..571bc3b
--- /dev/null
+++ b/settings.gradle.kts
@@ -0,0 +1,14 @@
+/*
+ * This file was generated by the Gradle 'init' task.
+ *
+ * The settings file is used to specify which projects to include in your build.
+ * For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.5/userguide/building_swift_projects.html in the Gradle documentation.
+ */
+
+plugins {
+ // Apply the foojay-resolver plugin to allow automatic download of JDKs
+ id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
+}
+
+rootProject.name = "github-release-bot"
+include("app")