Skip to content

Commit

Permalink
Merge branch 'develop' for release v3.53.1
Browse files Browse the repository at this point in the history
  • Loading branch information
epoupon committed May 6, 2024
2 parents 860efa8 + 28b91b7 commit a7f4672
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -8,14 +8,15 @@ A [demo instance](http://lms-demo.poupon.dev) is available. Note the administrat

## Main features
* Recommendation engine
* Audio transcoding for maximum interoperability and reduced bandwith requirements
* Multi-valued tags: `genre`, `mood`, `artists`, ...
* Artist relationships: `composer`, `conductor`, `lyricist`, `mixer`, `performer`, `producer`, `remixer`
* [Release types](https://musicbrainz.org/doc/Release_Group/Type): `album`, `single`, `EP`, `compilation`, `live`, ...
* [MusicBrainz Identifier](https://musicbrainz.org/doc/MusicBrainz_Identifier) support to handle duplicated artist and release names
* [ListenBrainz](https://listenbrainz.org) support for:
* Scrobbling and synchronizing listens
* Synchronizing 'love' feedbacks
* Audio transcoding for maximum interoperability and reduced bandwith requirements
* Multi-library support
* ReplayGain support
* User management, with several [authentication backends](INSTALL.md#authentication-backend)
* [Subsonic/OpenSubsonic API](SUBSONIC.md) support
Expand Down
4 changes: 2 additions & 2 deletions src/libs/database/impl/Migration.cpp
Expand Up @@ -462,8 +462,8 @@ SELECT

void migrateFromV57(Session& session)
{
// useless index
session.getDboSession()->execute("DROP INDEX cluster_name_idx");
// useless index, may have been already removed in the previous step
session.getDboSession()->execute("DROP INDEX IF EXISTS cluster_name_idx");
}

void migrateFromV58(Session& session)
Expand Down

0 comments on commit a7f4672

Please sign in to comment.