# CHANGELOG ## Ampache 7.10.1 ### Fixed (7.10.1) * Podcast feed urls beginning `https://` were silently discarded, so editing a podcast's feed appeared to do nothing and a podcast created from an https feed was stored with an empty one. The check meant to keep http and https urls was inverted, and also let through schemes like `ftp://` that it was there to refuse * Deleting a Playlist or Smartlist left its `user_playlist_map` rows behind, so a later list given the freed id inherited the collaborators * User deletion and garbage collection stepped over `user_playlist_map` because it names its column `user_id` * Update sources * Updating from the web interface reported success when it had not worked; `composer install`, `npm install` and `npm run build` discarded their exit status and kept only the last line of output, then redirected away. The status is checked, the output is logged and shown, and a failure keeps you on the update page * `npm` failed outright when the web server user's home directory was not writable, because it could not create its cache directory; it is pointed at a writable one * `npm install` installs the dev packages explicitly, so a server with `NODE_ENV=production` no longer builds nothing * The update is refused before the sources are pulled when `exec()` is disabled or the checkout, `node_modules` or `vendor` cannot be written * A package that rewrites one of its own tracked files during install (`phpstan/extension-installer` and its `src/GeneratedConfig.php`) left that checkout dirty, and composer refuses to remove a modified source install, so a `composer_no_dev` update aborted while stripping the dev packages and left `vendor` incomplete. Dirty vendor checkouts are restored before the install runs * Upload * An artist created while uploading was never mapped to the upload catalog, so it was missing from an artist browse filtered to that catalog until the next catalog update; the artists of an uploaded song are now mapped as the song is added * Rating or favouriting a playlist, search or live stream logged an SQL error on every click, because only the media tables carry the `weight` column those writes adjust * Aggregated counts fetched from the database are php ints, not strings, so returning one from a `string` typed method raised a `TypeError` * The Wrapped page (`show_wrapped`) failed on `Stats::get_object_data()`, so the songs played and minutes played figures were blank * `scrobble` failed on `Song::can_scrobble()` whenever it did match a song, so a scrobble from a client that sends names rather than an id was never recorded * A browse `cond` string whose condition had no comma (`cond=hidden` rather than `cond=hidden,1`) raised an `Undefined array key 1` runtime error on every request; a valueless condition now applies the filter with no argument, exactly as the trailing-comma form already did ## Ampache 7.10.0 This release replaces the old captcha implementation (including OCR/image testing behavior) with the new `gregwar/captcha` library. See: [Gregwar/Captcha](https://github.com/Gregwar/Captcha) ### Added (7.10.0) * Database * Allow downgrade path from Ampache8 * Search * Allow filtering by Catalog ID outside of search rules * Ampache Remote Catalogs * Added support for Ampache8 servers * Default remote API version set to API6 * API * Allow API key authorization via request headers * Backport strict typing in API classes ### Changed (7.10.0) * Backport `gregwar/captcha` from Ampache8 to replace legacy `easy_captcha` * Update Composer and NPM packages * Update Vite to address known security issues * Rename function `get_artist_fullname` to `get_parent_fullname` * Updated REST htaccess rules * Rework the media deletion process to speed up Catalog cleaning * Log playback attempts for disabled media * Ampache Remote Catalogs * Don't verify remote songs on every catalog update * Subsonic * Search3 rules and grouping behavior updated to better match Subsonic client expectations * API * REST command/path handling updates * Validation for `flag` now uses `UserFlag::is_valid()` * Validation for `rate` now uses `Rating::is_valid()` * update_art: Existing art is replaced unless you send `overwrite=0` * Parameters sent with an empty value (e.g. `filter=`) are treated as missing ### Removed (7.10.0) * Remove `easy_captcha` classes and files * Remove API8 from Ampache 7 codebase * Do not count map tables in `Catalog::update_counts()` calls * Delete `scrutinizer.yml` and other external integration remnants ### Fixed (7.10.0) * `AlbumDisk::check()` returned the album id instead of the new album_disk id, so new songs stored the wrong `song`.`album_disk` * `AlbumDisk::check()` read `disk` from a collision lookup that never selected it, so songs kept the old disk number when edited * `AlbumDisk::check()` matched `disksubtitle` in the collision lookup, which never matches a null and returned the wrong id * Beets catalog clean deleted the first song of the list even though the file still existed * Art export truncated art files that had already been exported * Album art export left an empty art file in the album folder when there was no image to write * Skips were not counted on media that had never been fully played * Debug page printed `secret_key`, api secrets and additional passwords in plain text * Last.fm error responses were treated as a success, causing a runtime error when reading artist or album info * Web player controls were clipped out of view and unclickable outside the embedded player * Browser notifications stopped the play handler outside the embedded player, skipping media session and ReplayGain * Share `Public URL` column was empty for shares that only allow streaming * Broadcasts could not play because broadcasts are not `Media` * Throw login exception on missing auth when authentication is required * Potential error during filesystem scan * Missing closing HTML tags in templates * Validate Podcast URL is HTTP(S) when set * SQL error in `Playlist::get_items()` when the playlist contains non-song objects * Set stream type and handle missing catalog when building stream URLs * Database * Database update `794004`: handle additional leftover bad data * CLI * Fix table-check column typo in `DatabaseCharsetUpdater` * Search * Fix joins where `catalog_id` was not set for some search paths * Upload * Check upload Artist against the upload user and create the Artist when missing * Ampache Remote Catalogs * Scan tags correctly on new file import * Fix playback for songs using stream action * Catch XML parsing/object resolution errors when Song cannot be found * Subsonic * Fix errors when `fromYear` and `toYear` are missing * Remove HTML encoding in `ArtistInfo` calls * HTML decode image URLs in OpenSubsonic responses * API * API6: Correct version bump handling * List responses were not sliced by `offset` and `limit` in some XML/JSON methods * Version and response inconsistencies between API versions * Backport API3-6 fixes from Ampache8 (REST path resolution, `user_preference`, `localplay` and version rollover) ## Ampache 7.9.8 I'm making a lot of mistakes this week! Sorry! ### Fixed (7.9.8) * Subsonic * Playlist item removal lookup ## Ampache 7.9.7 Change in a JS path would break the Web Player on new installs/docker ### Added (7.9.7) * NPM command `verify:install` * NPM error on copyfiles failure ### Fixed (7.9.7) * js-cookie NPM copy ## Ampache 7.9.6 Fixes to changes on the backend and a few issues found during code analysis ### Changed (7.9.6) * Update Composer and NPM dependencies * Add more rules to phpstan ### Fixed (7.9.6) * Parameter `latest_version` missing on debug page * Art `id` error when unset * Playlist collaborator checks not exploding ints properly * Subsonic * updatePlaylist ownership not being checked * StructuredLyrics value when missing `start` in XML ## Ampache 7.9.5 Cleanup has begun! This is a large backend change as we work towards supporting Ampache8 ### Added (7.9.5) * Subsonic * Split structured lyrics when you have a time in the line ### Changed (7.9.5) * Update Composer and NPM dependencies * Set some stricter PHP-CS-Fixer rules ### Fixed (7.9.5) * Sending the name instead of the ID for Album::check on Song insert * Search * Searches for `my_flagged_album` missing AlbumDisk joins when needed * Song Search not applying column `id` for `my_flagged_album`, `my_flagged_artist` * Artist Search not applying column `id` for `my_flagged_album`, `my_flagged_song` * Subsonic * Send artistInfo2 response correctly ## Ampache 7.9.4 Many new search enhancements, documentation updates and fixes. Media weight is calculated based on ratings, flags, play and skip counts. This allows you to order and search and sort by server popularity Work on cleaning up API6 has started as I look to begin Ampache 8 ### Added (7.9.4) * Translations 2026-05-20 * Database 794004 * Add popularity `weight` columns to media tables * Fix up Orphan Album Disk objects to be unique and update from tags * Don't people move/rename/delete upload folders when you don't own all the content * Missing typing on Search class * Documentation updates for searches * CLI * Add more information to move and rename command output * Search * Add additional aliases to catch different rule names * Add `my_flagged_song`, `my_flagged_album` and `my_flagged_artist` to Album, Artist and Song searches * Add `weight_song`, `weight_album` and `weight_artist` to Album, Artist Podcast, Podcast_Episode and Song searches * Add all rating rules to `podcast` and `podcast_episode` searches * Subsonic * Add `coverArt` for radio stations ### Changed (7.9.4) * Sort header bar searches by popularity weights * Remove path printing from FileSystem output * Fail if `upload_subdir` is enabled but can't create the folder * Assign `0775` permissions on mkdir calls (PHP default is `0777`) ### Fixed (7.9.4) * Catalog sync would not respect podcast download limits * Ajax FS not looking for current user early enough to validate * Could not create a folder when using default `.htaccess` (not enabled by default) * Missing collaboration in Playlist browses * Public `.htaccess` for creating folders in upload pages * PHP-CS-Fixer v4.0 deprecations * Orphaned uploads would never be able to change from an orphan album object * Display of Orphaned albums when using User catalog filters * Tag updates for Orphaned albums would not change when updated from tags * Checks for Catalog 0 with Album and AlbumDisk check functions * CLI * cleanup:sortSongs was not stopping after using single folder * run:updateCatalogFile better file checks and error warnings * Search * Errors on `other_user` `unrated` searches * Joins on some searches not applied * Playlist `owner` search * Missing collaboration in Playlist search * Subsonic * Don't show HTML tags being for item lyrics ## Ampache 7.9.3 New CLI commands and bugfixing **Note** CLI move destinations must be a valid library catalog ### Added (7.9.3) * Translations 2026-05-01 * Database 793001 * Fix Licenses on uploaded Songs and delete bad data * CLI * run:updateCatalogFile: Add `-m|--move` parameter to move file in the database to a new location * run:updateCatalogFolder: Add `-m|--move` parameter to move all music in a folder to a new location ### Changed (7.9.3) * Updated supported versions in the security policy * Update Composer packages * Plugins * Loosen up song data checks in the LyrLib lyrics plugin ### Fixed (7.9.3) * Catch any Garbage Collection error for Albums * Garbage collection for Albums missing from the album table * License checks on upload not considering int ID's * Star ratings scale * Advanced Random actions missing joins for Artist and Album * Don't limit Album track display by page size * Search * Extended `orphan_album` check in Song search * Subsonic * Correct `structuredLyrics` array ## Ampache 7.9.2 Bug with Podcast Episode downloads demands another release ### Changed (7.9.2) * Update NPM packages ### Fixed (7.9.2) * Podcast Episode downloader would not get new files ## Ampache 7.9.1 Ampache REST conversion is making more progress but isn't quite ready. Docs at [ampache.org/rest](https://ampache.org/rest). An OpenApi spec document is being developed at [ampache.org/rest/swagger](https://ampache.org/rest/swagger). ### Added (7.9.1) * Translations 2026-02-20 * Config version 87 * Add `cli_no_color` to disable colors for cli output * Add `user_create_apikey` to add an API Key to the account when a new user is created * CLI * admin:updateUser: Reset user API key, Stream token, RSS token and access level * admin:listUsers: Add `-a|--apikey` parameter to print the user API key * Split REST API handling into separate applications to the regular API ### Changed (7.9.1) * CLI * admin:listUsers: Only print user from username or user id. If both are set use username * Subsonic * Return an error when all items in `scrobble` call are not found ### Fixed (7.9.1) * Custom CSS path folder * MPD status incorrectly stopping processes ## Ampache 7.9.0 Ampache and Subsonic catalogs will store the filename instead of the remote URL. URL paths are stil supported but they will be converted on the next catalog update. **Note** that this may cause duplicate file paths which can not be updated for existing files. ### Added (7.9.0) * Translations 2026-01-20 * Database 790001 * Update Dropbox catalog `authtoken` (if installed) * Build for PHP 8.5 * Add a warning to playlist sort commands because it saves a new order * Allow hiding upload artist and album selection rows with CSS (`upload_select_row`) * Custom CSS in `public/templates/custom.css` when the file exists * Add the remote id of songs to the `song_map` table * Extend `Dba::check_database_inserted()` tables a bit more * Support Update from tags actions for Remote Ampache and Subsonic catalogs * Support download actions on remote song objects * Added another cleanup check on zip downloads * Allow owner selection on Song and Artist objects * Add license tags to VaInfo output ### Changed (7.9.0) * CLI * install: Ignore user exist failure * install: Check database is a valid database before failing without overwrite * Plugin * Use a custom generated key for Libre.FM instead of the Last.FM key * Update copyright to 2026 * Update `/rest` htaccess rewrite rules for Ampache REST implemtation * Artist lookup for Song Artist will match with Album Artist ID if the text matches * `Artist::check()` will only pull one result when searching by name or name and mbid * Convert remote Ampache catalog filenames from URL to the local filename * Convert remote Subsonic catalog filenames from URL to the local filename * Update and Insert Song tags now use the same function and process to filter data * When inserting and updating tags, check Song artist after Album Artist to allow text fallback * Show album uploads on Song owner OR Artist owner * Don't delete empy artists when they are owned by a user * Don't overwrite upload objects with tag values when set * Subsonic * Extend playlists for OpenSubsonic [pull #204](https://github.com/opensubsonic/open-subsonic-api/pull/204/) ### Fixed (7.9.0) * Art raw column can be null * ISRC could be sent as a string from some places * Subsonic remote catalog missing data keys for Song updates * Genre for remote Ampache and Subsonic catalogs not being read correctly * Error missing tag values when updating remote files * Subsonic remote catalog missing `getAlbum` as a command * Call download actions on remote caching action * Emails without `fullname` * Updating Art was hidden when you were the owner of the object * Song tag insert and update issues * SQL error in `Artist::update_artist_count()` * Scrub output on Broadcast and Song_Preview pages * Language tags would not be set in some cases * Hinting for genre tags corrected * Missing album_group check when updating songs * Set default count values for Album, Album Disk and Artist * Check that a path is writeable before downloading a podcast episode * Subsonic * Objects missing `playCount` * OpenSubsonic playlist data inserted incorrectly * Add `created` where missing to workaround some Navidrome clients * Missing Podcast Episode from id conversion * Incorrect assumption of 0 being false after check parameter * Genres missing from xml for objects * Dropbox remote catalog * References to dead code * Catch and log download exceptions ## Ampache 7.8.0 Bitrate options in the database for transcoding are defined in units of 1000 (e.g. 128 == 128000) You should update your config file to make sure all `%BITRATE%` values have a k in them to denote 1000's (`%BITRATE%k`) These settings can not be updated automatically in the config file so make sure you check all `encode_args_` parameters (e.g. `encode_args_mp3`) I have been getting a few issues with composer 2.9.x versions [issue](https://github.com/composer/composer/issues/12681) If you are also having issues try downgrading to composer [2.8.12](https://getcomposer.org/download/2.8.12/composer.phar) first. ### Added (7.8.0) * Translations 2025-10-31 * Config version 85 * Add `rating_file_tag_compatibility` to allow using an alternative 5 star rating scale * Add `log_time_format` to set your own log date format [PHP Date](https://www.php.net/manual/en/function.date.php) * Database 780004 * Add `song_map` table for ISRC storage * Convert `custom_favicon`, `custom_login_background`, `custom_login_logo` into system preferences * Add preference `subsonic_force_album_artist` to only select Album Artists when making Subsonic Artist calls * Add preference `subsonic_single_user_data` to only show data (e.g. ratings, stars) for your user in Subsonic list calls * CLI * run:updateCatalogFile: Add rename (-r|--rename) parameter to rename single files * run:cacheProcess: Clean up files that do not match cache config settings * run:cacheProcess: Add option (-c|--cleanup) to skip cache process and just run a cleanup * cleanup:sortSongs: Add option (-p|--path) to sort a single file or folder path * Plugin * LrcLib.net plugin with custom server support * Search * Song, Artist, Album, AlbumDisk: `days_added` songs that were added before/after x days * Song: `days_updated` songs that were updated before/after x days * Podcast, Podcast Episode: `days_added` songs that were added before/after x days * Podcast, Podcast Episode: `days_updated` songs that were updated before/after x days * Podcast, Podcast Episode: `updated` date that episode files where last updated * Start parsing ISRC song tags and display them on Song pages * Add `nofollow` parameters to links * Show Last Update check time in the debug page ### Changed (7.8.0) * Add the full URL path for relative data in `custom_blankalbum`, `custom_favicon`, `custom_login_background`, `custom_login_logo` and `custom_logo` * Update docker files for Debian stable changes * Don't change the page title when `song_page_title` is enabled * Update translation guidelines for new CLI Transifex version * Update composer and npm packages * Update alternative streaming action (Play2Action) to try and stop closing transcode streams early * Subsonic * Filter list calls by your user instead of public/shared information by default (disable `subsonic_single_user_data` to restore old behavior) ### Fixed (7.8.0) * CLI * Some help commands didn't show arguments in the right order * Skip some unused tags that filter into additional metadata * SQL join for AlbumDisk `get_top_sql` calls * SQL for `get_recent_sql` joins with user * Don't error on song import / update when additional metadata calls fail * `custom_login_logo` overwritten by header logo * Tag writer sending non array values * Stop writing Song tags for ratings when reading the tags * Don't error when sending invalid Subsonic auth * Missing Art object type * Search not always setting `and`/`or` * Missing `attachment` Content-Disposition for playlist and CSV downloads * Don't reapply the rating to albums for Rating Match plugin * MusicBrainz plugin not setting valid `yearformed` for Artist objects * Error with a string `yearformed` value from plugins * Play actions were caching files that didn't need to be * AlbumDisk counts not updating correctly * Ampache Wrapped showing favorites for all users instead of just you * Artist counts for Album, AlbumDisk and Song would not update 0 values * Check zip file exists before deleting * Remove `mail_auth_pass` in Ampache debug page when set * Reduce spam to GitHub API when checking version with auto update * Play actions ignoring custom bitrate parameters * ViteManifest now expects an absolute URI for baseUri * Transcode cache checking source file instead of cache file * Saving smart playlist option and settings being overwritten by defaults * Subsonic * Different calls would filter output by user differently for no reason ## Ampache 7.7.2 ### Added (7.7.2) * Update pt_BR translations * Add `X-Robots-Tag` to RSS responses ### Changed (7.7.2) * Composer, NPM update ### Fixed (7.7.2) * Errors from unset values * PHP 8.4 deprecation errors * Subsonic * Sharing Albums (A list of songs instead of just an Album object) * Subsonic `GetPodcasts` not following default `includeEpisodes` value * When refreshing between Subsonic and OpenSubsonic ensure original ID is used for output * maxBitRate conversion for stream calls ## Ampache 7.7.1 ### Added (7.7.1) * Rector, style fixes and phpstan updates ### Fixed (7.7.1) * Errors looking up missing Localplay controllers * Theme css defaults for base path could be missing so set fallbacks * Null disk number causing Runtime Error on tag read * Confirmation link for client structure did not include `/client` in some places * Subsonic * POST values were not checked for authentication properly * Ensure Localplay status is returned when the controller is missing ## Ampache 7.7.0 ### Added (7.7.0) * Translations 2025-07-14 * Browse * New filters `user_flag`, `user_rating` on library items * Config version 83 * Add `public_images` Disable this option to require a valid user session for viewing images * CLI * cleanup:art * Add option `-c|--cleanup` (Delete orphaned art files when the file is missing from `local_metadata_folder`) * Add option `-x|--execute` (Don't delete unless you explicitly choose to delete) * Add a warning for orphan catalog cache folders during `run:cacheProcess` * Ampache Remote Catalogs * Allow verify for Remote catalogs * Gather art for Album and Artist objects missing art * Get more tag data from API6 servers that don't have the `song_tags` method * Use cached files for tag updates if created in the last 30 days * Try to pre-cache missing files in the transcode cache on play (When enabled) * Put the ID back on Art links to make them unique * Add session id to art links if auth is enabled ### Changed (7.7.0) * Don't show the clear art button when there isn't art there * Update composer packages * Use original art size when GD resizing is disabled for URL links * Add the file mime to Art URL links * Stop automatically creating thumbnails when inserting new art ### Removed (7.7.0) * Don't include log lines in translation files to reduce line changes ### Fixed (7.7.0) * Bad `ampache.sql` file * Check the preference table has data on database insert checks * Installer Bootstrap code updated to support v5 changes * Insert rows for Songs missing from the `song_data` table * Art inserted from URL would insert as a PHP mime type * Garbage Collection from the Web UI didn't send catalogs correctly * Filename checked as a change in tag comparison * Bad regex in MusicBrainz art collector * Null values in `parse_mbid_array` * Search * Local image `has_image` search didn't count missing joins * Ampache Remote Catalogs * Ampache PHP API didn't like `song_tags` * Could not add songs * Ensure an ID is returned for cleaning * Don't error on the first track when `song_tags` fails * Cache path was using the base folder instead of the numbered subfolders * Don't gather file art when the file is a URL * Delete Art cache when the art is updated * Art URLs were not sending auth session correctly * Enforce session requirements on art URLs correctly * Subsonic * Incorrect case for `getOpenSubsonicExtensions` on old Subsonic class * Ensure disabled songs are not added in more areas * Look for other possible empty arrays * Subsonic Remote catalogs can verify existing Song data * Some lookups for `MusicFolderId` were still expecting int values ## Ampache 7.6.1 Fixes for issues with OpenSubsonic identified by Symfonium users ### Added (7.6.1) * Updated `ampache.sql` * Allow filtering most Information actions by your own user account * Update `update_from_git.sh` example to skip additional commands if the git hash didn't change * Don't throw `DatabaseException` on failed query for garbage collection * CLI * cleanup:art add option `-t|--thumbnails` to delete all generated thumbnails (keeping the original images) ### Fixed (7.6.1) * Video preview images were not being generated when cleared * Video preview images couldn't be cleared * CLI * run:calculateArtSize could fail if `local_metadata_dir` wasn't set * Subsonic * `musicFolderId` prefix data not being checked in some areas * Error log information was appearing when checking site config caused an error * Search3 didn't allow explicitly empty search * Data with empty results was incorrectly arrayed * OpenSubsonic `artist` array on child objects from the wrong variable ## Ampache 7.6.0 Full OpenSubsonic rewrite to remove the weird JSON conversion class and fix up issues in responses. This is hidden behind a preference but will eventually become the default Subsonic API version. While this fully implements new features it does not include all the new data fields in the responses yet. **NOTE** If you enable OpenSubsonic the id prefix for objects has changed and you may lose cached data depending on how it's stored. ### Added (7.6.0) * Translations 2025-06-30 * Restore thumbnail etag * Directplay for Searches and Smartlist pages * Set auto generation headers on emails * Search URL relationships with MusicBrainz (Spotify and Discogs linking TBC) * Add fallbacks for `session_name` and `site_charset` * Browse * `song_artist` and `album_artist` negative sort conditions (e.g. `cond=song_artist,0` = not song_artist) * Database 760001 * Add `subsonic_legacy` preference. (Turn off to enable the new OpenSubsonic classes) * Subsonic * Implemented all OpenSubsonic [api extentions](https://ampache.org/api/subsonic/#opensubsonic-api-extension) * Add [API Key Authentication](https://opensubsonic.netlify.app/docs/extensions/apikeyauth/) * Add [getPodcastEpisode](https://opensubsonic.netlify.app/docs/extensions/getpodcastepisode/) method * Add [songLyrics](https://opensubsonic.netlify.app/docs/extensions/songlyrics/) support * Add [Index based Queue](https://opensubsonic.netlify.app/docs/extensions/indexbasedqueue/) * Expanded [subsonic-response error](https://opensubsonic.netlify.app/docs/responses/error/) ### Changed (7.6.0) * Update composer and NPM packages * Allow selecting the current Database art from the select art page * Use size parameters for Art URL generation ### Removed (7.6.0) * Don't generate any more image URLs with a thumb parameter ### Fixed (7.6.0) * Remote catalog function typo for `song_tags` function * Art selection only selected album as a type on insert * Table counts did not count disabled catalogs or enabled songs correctly * Error fetching empty Democratic playlist * Public user errors when loading browses * Search * `Song` search for `bitrate` using index and not value * Searching for `Live_Stream` object might not search the map table correctly * Don't look up an Album Artist when the Album doesn't exist * Error during Art lookup when it exists and is able to be overwritten * Error looking up lyrics when the song doesn't exist * Error loading up an image.php link without a valid URL * Default `composer_no_dev` fallback was false instead of true * Delete dupe `opbject_count` entries when the update fails ## Ampache 7.5.3 ### Added (7.5.3) * Translations 2025-06-10 * Extend error messages when uploading art and it fails checks * Database 752001 * Delete `custom_blankmovie` preference. (Movies don't exist now) ### Changed (7.5.3) * User Favorites are sorted by recent date and not count * Clean up `get_web_path` spacing to avoid constantly merging changes in other branches * Browse * Sort `playlist` and `search` objects by `name` and `id` to make sure dupes are ordered the same way * Subsonic * Change `getAlbumList` type `starred` sorted by recent date ### Removed (7.5.3) * Preference and references to `custom_blankmovie` which doesn't exist now * Correct AJAX URLs when using `clear_art` and `show_art_dlg` actions ### Fixed (7.5.3) * Error when importing empty TXXX id3 tags * Search * Updated rules were not persisted in `update_playlist` * Subsonic * Double output when missing parameters for some calls * Check `getAlbumList` & `getAlbumList2` calls for `genre` when type is `byGenre` * Strings are being converted to booleans for Json responses * Time used for `savePlayQueue` was the server time not the song position ## Ampache 7.5.2 ### Added (7.5.2) * Translations 2025-05-30 * Add rewrite rule to `public/.htaccess.dist` to redirect user art calls to the right spot * Add playlists to the gather art process and find playlists missing art * Database 751001 * Translate database descriptions to en_US for translation on output ### Changed (7.5.2) * Update composer packages * Update node packages * Translate database preference descriptions on output instead of inside the database * Extend thin images slightly on object pages like wide ones * Revert to using `locale/base/translatable-database-strings.txt` for database preferences ### Fixed (7.5.2) * Deprecated warnings for `idleberg/vite-manifest` * Webplayer would disappear when selecting new art from the list of found images * Only increment the found art count when you have added art to the array * Only check for original art when identifying missing art with Album and Video objects * Make sure a theme path is always set to ensure template and image paths exist * Catch exception on MusicBrainz art collection timeout * Set cache etag for blankalbum sizes * Unset cache etag on thumb calls * Subsonic * JSON generation not working due to fixing a hack. (put the hack back) ## Ampache 7.5.1 ### Added (7.5.1) * Documentation to convert thumb parameters to size strings ### Changed (7.5.1) * Move the session handler to a SessionHandlerInterface class (PHP8.4 deprecated) ### Fixed (7.5.1) * Recently played and skip not showing the right user after a refresh * Playlist name being filtered twice in new playlist dialog * jQuery was adding items to the temp playlist when loading the `add_to_playlist` dialog * CSS missing for Top Menu text and Light theme text was not visible * Code deprecations found for PHP8.4 * Resize output art based on ratio for display instead of a flat conversion * Don't resize art for small ratio differences * Catch vite `Manifest->getEntrypoint` exception ## Ampache 7.5.0 There are problems where the image table could duplicate itself when duplicating album art Database updates will remove the duplicates and enforce unique values on the table to stop this Run `bin/cli run:calculateArtSize` to fix up any odd or incorrect dimensions for remaining art Art is a big focus on this release, many issues with the data and thumbnail generation have been fixed WebDav has been cleaned up with output path name validation and now supports your using your web browser The rewrite rules for User art have been fixed. Recreate your rules with `bin/installer htaccess` ### Added (7.5.0) * Add PHP8.4 to GitHub QA actions * Add a size parameter to `image.php` art URL's * Add width and height properties to Art objects * Add example `update_docker_compose.sh` to pull and update your container when updates are available * WebDav Browser plugin, allowing direct browsing of your server * Show the structure with installed version in Ampache Debug when using a custom structure. (squashed and client) * Typing to plugin properties and functions * Typing to catalog modules * Add options for sharing private smart lists with users using the Collaborate feature * Additional art files for default album art matching common sizes * Config version 82 * Add option `upscale_images` that allows you to disable image upscaling * Add `user_name_filter` to allow regex validation of usernames when creating a user * Add `user_website_filter` to allow regex validation of websites when creating a user * CLI * New command `bin/cli print:duplicates` (Print a tab separated list of possible duplicates) * Print query error messages when running `admin:updateDatabase` * Add `-f|--fix` parameter to run:calculateArtSize to look for bad files only * Add print text for find missing and clean actions * Add Interactor to Catalog check actions * Add Interactor to cli database query errors * Search * Allow collaboration with smartlists * Add collaborate check to access queries * Subsonic remote catalog * Missing `getArtist` call * Database 750010 * Add `update_time` to `podcast_episode` table * Set `update_time` to NOT NULL on `video` table * Set `update_time` to NOT NULL on `song` table * Fix 0 `width` and `height` columns using `size` for the `image` table * Delete duplicates in the `image` table * Apply a unique constraint to the `image` table * Delete duplicate original images in the `image` table * Add `collaborate` to the search table to allow other users to see private lists * Alter `playlist_id` on the user_playlist_map table to allow search collaboration ### Changed (7.5.0) * Deprecate thumb parameter for image links * Widen images that are larger than the squares on main object pages (e.g. Artist) * Update composer and NPM packages * Config `catalog_verify_by_time` checks file mod time only * Update vite to 6.2.7 * Update `docker-compose.yml` for newer versions * Update Upnp `ssdp.service` so it works on newer Systemd versions * Ampache remote catalog * Use new Api function `song_tags` to pull more data for song import. (If available) * Plugin * Allow hiding Catalog Favorites (Highlight) items setting `maxitems` to `-1` ### Removed (7.5.0) * Remove superfluous format calls from all `Catalog` and `playable_media` objects * Remove `get_f_artist_link` which has been replaced with `get_f_parent_link` * Hide some useless data in the Debug page and remove `database_password` entirely * Remove Tmp_Playlist garbage collection from Catalog garbage collection ### Fixed (7.5.0) * Art scaling and resizing did not center the art causing black bars depending on the scale * Art display was forcing thumbnail images on object pages * Don't fetch all the art when you can just get the original image * Art thumbnail was always set and would not show the original image * Rewrite rules for User objects * Base all thumb generation on the original file * Don't generate and save thumbnails when they match original art size * Scrutinizer builds * Missing `width` and `height` from `image` duplication * Skipping files based on modification time when updating catalogs * Verify will now correctly reduce numbers based on the last_update time and fetch all when the update list is empty * When a file is unable to be verified set `update_time` to denote a check was made * Update Video files from tags didn't do anything * Use `findAlbumArtist` to make sure tags are filled when missing Album Artist tags * Don't rely on format for Album Artist property when missing * CSS for edit dialog box input fields had white text on the dark theme * Don't rely on format commands to fill empty `album_artist` for files missing album_artist tags * Beets catalog sending the id instead of the artist name to insert function * Unset variable warning for Upnp broadcast from web page * Delete empty playlist collaborate changes * Label pages were not checking config or user correctly allowing public entries (that failed) * Show Label action had many logic errors and missing returns * Grid status checking on object page art may show small art in the wrong place * Ignore query errors on garbage collection (probable table locks, etc) * WebDav * Deprecated exec function * Listing children has been simplified and fixed up for all media types * Errors for artist names with `/` creating empty objects * CLI * Missing `find` in default argument list check * run:calculateArtSize would only look for jpg files on disk * Search * Song search SQL joins for playlist name may not be in correct order * Limit and random would not update if unset * Playlist collaborate mapping being incorrectly joined in PlaylistSearch queries * Ampache remote catalog * Regex for file URL could remove more parameters than required * Update URL filename path to make sure it's valid * Subsonic * Send genre string correctly for more than one genre instead of just the first result * Check for Album Artist using `findAlbumArtist` * Subsonic remote catalog * Stop forcing fallback port 4040 * Image size was being sent as an array of height and width (You just send one int value) * Use max value of `album_art_max_width` and `album_art_max_height` for image size if set * Search * Missing break on Label searches ## Ampache 7.4.2 ### Fixed (7.4.2) * SQL column for tags using the wrong table ## Ampache 7.4.1 This release is a small frontend change that has had a lot of backend cleanup. Parameter typing and validating data sent to functions has reduced PHPSTAN errors by over 1000 issues! Functionally the code hasn't changed a lot but we are getting stricter to reduce issues with code changes. ### Added (7.4.1) * Translations 2025-04-16 * Add direct link alternative sharing to items for public users * Cache `album_disk` objects in `ObjectCache` (Cron) * Plugin * Bluesky share plugin * Mastodon share plugin ### Changed (7.4.1) * Update vite to 6.2.6 * Replace `GLOB_BRACE` for Linux versions that don't include it ### Removed (7.4.1) * NPM copyfile commands for PrettyPhoto. (It's a repo module now) * User details in genre data is always 0 so don't pretend there are uses for the user id ### Fixed (7.4.1) * Speed up dashboard pages for public users calling the top_sql query once * RSS compliance for date and atom links * Verify chunk count using the chunk and not the count * Waveform error when the file is missing * Saved Browse objects may be in int list or structured array * Artist row album count use disk/album count based on settings * Democratic votes being sent in incorrect array format * Media sent to Zip classes may be in structured array * MySQL full_group_by for Genre searches * Plugins * Don't set user preferences when not used in the plugin * CLI * Default options for `run:updateCatalog` * Subsonic * Could not set a 0 rating * Current item may be not there for `getPlayQueue` ## Ampache 7.4.0 The code has had a lot of updates dealing with verifications. It is recommended that you take out MusicBrainz from your config `metadata_order` to speed it up even more. ### Added (7.4.0) * Translations 2025-03-27 * Add item count to the Genre browse pages * Allow sorting the Genre browse page by item count * Allow editing links tags for hidden genres * Show merged tags for genres if they are set * Add Random play to Playlist and Smartlist object rows (Updated column CSS for these types) * Add example catalog update file example `catalog_update.sh` * Use musicbrainz GUID links if available for RSS items * Add RSS feed to get latest songs `rss.php?type=latest_song` * Add song as a possible library item for RSS * Add `offest` and `count` parameters to all RSS latest feeds * Browse * Add `added` and `updated` searches to Album and AlbumDisk searches * Add `artist`, `album`, `song` and `video` counts to the Genre browse * Add `id` to the Album, AlbumDisk, Artist, Label, Playlist, Podcast, PodcastEpisode, Song and Video browse types * Config version 80 * Add `split_artist_regex` split the Artist and Album Artist tags on regex and use the first result * Add `catalog_verify_by_album` to allow grouping updates instead of just updating individual files * Remove plugins from default `metadata_order` (MusicBrainz enforces a 1 second sleep for each call) * Add MusicBrainz API username and password options (optional for API usage) * Database 740001 * Fix boolean preferences with an incorrect type * CLI * Print messages in the CLI for actions again * UpdateCatalog: add new option limit. (-l|--limit) Only verify small chunk of files * Plugin * Catalog Favorites: Add `catalogfav_compact` to show an alternative list of compact favorite items * Discogs: Get genre data from the Discogs API * Musicbrainz: Add Album and Song object types to `get_metadata` ### Changed (7.4.0) * Random Play icon has been changed to stop clashing with the shuffle icon * Update vite from v5 to v6 * Update `public/.htaccess.dist` * Only audit NPM production modules * Move prettyphoto into lib/modules. (Dead project marked as Malware by NPM) * After updating Album and Artist object tags only update counts for affected Artists * Restore gather art on website Add actions * Don't collect garbage continually when doing a large verify action * Update individual counts for Artists after changes * Search with simple album name for external links * Split Discogs plugin into a separate library [ampache/php-discogs-api](https://github.com/ampache/php-discogs-api) * Change MusicBrainz library to [lachlan-00/MusicBrainz](https://github.com/lachlan-00/MusicBrainz) * Use MusicBrainz library for MBID validity checks * Set an Ampache specifig user agent on MusicBrainz requests * Show **ALL** Genres in the edit list for objects * Set a CSS max-width (25%) for the now playing column with Song details * Don't add `Podcast` to the RSS titles for library item feeds * Jplayer * Repeat the current song if you press previous and there isn't a loop situation * webplayer * Rearrange the buttons to make them align better with different config * Only show the slideshow button if you have a slideshow plugin enabled. (flickr) ### Fixed (7.4.0) * Song caching columns that don't match properties in the class * NPM install from the web updater on Linux * Lyrics would be chopped up if you repeatedly updated them; do it one way and once only * CSS in some areas for the light theme * `slideshow_time` being converted to bool * Don't show slideshow button if you don't have flickr enabled * Not able to edit Broadcast or select genre correctly * Missing artist tag options for Quicktime and ASF tags * Genre select SQL full group by on empty `object_type` * Counts for `album_disk_count` not being updated well * Count AlbumDisk counts correctly * Show tags with no object counts in the hidden tab. (They will never appear on the object pages) * Always update `album_map` and `artist_map` rows just in case they were missed * Don't update item and parent genres if there wasn't an item or parent change * Duplicate stat migrations for same `song_artist` & `album_artist` * Unable to update Tag lists when you had lots of tags (Over 40) linked to an object * Show newest AlbumDisk was not joining correctly * SQL error looking up License name * Fix up RSS to generate valid feeds again * Only insert additional metadata for scalar values * Silently fail on Metadata insert. (Fix up your tags) * Plugin * Discogs: Fix up searching for releases without a master release ## Ampache 7.3.0 This update has a lot of updates for verification and tag updates. The biggest update though is the performance increase! Many formatting and simple properties have been removed speeding up object actions. Pre-translating files before loading media templates should speed those pages up a bit too. ### Added (7.3.0) * Translations 2025-02-14 * Added option to show separate Artist column for playlist media * Pre-translate common strings on repeated tasks before loading media row templates * Clean empty albums after each verify chunk * Add `memory_get_peak_usage` to query stat output * Add `.htaccess.dist` to the web root. (Block obviously bad parameters) * HTML link on Share list * New catalog Auto-insert Fields * `%B` Album Artist * `%m` Song Artist **AND** Album Artist * Search * Add `genre_count_song`, `genre_count_album` and `genre_count_artist` to Song search * Add `genre_count_song`, `genre_count_album` and `genre_count_artist` to Album search * Add `genre_count_song`, `genre_count_album` and `genre_count_artist` to AlbumDisk search * Add `genre_count_song`, `genre_count_album` and `genre_count_artist` to Artist search * Database 721001 * Add user preference to show/hide the Artist column on playlist media ### Changed (7.3.0) * Update NPM `vite` package * Update table counts for `album` and `artist` objects on update * Clean up empty albums during migration * Rework catalog_map insert and remove during file updates * Only collect garbage maps for the catalog media type used * Make sure mail server or `user_no_email_confirm` is set to show registration pages * Don't show now playing when it's not in a catalog you can play * Block access to media outside your catalog access if you have a direct link * Don't check Album song catalog when you've already checked the Album * Don't execute format the object for row display pages * Don't show share URL if it's expired * Easy Captcha id generation using random string instead of `SERVER_NAME` ### Removed (7.3.0) * Don't check file modification time on verify. Just use the database `last_update` value * Remove useless and low use properties on classes and replace with functions or direct calls * Video catalog auto-insert fields `%S`, `%n` and `%e` ### Fixed (7.3.0) * Rate every instance of star ratings for the object instead of the first one found * Don't show query error on duplicate stream session * RSS generation without `SCRIPT_URI` * Building Song cache didn't include `album_disk` column * Don't check tag case changes for genres * Remove hidden tags from the `tag_map` table and do not delete them from the `tag` table * Update parent tag lists when change occurred on verify * Don't put string tags in the int list for comparison * Speed up `catalog_map` delete queries for 'artist' type * Don't unset object properties during tag change comparison * Error with database properties that allow null values * Require `mail` config or `user_no_email_confirm` to allow registration * PodcastEpisode loading errors for new files that aren't downloaded yet * NPM copyfile commands missing prettyPhoto files * External auth avatar update when enabled was not checking for blankuser.png URLs * Don't cache `song_data` table from single column requests * Don't insert empty strings for null data in `song_data` * `SERVER_NAME` may not be set for Captcha * webplayer * Not escaping bad characters correctly * Not blocking playback for media when catalog disabled or hidden from user with direct link * CLI * Hide invalid default command values. (e.g. Verbose and Version are not required) * Search * Album and AlbumDisk parameter not included for `release_type`, `release_status`, `barcode` and `catalog_number` searches * Song searches for favorites (e.g. `my_flagged_song`) sql error * SubSonic * OpenSubsonic extention (`openSubsonicExtensions`) incorrect case * Catch empty LocalPlay controller when disabled * Plugins * HomeDashboard would not correctly get random AlbumDisk objects ## Ampache 7.2.0 ### Added (7.2.0) * Add `npm audit` to GitHub QA workflow * Assign a HTML id to input text on inline loaded input * Add `[No Genre]` as the first genre on the browse pages * Browse * Add `no_genre` to Song, Album, AlbumDisk, Artist, Song and Video browses * Search * Add `album_count`, `artist_count`, `song_count` and `video_count` to Genre search * Database 720001 * Add `artist`, `album`, `song` and `video` counts to the tag table * Update `object_type` to an enum on the tag_map table ### Changed (7.2.0) * Updated NPM and Composer packages * Invalidate default theme CSS cache on new Ampache versions ### Fixed (7.2.0) * Show all catalogs in show catalogs page correctly * Missing `album_id` in upload process function * Custom Artist and Album names for filepond uploads * Typo on user pages loading recently played * Sending a string to `createBrowse` where int|null is required * Rector updates for function name case and other minor issues * Set empty album and album_disk properties on bad songs * Simplify DB update 700005 to avoid possible issues with empty playlists * Import user ratings correctly for vorbiscomment (flac) files * Include `disksubtitle` in more AlbumDisk import and update areas * Search * Searching Podcast Episode by `state` would not reload after the results are loaded ## Ampache 7.1.1 ### Fixed (7.1.1) * Upload POST array not sending license correctly to filepond * CLI * export:playlist: Documentation for type listed as mandatory * export:playlist: User id would not export all playlists when using System account * Error checking `REMOTE_ADDR` for web URLs (CLI commands will user `fallback_url` when required) ## Ampache 7.1.0 Builds now support PHP8.4! The icons for ratings and favorite flags are now SVG's which replaces the last png icons in the default theme. This release has fixed a lot of issues with public site guest users and another round of speed updates with more indexes on large tables. A big change here is in the Browse class. The logic of grid view has been normalized. Many logical issues reverse checking true/false and confusing text have been updated. If you use the Catalog Favorites plugin the `gridview` preference will now actually enable grid view Clear all your cookies and site data after the upgrade as this affects many visual areas on the site. ### Added (7.1.0) * Translations 2024-12-11 * Build PHP8.4 supported release zips * Rating and favorite flags are now using SVG's * Update Composer and NPM packages * Discogs search icon to valid library items * Add refresh icons to each dashboard page row * Add refresh icons to each home dashboard plugin page row * Update Creative Commons 3.0 licenses and include 4.0 versions * Debug messages from cron process * Don't show delete icon for user tokens when they don't have one * Allow editing AlbumDisk objects directly * If you edit `disk` number the songs with the disk number will also be updated * Edit `disksubtitle` and update AlbumDisk * Check for AlbumDisk when updating song `disk` value * Garbage collect orphaned AlbumDisks * Update album disk if required when editing the Album * Add AlbumDisk edit links to each disk on group pages * Add AlbumDisk `disk` `disksubtitle` properties to single disk Album edit windows * Allow editing song `disk` * Define missing abstract method for beets catalog * Allow a wild (`.*`) regex filter on Alphabet filters * Allow refresh on user recently played and skipped pages * Browse * Album and AlbumDisk browse `album_artist_album_sort`. (Sort by artist then by your `album_sort` pref) * AlbumDisk query sort `album_artist_title`. (Sort by artist name then album title) * Allow hiding the view menu (Just click the `View` link again to close it) * Read from the cache array if valid * Search * Add Album name to song search in top bar and expand the list * Add `disk_count` to Album & AlbumDisk search types * Add `no_license` to Song search * Debug warnings on searches with no rules * Add `skipped_times` and `played_or_skipped_times` to Album, AlbumDisk and Artist searches * Add `myplayed_times` to Album, AlbumDisk, Artist, PodcastEpisode, Podcast and Song searches * Add `myskipped_times` to Album, AlbumDisk, Artist, PodcastEpisode, Podcast and Song searches * Add `myplayed_or_skipped_times` to Album, AlbumDisk, Artist, PodcastEpisode, Podcast and Song searches * Add `none` to Song search (Empty rule/no filter) * Plugin * RatingMatch set the rating for Albums on single AlbumDisk objects * Config version 77 * Add `alpha_string_pattern` allowing a custom Alphabet list * Add `vite_dev` to check for the local dev environment * Database 710006 * Update Creative Commons 3.0 licenses with a version suffix * Add Creative Commons 4.0 licenses if their `external_link` doesn't exist * Add user preferences to show/hide Discogs links on object pages * Add `addition_time` to artist table * Update `action` column for `ip_history` table * Add indexes to `album_map`, `catalog_map`, `artist_map`, `image`, `recommendation`, `rating`, `user_flag`, `user_activity` and `playlist_data` table * 'Add `total_skip` to `album` , `album_disk` and `artist` tables * Add `album_disk` to the `song` table * Add user preferences to force enable `grid_view` cookies on login ### Changed (7.1.0) * Updating AlbumDisk `disk` number will migrate matching song disks to the new value * Load Ampache CSS after 3rd party components * Lots of areas would ignore `catalog_filter` if you were a guest. Now it uses the default filter group * Respect `sidebar_hide_playlist` and `sidebar_hide_search` in light sidebar * Use Artist `addition_time` in stat searches instead of large joins * Enable/Disable user icons changed to a person icon * If `autoupdate` is disabled don't show update options in the debug page * Don't autofilter to A when enabling the Alphabet filter * Sidebar Genre link defaults to Albums like all the other areas * Action button for song link will open in a new page * Move update warning link to it's own wiki page * Fail an upload if licensing is enabled and there isn't one sent to the uploader * Browse * Do not filter to `A` when enabling Alphabet filter * Don't show View on footer row when displaying Albums by Release Type * Don't allow grid view on playlist and search result media pages * Reverse grid logic. (Sorry!) * CSS for grid_view doesn't match the code (`disablegv` is actually `gridview`) * Search * AlbumDisk searches look for the disk rating * Take `DISTINCT` off `id` in SongSearch * Plugin * Catalog Favorites grid view is reversed to match the correct grid view logic ### Fixed (7.1.0) * Secondary tab jplayer not checking the player is loaded on pause check * Ajax `Loading...` text is in the wrong spot when using a fixed header theme * Light sidebar album link didn't respect `album_group` * Album display when you have 0 disks * Album and AlbumDisk display for guest user * Searching with `catalog_filter` enabled would return nothing for System user * Guest user access to dashboard items when using `catalog_filter` * Speed up preference lookups and compatibility checks * Art link on AlbumDisk objects pointed to the album * Make sure a user is set in the album page templates * Incorrect get_parent for Albums and AlbumDisks * Guest user can't play podcast_episodes * Don't filter Catalog list on admin pages * Catalog filter checking default group for users instead of ther filter group * Missing boolean prefs for debug page * Share display error with Share::create_fake_playlist() * IP History action was not displaying the action correctly * Make sure a song exists before trying to write tags * Reading disk subtitle missing `set_subtitle` * Don't double write song details when updating Albums * Debug page checking cron_cache as a string and not a bool * AmpacheApi-PHP library fixed for unencrypted passwords * Use `max_song` for Ampache remote catalog lookups * Count the song elements returned by API lookups and stop if you can't find any * Trim trailing slash on remote catalog install * Update AmpacheApi-php to work around saved password that are unencrypted * Numerous filtering problems with `catalog_filter` enabled * Don't overwrite browse data before saving a `tmp_browse` * Update `album_disk` on song insert or update * User recent and skipped pages may refresh without filtering * Hide username on user recent and skipped refresh' * Art mime check was inserting empty values * RSS calls providing invalid XML * Check `$_ENV` for language variables * Viewing hidden tags would only show the first one * Check that user `lang` preferences is valid * Remove wrong RSS link to recently skipped * Opening a song without a valid AlbumDisk would fail * Downloading PodcastEpisodes would not set file type * Installer CSS with Bootstrap 5 * Vite URL check may timeout your server for 2 minutes * Browse * Missing `total_count` sort types for Podcast and PodcastEpisode browse * Fixes for displaying browses after filtering * Don't show Alphabet filter list when the browse isn't filtered * Don't overwrite cookie values when using Ajax actions * Send the object type when filtering a browse in case it's not saved * Disabling Alphabet list would keep the filters active * Don't pull a tag or label lists if you aren't going to use it * Speed up tag Browse * Admin User page browse filtering * UserQuery regex had a `%` in the filters * Display AlbumDisk items on the genre browse pages respecting `album_group` * Search * Respect catalog filter on search * Hide search action buttons on smartlists when the user is a guest * AlbumDisk searches not looking for the AlbumDisk rating * SongSearch not checking `album_group` setting for `albumrating` * Searching for null ratings when using the average rating search * Subsonic * Trying to add duplicate XML art attribute * Errors with remote Subsonic catalog add ## Ampache 7.0.1 Fixed some slowdowns due to preference name and location look ups happening for no reason. ### Added (7.0.1) * Translations 2024-10-30 * Album query sort `album_artist_title` (Sort by artist name then album title) * Validate URL input on Custom URL preferences * `custom_favicon` (Custom URL - Favicon) * `custom_login_background` (Custom URL - Login page background) * `custom_login_logo` (Custom URL - Login page logo) * `custom_logo` (Custom URL - Logo) * `custom_blankalbum` (Custom blank album default image) * `custom_blankmovie` (Custom blank video default image) * Database 701002 * Add preference id and name indexes to the `user_preference` table * Convert `custom_text_footer` into a system preference ### Changed (7.0.1) * Fail preference insert if the new id isn't a valid int * Ensure URL preferences are input as a valid URL * Remove access to `custom_text_footer` preference for users * Update Composer requirements * Move JS for the sidebar back into the PHP template. (For now) ### Removed (7.0.1) * Stop rebuilding preferences all the time. (This is now fixed up on insert/delete) ### Fixed (7.0.1) * Action buttons using songs for other media types in recently played all * Clear session preferences when installing plugins so they appear right away * Extra closing div on shout home plugin * Garbage collect invalid user preferences (0 preference id) * Stats module checking for place names when the data is missing * Respect geolocation setting in stats calls and only check valid data * Align 'Post Shout' and 'Graphs' text on artist page * Missing 'default' string for album_sort (Should match on default but be explicit) * Double `/` in JS URL * Sidebar cookie, JavaScript and visual state were a bit of a disaster * Look for the expanded class in the sidebar before toggling collapse ## Ampache 7.0.0 Information and changes for this major release are recorded in the wiki. [Ampache7 for Admins](https://ampache.org/docs/help/troubleshooting/ampache7-for-admins) and [Ampache7 for Users](https://ampache.org/docs/help/troubleshooting/ampache7-for-users). Ampache7 still supports upgrading your database from any version higher than 3.6.0 (released in 2013!) I want to just thank everyone who has helped over the last year on this version from code right down to just asking for help. ### Added (7.0.0) * New release structure type (client) based on the public release type. (Allow using an API client in the root Ampache folder) * Translations 2024-10 * npm java package management * Convert most theme icons to use [Google Material Symbols & Icons](https://fonts.google.com/icons) * Restore composer.lock * Added rated songs to user Wrapped pages * Show ratings on live_stream pages * User option to show dashboard links on the index instead of browse links * Use number for preference input text boxes when the preference value is numeric * Check the user is admin when deleting activities * Verify `http_referer` before delete actions * Add option to clear update notifications which will also reset the check timer * Allow hiding licenses like genres * Show a warning on upload license selection * Show Bandcamp search icon on object pages * Garbage collect inactive users after 30 days * Remove validation token on user activation * Show error on user add/update when the website is invalid (empty values are ignored) * Added a `get_web_path` function to allow easier squash and client structure management * Hide SQL debug errors on queries that check status/backwards compatibility functions * Plugins * Home Dashboard: show album dashboard sections on the index * Preferences for sorting display_home plugins using CSS order * Browse * Sort by play count (`total_count`) for podcast, podcast_episode and video * Add `country` and `active` sort to label * Add `rating` sort to live_stream and video * Add `id` browse to all types * Search * Added `waveform` to song search. (Must not enable `album_art_store_disk` to return data) * SubSonic * Add openSubsonic extensions [ampache.org](https://ampache.org/api/subsonic/#opensubsonic-api-extension) * CLI * New command `bin/cli admin:updateConfigFile` (Update the config file to the latest version if available) * New command `bin/cli admin:updatePlugins` (Update any plugins that need an update) * Update for missing preferences after CLI DB updates * New command `bin/cli admin:updatePreferenceAccessLevel` force preference access level ('default', 'guest', 'user', 'content_manager', 'manager', 'admin') * New command `bin/cli admin:listUsers` list all the active users for your site `username (id)` * New command `bin/cli admin:resetPreferences` Reset preference values for users ('system', 'default', 'minimalist', 'community') * Config version 75 * Add `npm_binary_path` * Remove OpenID config * Add `database_engine` to allow you to change from InnoDB if you want to * Add `composer_no_dev` which allows you to remove `--no-dev` from the composer commands * Enable `user_create_streamtoken` by default * Add option `waveform_drawflat` that was previously hardcoded * Add `webplayer_level` allow setting a minimum permission level for the webplayer (default user) * Database 700029 * Add user preferences to show/hide menus in the sidebar and the switcher arrows * Add Indexes to `object_count`, `object_count_idx_count_type_date_id` and `object_count_idx_count_type_id` * Convert the remaining MyISAM tables to InnoDB * Drop and recreate `tmp_browse` to allow InnoDB conversion * Add a `last_count` to playlist table to speed up access requests * Add `collaborate` to the playlist table to allow other users to add songs to the list * Create `user_playlist_map` table to allow browse access to playlists with collaborators * Convert system preference `upload_catalog` into a user preference * Convert `clip`, `tvshow`, `movie` and `personal_video` catalogs to `video` * Remove `clip`,`movie`, `personal_video`, `tvshow`, `tvshow_episode` and `tvshow_season` tables * Add user preference `Custom URL - Use your avatar for header logo` this allows you to override custom header logos with your avatar * Add `action` column to `ip_history` table * Add `name` to `user_preference` table * Add user Preference `index_dashboard_form` (Use Dashboard links for the index page header) * Put sidebar preferences into their own category * Add user preferences to order menu sections in the sidebar * Add UI option `api_always_download` Force API streams to download. (Enable scrobble in your client to record stats) * Require unique preference names per-user in `user_preference` table' * Add `order` column to `license` table to allow sorting and hiding licenses * Add options to allow hiding different search links * Remove `tvshow`, `tvshowseason` from `object_type` enums ### Changed (7.0.0) * Prefer the name of the artist provided by MusicBrainz plugin * Use PHP functions for PHP.2+ * Update rector minimum to PHP8.2 and extend rector source directories * Default to InnoDB on new installs * Change URL for user avatar links * Move JavaScript out of PHP where possible * Convert string access names and int user access levels to enums * Update the upload file browser * Update gettext/gettext to v5 * Default to RandomAction on stream.php * Reborn theme CSS updates after switching to Material icons * Update code style to convert long form arrays (`array()`) to short form (`[]`) * Pull prettyphoto from GitHub (`lachlan-00/prettyphoto`) using NPM instead of merging into the project * Only allow Video catalogs instead of the different subtypes * Use preference names for lookups instead of guessing ID's * Skip empty sections when showing a Dashboard (mashup) page * Put each plugin class into extended interfaces to ensure functions meet expected requirements * Changed CSS logo to HTML * Skip stat recording on `cache=1` instead of reclassifying as a download * Convert catalog row actions to a form to fix client branch * When updating artist from MusicBrainz use begin area name and fall back to current area instead of using both * Don't show track sort on non track pages * Validate URLs on save * Block users creating a user called System (including translation into site language) * Don't show query errors on check queries. (these can be annoying and are useless) ### Removed (7.0.0) * Support for PHP versions less than 8.2 * Unused stream actions * Old composer files * Unused PNG icons * CSS for sidebar order. Use the new preferences instead * Non-music Video features have been removed. You can no longer add catalogs for these video types * Movies * TV Shows * Personal Videos * Plugins * Omdb (Movie Database lookup) * Tvdb (TV Database lookup) ### Fixed (7.0.0) * Enforce sidebar_light when enabled, ignoring cookie if set * Don't create missing tables when they haven't been created for your database version * Don't put empty artists into artist links * Opensearch not being added for sites with auth * Opensearch URL parameters didn't work * VLC localplay volume division number incorrect for total volume * Latitude and longitude column names in stats page * Cookie disclaimer missing closing " on div id * UpdateUser action didn't send you back with a valid user on error * Don't show HTML errors in cli * Don't show duplicate items in upload_catalog select when you don't have a music catalog * User config presets didn't do anything, now they match the cli `admin:resetPreferences` command * Don't show Visualizer related buttons in the webplayer until it's turned on * Make sure preference read and insert is supported on all Ampache versions * Ampache6 changed spells `category` correctly. (Migration600051) * Ampache7 adds the preference name to the `user_preference` table. (Migration700020) ## Ampache 6.6.4 ### Added (6.6.4) * Delete all additional Ampache7 preferences on database update * Backport Ampache7 Search class to handle API updates ### Fixed (6.6.4) * Don't show track number header when not displaying song track numbers * User validation wasn't cleared after activation * Localplay preference displayed as bool types * Found some missing preferences for validation * Error on `site_title` and `api_always_download` insert when missing * Validate `website` on User update and create functions * Validate `website` on Label update * Validate `website` on Podcast update * Added checks for some file handles to make sure they're valid first * Fix up docstrings in a few areas ## Ampache 6.6.3 ### Fixed (6.6.3) * Translating incorrect values for default preferences * User uploads * Don't delete the album_artist from the post array when updating * Update process not updating album `version` or `release_status` * Order of catalog verify by update_time may ruin the order when updating ## Ampache 6.6.2 In this release we've found a few people missing preferences. Use the cli updater to make sure you're up to date. (`php bin/cli admin:updateDatabase -e`) ### Added (6.6.2) * Check the user is admin when deleting activities * Verify http_referer before delete actions * Database 600076 * Add ui option ('api_always_download') Force API streams to download. (Enable scrobble in your client to record stats) * Ad more downgrades for Ampache7 users looking to roll back * CLI * admin:updateDatabase: set and fix up preferences on update * Browse * Podcast sort by `total_count` * Label sort by `active` status ### Changed (6.6.2) * Play URLs `cache=1` will bypass stat recording instead of converting to download * When updating artist data from MusicBrainz use `begin-area` name and fallback to `area` * Allow guest users access to the webplayer * Allow upload user to edit mbid fields on objects they own ### Fixed (6.6.2) * Browse trim for sort could leave a `,` * Song `has_info` had extra select columns * Some tests were broken * Missing close on cookie disclaimer div id * content-length calculation for transcode * Admin creating a user with a duplicate email wasn't notified * Remove `mixed` parameter typing so we don't break php7.4 * Upload owner could not use `update_from_tags` * Upload owner was not sending item values to the update functions ## Ampache 6.6.1 ### Fixed (6.6.1) * Wanted items were not being added to the DB correctly * RSS Feeds were not including other users * Ambiguous column in Rating::get_highest_sql() * Wanted / Song_Preview items were very broken and badly sorted results * Don't cache additional columns for songs causing dynamic properties * Delete label confirmation missing ID * Transcoding and not transcoding with `downsample_remote` enabled * Set default value for transcode on get ('default') * Browse * Not restoring QueryType on reload of saved browse * Sorting users by invalid sort type * Dupe select in some areas (always overwrite instead of adding) * Highest rating SQL had ambiguous column in select * Plugins * Don't show that catalog favorites header if there isn't anything to show * Search * Stripslashes on input to fix `Don't` becoming `Don\'t` in the SQL * Subsonic * Always include cover art in search results * Correct output format of array items (e.g. int being cast as string) * webplayer * Missing variable `playlist_before` in shuffle function ## Ampache 6.6.0 Another version bump due to additions in API6 related to playlists Users can now share a playlist with specific users and keep the list private from everyone else You can downgrade from Ampache7 if you try it out and have issues using the cli ### Added (6.6.0) * Add `maxlength` to the user data fields on the registration and edit pages * Use `autocomplete="new-password"` to stop trying to autocomplete on edit pages * Default theme fallback to 'Dark' color scheme * Add users as a playlist collaborator (These users can add and remove songs from a playlist) * Expand user IP History to show user Agent string * Database 600075 * Add `collaborate` to the playlist table to allow other users to add songs to the list * Create `user_playlist_map` to allow browse access to playlists with collaborate access * CLI * admin:updateDatabase: allow downgrading database from Ampache7 databases ### Changed (6.6.0) * Split out API change documentation from CHANGELOG.md to API-CHANGELOG.md * Simplify and speed up playlist access checks by sending the user object * User IP history will always group duplicates values * Don't notify that items are added in the WebUI when nothing was added * Users will see additional playlists if they are added as a collaborator * Don't notify that items are added to a playlist in the WebUI when nothing happened ### Removed (6.6.0) * Don't track user IP from stream URL access ### Fixed (6.6.0) * AutoUpdate preferences were not being saved, respected or updated * Total table counts for artists didn't include all artists * Check valid playlist / search on random actions * Autoupdate version check tweak for empty latest version * XSS scenarios that a user could create (and some admin ones as well) * URL encode name parameters for links * User IP history page didn't show what you expected and was very confusing * Edit search and playlist pages not reloading the user list * Missing table check for database update 500006 * Over-escaped playlist name when saving from smartplaylist * Skip caching missing files * Browse albums by `name_year` not splitting columns for sorting ## Ampache 6.5.0 This release is the final Ampache6 release with new features. Bug fixes and API extenstion only from now on! Ampache Develop will become Ampache7 on the first of July as we move on to completing the next major release. Cleaning up the Query class has helped ID and close a lot of bugs while allowing more options for API clients. Ampache uses the Query class to create 'browses'. A browse is a query that allows filtering and sorting data. This release has made greater use of browses reducing reliance on customizing mini functions to provide the same information. ### Added (6.5.0) * Translations 2024-06 * Add `playlist_search` as a browse type. (combined playlists and smartlists) * Allow sorting playlists by `type`, `rating` and item count * Allow sorting searches by `type`, `limit`, `rating` and `random` status * Ensure `catalog` is available on media browses * Add many missing database columns to browse sorts and filters on all browses * Show ratings on smartplaylist objects in the WebUI * Add a permalink in the search form to allow people to share or bookmark a search * Database 600073 * Add indexes to `object_count` * Drop and recreate `tmp_browse` to allow InnoDB conversion * Add `last_count` to the `playlist` table * Use InnoDB for all tables by default on new installs ### Changed (6.5.0) * Extract the Query class into individual classes * Album browse `artist` was only selecting `album_artist` * Check a session exists before trying to insert it * Check theme with glob instead of reading file paths using opendir * Subsonic * Convert getPlaylists process to a browse ### Removed (6.5.0) * Remove `disk` sort from `album` browse * Remove `album` sort from `artist` browse * Remove `call_sign` and `frequency` from `live_stream` browses (whatever they were) ### Fixed (6.5.0) * Fixed search rule JS showing the wrong lists id's in select items * `catalog` browses using incorrect column * `artist` browse by `song_artist` wasn't in the valid list * Missing `video` browse filters on `clip`, `movie`, `personal_video`, `tvshow`, `tvshow_season` and `tvshow_episode` browses * Random (`rand`) was missing from a lot of query types as a valid option * For searches, `random` sort was random sorting the sql and ignoring the random column (use `rand` for random result sorting) * Icon text spacing was out of alignment on some object pages * Sort before any other browse action in case you delete the joins * phpmailer error info parameter is a property * Stream::delete_now_playing query didn't work * Transcode format checks were overwriting `bitrate` and `format` parameters * Playlist::get_media_count() was ignoring other media types * Don't show an update notification when the latest version is missing or matches * Check for valid numeric numbers on tags for rating during import * Subsonic * Chat messages couldn't be added to the public chat * CLI * Check catalog path is readable on updateCatalog actions * Don't try to clean a file if it wasn't valid media * Runtime error when importing new genre tags ## Ampache 6.4.0 Work on Ampache7 is ongoing. Check out the [wiki](https://ampache.org/docs/help/troubleshooting/ampache7-for-admins) for information as some changes will be backported to Ampache6. There has been a change to the way Random Searches work for Artist and Albums These searches will now use to rules for that object type and then return the songs contained in those objects * For example * You search using `random.php?action=advanced&type=album` * You search `album_rating == 5` and the `Item count` is set to 1 * The search will find 1 album that is rated 5 and return **all** the songs in that album ### Added (6.4.0) * Translations 2024-05 * rtrim slashes on some config variables in case you ignore the warning * Database 600070 * Allow signed `user` column for `broadcast`, `player_control`, `session_stream`, `share`, `user_activity`, `user_follower` and `user_vote` tables * Revert unique constraint `playlist_track_UN` on `playlist_data` table * Extend `generator column` on `podcast` table to 128 characters * Convert `object_type` to an enum on `playlist_data` table * Config version 71 * Fix up bitrate encode_args * Add `api_debug_handler` run api commands without exception handling (At your own risk!) * Wrap default string config options in quotes * Add a note about using a secure cookie prefix ### Changed (6.4.0) * Stream Random action default fallback to `song` * Allow using `tmp_dir_path` for Dropbox catalog * Subsonic * Song file path is now always the original full file path * This was a relative path that was changed with transcoding meaning the path never existed. * Random search (`random.php?action=advanced`) `artist` and `album` actions have been changed to use their object rules * The returned results are still song objects but the searches are done using their rule set ### Fixed (6.4.0) * Always get the current file size when downloading the raw file * AlbumDisk errors on unknown items * Album names being overwritten with artist names when missing tags * Regenerate playlist track numbers correctly for the full list * Also check the bitrate when transcoding instead of just formats * Don't use cached files if the bitrate doesn't match `transcode_rate` * Default config encode_args are putting bitrates into millions * URL links generated with `&` that were causing errors * Song license display * Check Stream_Playlist::media_to_url() to ensure valid media * File naming fixes to stop matching year on 1080p * ObjectTypeToClassNameMapper missing `tvshow` class * Allow `composer stan` to run on Windows * Filter Random and Trending sections for catalog filters on dashboards * MusicBrainz lookups on Wanted files * Don't try to get playlist items when it's not a valid list * Send a 416 HTTP response when trying to stream past the end of a song * Stream_playlist columns could be inconsistent with different media types in a list * Compare Ampache version string is actually higher using version_compare() instead a not equals comparison * webplayer * Send the Song time to the player to stop all these wild numbers * Subsonic * Sending a User as an array instead of Users ## Ampache 6.3.1 ### Added (6.3.1) * Added an option to clean a folder path on the Show Catalogs page ### Changed (6.3.1) * Show full playlist names on the personal favorite plugins (missing username) * Block direct stream for shared file when share is disabled ### Removed (6.3.1) * Config options `write_id3` and `write_id3_art` don't do anything so remove them ### Fixed (6.3.1) * Add missing album name through browser Media Session API * Fixed PHP caching false values when expecint an int * Typo for disabled song display * Show the count of returned art in the log * Don't show private playlists on browse or direct link if you don't have access * Refresh Democratic playlist on vote removal, and clear the votes on `clear all` * Preference text box possible XSS * Search * Added some documented aliases for rules that were missed * Fixed `NOT SOUNDS LIKE` responses * Don't scrub search input in the SQL (parameters are sanitized) * Rule input XSS in JS * Subsonic * Array not set on some items in JSON responses ## Ampache 6.3.0 ### Added (6.3.0) * Translations 2024-03 * Lots more static typing on missing function returns * Dynamic properties on the Captcha classes * Add opml import (and export) for podcasts * Database 600060 * Update Last.FM plugin preferences that could be incorrect * Spell category and subcategory correctly * Add unique constraint `playlist_track_UN` on `playlist_data` table * Remove Flattr plugin (Service has been discontinued) * Convert `object_type` to an enum on `image`, `rating`, `user_flag`, `user_activity`, `object_count`, `share`, `cache_object_count` tables ### Changed (6.3.0) * Split database updates into small migration classes * Change usage of State in podcast_episode pages for Status * Song additional metadata classes have been updated * When searching art limit results per-plugin instead of total results * Extend valid Share objects * Update composer scripts and checks * Don't send a cached file that does not match a requested target format ### Removed (6.3.0) * Flattr service has shut down, so remove the plugin * php cs-sniffer from the project root and scrutinizer ### Fixed (6.3.0) * Catalog Filters could not be edited after creating * Catalogs were not cleaned up from the `catalog_filter_group_map` table * Wanted errors on an empty global user * Public users can not cache playlist browses * Last.FM plugin errors with preferences and linking accounts * Fix up localplay commands for Kodi/XBMC clients * Playlists were sorting by object type * User::get_user_data was not putting the default return in correctly * Unable to use `bin/cli export:playlist` undefined method * Playlist had some issues adding songs * Localplay and jukebox mode improvements (VLC and XBMC) * Don't search for wanted albums on an invalid artist * Browse filtering for album artist and song artist in certain situations * Don't send an empty query to the database * Remove stray span and use valid lang value on installer pages * Updating array preferences * Showing favicon * Publication date of RSS feeds * Search * Rule inputs were being json encoded twice * Genre search joining catalogs when they're not needed * Static typing errors * Updating album data when original_year is missing * Template `show_recently_played` with a non-database song * Use isNew() to check for valid objects to avoid type errors * Check for valid media before zip operations * Subsonic * Data for starred results was not always an array * Send correct art respecting `show_song_art` again ## Ampache 6.2.1 The catalog verify process has been reworked a little. There were some bugs that would prevent you being able to 'finish' a catalog. Definitely set `catalog_verify_by_time` if you have a large catalog. This will allow you to do a verify in small batches over time and not repeat the same songs. ### Added (6.2.1) * Translations 2024-01 * Add podcast opml export to the podcasts page * Advertise WebPlayer song info via MediaSession API / MPRIS ### Changed (6.2.1) * Replace all remaining occurrences of FILTER_SANITIZE_STRING * Enable `user_no_email_confirm` to disable email requirements for user registration. (When `mail_enable` is false registration was blocked) * Verify catalog by song instead of album * Catalog verify will now use the config option `catalog_verify_by_time` and only check songs not updated since the last full verify * Don't update counts and collect garbage after updating individual songs * PlayAction stream_select will now block until there is data ### Fixed (6.2.1) * Skipping non-songs would create a runtime error * db update_600005 shouldn't use `$album->get_fullname` which changed in update_600027 * Upload page showing non-uploads * Showing extra title for podcasts * Captcha image generation * Registration check logic * Search error loading empty rules * Add from path on the catalog admin page * Reading tags on bad files would load the bad tags * Stop trying to read bad files before loading tags * Catalog update dates were set when the process was finished which negates `update_time` checks * Song `update_time` wasn't allowed to update * Check `update_time` in Catalog::count_table sql so you only verify what you need to * Transcode can't use range in headers * Empty result error on Stats::get_object_count * Subsonic * Search2 and Search3 ignored musicFolderId ## Ampache 6.2.0 Builds for PHP 8.3 are now available! This release has been all about static typing and crushing bugs related to that. Hundreds of static analysis bugs have been fixed. (A drop of about 50%) There has been a big focus on making sure everything does what it says it does. For older servers we've tested updates from an Ampache 3.9.0 database to 6.2.0 successfully! As an end of year bonus you can access your own Ampache Wrapped from the user page when enabled ### Added (6.2.0) * Translations 2023-12 * Allow translations for plugin names * GitHub action to lint master and develop branches for php7.4 * Lots of code test coverage * Allow sharing `podcast_episode` objects * Add refresh button to the rightbar and some of the ajax index modules * Hide the filterbox when your browse can't use it * Database 600049 * Set correct preference type for `use_play2` * Add user preference `jp_volume`, Default webplayer volume * Add system preference `perpetual_api_session`, endless api sessions. (**AT YOUR OWN RISK**) * Add column `last_update` and `date` to search table * Add user preference `home_recently_played_all`, Show everything in the now playing box * Add user preference `show_wrapped`, Access your personal "Spotify Wrapped" from your user page * Add `date` column to rating table * Update link for FMPL license ### Changed (6.2.0) * Upgrade phpunit to version 10 * Updated codestyle rules to PSR12 * Update php_codesniffer to 3.8 * Static typing to all database fields * Update composer for ampache/ampacheapi-php dev-master * Allow range header on transcode streams * 404 error on invalid media streams * Use curl instead of fopen for podcast episode downloads * Track the date of ratings in `user_activity` table * Add a confirmation to the Clear Stats button on the catalog page ### Removed (6.2.0) * Duplicate `show_playlist` UI actions ### Fixed (6.2.0) * Empty global error on index page * Check the file/URL before importing with `import_playlist` * Large docstring cleanup: remove unneeded tags and trim names * Correct ip history rendering in case of a invalid user * Make sure something is also unplayed when total_count is 0 * Thousands of phpstan code issues * Can't uninstall catalog modules * Database updates tested from ampache-3.9.0 -> develop * Missing AND in play_count update SQL * Undefined variable and query spacing in SQL for get_uploads * Share options not checked correctly when creating a share * Dynamic properties on Tmp_Playlist and Captcha * Lots of checks for valid and invalid objects * Do not fail on plugin reinstall (just install missing preferences) * Failures on nullable valuse with static typing * Errors on user_data checks that didn't exist yet * Use your default album sort on browses and set it correctly * Filterbox bugs with playlists and labels * Update from tags didn't respect your tag order * Remote catalogs couldn't import song data correctly * Podcast episode downloads would be blocked from some redirects * get_recently_played SQL was really slow * Bitly plugin updated to v4 API * Requires a [Bitly](bitly.com) account * Generate a `token` at [(https://app.bitly.com/settings/api)] * Get your `group_guid` from `https://app.bitly.com/{GROUP_GUID}` or Account Settings > Groups (the GUID is in the URL) * Add missing properties on public users. (-1) * Subsonic * Url protocol checks not compared correctly for setServer ## Ampache 6.1.0 First up, AutoUpdate notifications are fixed This update has a big focus on browsing and sorting classes Code improvements have made it a lot easier to identify (and solve) some long running issues Album sorting has finally been restored to all pages! If you use Subsonic we noticed some clients don't use *.view. The /rest htaccess file has been updated to support this. Use `php bin/installer htaccess -e` to update your htaccess files ### Added (6.1.0) * Translations 2023-10 * Read more tag frames for `disksubtitle` * Database 600042 * Index `label` column on the `label_asso` table * Add user preference `bookmark_latest`, Only keep the latest media bookmark * Config version 69 * Add `user_create_streamtoken` (Add a `streamtoken` to the account when a new user is created) * Browse * Sort `artist` by time * Sort `album` by disk, time, version * Sort `podcast`, `podcast_episode`, `playlist` and `search` by rating * Sort `song` by album_disk * Added `album_disk` sorting ### Changed (6.1.0) * Restore `album` sort links again when split by group * Default visibility for new playlists is `public` * Garbage collect empty labels. (Keep user-generated labels) * CLI * `-t|--garbage` don't collect garbage for each catalog, just do it at the end * Subsonic * Updated Apache .htaccess.dist to support Subsonic clients that don't use *.view for calls * createplaylist: Default visibility for new lists is `public` ### Fixed (6.1.0) * Header auth with a Bearer token would always fail * Song rows were showing album links instead of album_disk * Null artist time's not updating * Rating `album_disk` objects would not refresh the value * Creating a new`album_disk` inserting the song id instead of the album id * SQL generation for browse sorting with comma and space in the text * album_disk `disk_count` wasn't updated * AutoUpdate notifications * Fix a lot of code Runtime Errors * Handle GatherSpotify exceptions and empty results * Catalog was not garbage collecting the bookmarks table * Browse * **Massive** code quality updates to the browse/query class * Don't overwrite a browse box title if set * Sorting and filtering on works correctly * Genre browse page HTML div name using bad names * `album_disk` was sorting album * Search * Respect limits for subsearches again * `search_user_id` fallback for searches without a user * Subsonic * Runtime Errors when you have not done things before ## Ampache 6.0.3 ### Added (6.0.3) * Translations 2023-09 * Added refresh button on smartlists so you don't have to overwrite the rules each time * CLI * New cli command `bin/cli run:addCatalog` (Create a local catalog) * Database 600040 * Add `custom_timezone` as a user preference * Add `disksubtitle` to `song_data` and `album_disk` table * Config version 68 * Add `date_timezone` (Allow custom timezone for date formatting) ### Changed (6.0.3) * Lyrist plugin regex be a bit looser with user input and regex /api/ on the end of api_host * Don't try and load preferences page without a user to load * Check for `downsample_remote` conditions on song play_url generation * Don't downsample songs during a stream (play_url should catch this before you stream) * Sort album browse pages based on your `album_sort` preference ### Fixed (6.0.3) * Error checking user temp playlist could give you a blank index page * Runtime errors with missing data * Missing translations for language list * Select uploaded artists using the artist instead of song * Missing column in Search::get_searches SQL * Updating artist_map too much * Last.fm lookup URL was missing an `&` for albums * Don't try to load an album_disk that doesn't have an album * Restore sorting on album lists and browses that aren't grouped by release_type * Catch Spotify runtime error on retry as well as initial attempt ## Ampache 6.0.2 ### Added (6.0.2) * Plugins * Lyrist Lyrics (`https://github.com/asrvd/lyrist`) ### Changed (6.0.2) * Don't require catalog access to upload songs. (Ignore catalog_filter for upload actions) ### Fixed (6.0.2) * Correct stream get_base_url * Database 600037 missing interactor check for the web updater * Avoid Orphan album artist when song has empty albumartist tag * Various runtime errors with missing data during session timeouts * Admin page 'browse uploads' didn't need to be so strict * Show album edit button on uploads correctly * get_uploads_sql for artists could miss mapped artists * Only show user playlists on user page (public only if you aren't an admin) * Don't show admin user page (-1) * Search * ArtistSearch: Joins for songrating and albumrating were missing ## Ampache 6.0.1 ### Fixed (6.0.1) * Check for duplicate ports in stream URL's * Songs and podcast_episodes with ABR being overwritten with VBR ## Ampache 6.0.0 **NOTE** For database update 600005; please consider using the CLI update command (`php bin/cli admin:updateDatabase -e`) For information about Admin and backend changes check out [Ampache6 for Admins](https://ampache.org/docs/old-information/ampache6-details) For information about what you'll see and changed behavior's check out [Ampache6 for Users](https://ampache.org/docs/old-information/ampache6-for-users) You can now use a permanent session token for streaming. (check out the [wiki](https://ampache.org/docs/old-information/ampache6-details#allow-permalink-user-streams)!) You can find example Subsonic responses from an official server and Ampache server [here](https://ampache.org/api/subsonic) ### Added (6.0.0) * Translations 2023-08 * Add `streamtoken` to user objects, allowing permanent stream links * Allow deleting a user API key Stream Token and RSS token's * Allow Admin users to browse all user uploads * Create Dockerfilephp82 * Add custom `listenbrainz_api_url` to listenbrainz plugin * Add header to allow browser cache on waveform * Allow custom JS using `/lib/javascript/custom.js` * Tell a user when they can't see any shares instead of a blank page * Allow adding live_stream's to playlists * Cache transcode format for file types instead of processing for each call * Add %s (Release Comment) as a translatable tag string * Add the Owner to playlist rows * Button and color Light theme fixes for the webplayer * Get album info from last.fm for similar & related objects * Try to bypass bad xml for podcast feeds if it can't load * Add more tables to the missing table checks * Remove all reference to deleted database updates (not required) * Add error info to debug from failed email attempts * Browse * Add `album_artist` and `song_artist` as valid browse types * Add many additional (and missing) sort types for objects * CLI * New installer command `bin/installer htaccess` (recreate .htaccess files from .dist) * Add playlistid to export:playlist (export a single playlist instead of all of them) * smartplaylist export. e.g. `bin/cli export:playlist ~/playlists/ smartlists` * Add -w|--web to export:playlist (Get a play URL instead of the file name) * Add -t|--garbage to run:updateCatalog (Separates table updates from Add / clean / Verify actions) * New cli command `bin/cli run:updateCatalogFolder` (run catalog actions on a catalog subfolder) * When an error occurs using `bin/cli admin:updateDatabase` print out the SQL and the update function * webplayer * Add a button next to the playlist to allow looping after the last song * If you enable playlist loop do not remove previous tracks * Database 600038 * Add preference `webplayer_removeplayed`, Remove tracks before the current playlist item in the webplayer when played * Drop channel table * Add `total_skip` to podcast table * Add `disk` to song table * Create album_disk table and migrate user ratings & flags * Migrate multi-disk albums to single album id's * Add `disk_count` to album table * Fill album_disk table update count tables * Rename `artist`.`album_group_count` => `album_disk_count` * Drop `disk` from the `album` table * Rename `user_data` album keys * Add `album_disk` to enum types for `object_count`, `rating` and `cache_object_count` tables * Add `song_artist` and `album_artist` maps to catalog_map * Add ui option `api_enable_6` to enable/disable API6 * Add `version` to the album table * Add `streamtoken` to user table allowing permalink music stream access * Add `object_type_IDX` to artist_map table * Add `object_type_IDX` to catalog_map table * Drop `user_playlist` table and recreate it * Extend `time` column for the song table * Extend `time` column for the stream_playlist table * Add `upload_access_level` to restrict uploads to certain user groups * Add preference `show_subtitle`, Show Album subtitle on links * Add preference `show_original_year`, Show Album original year on links (Separate from use_original_year) * Add ui option `show_header_login`, Show the login / registration links in the site header (Separate from simple_user_mode) * Add user preference `use_play2`, Use an alternative playback action for streaming if you have issues with playing music * Add `bitrate`, `rate`, `mode` and `channels` to the `podcast_episode` table * Extend `object_type` enum list on `rating` table * Convert `object_type` to an enum on `user_flag` table * Convert `object_type` to an enum on `image` table * Add `enabled` to podcast_episode table * Update user `play_size` and catalog `size` fields to megabytes (Stop large catalogs overflowing 32bit ints) * Update `access_list` in case you have a bad `user` column * Config version 67 * Drop Channels from config * Reset the art_order defaults (replace lastfm with spotify) * Set a default `album_art_min_width` and `album_art_min_height` (30px) * Add `album_disk` to allow_zip_types * Add `fallback_url` for CLI actions which can't detect the URL from web requests * Update `additional_genre_delimiters` to `"[/]{2}|[/\\|,;]"` (Split on "//", "/", "\", "|", "," and ";") * Update your `encode_args_opus` settings * Search * Add `album_disk` as a search type (uses album rules) * Add `song_genre` to album and artist searches * Add `possible_duplicate_album` to song search * Add `my_flagged` to song search * Add `my_flagged_album` to song search * Add `my_flagged_artist` to song search * Add `mbid_artist` to album search * Add `subtitle` to album search * Add `barcode` to album search * Add `catalog_number` to album search * Add `smartplaylist` to album search * Add `duplicate_tracks` to album and song search (MIN & MAX id for song search) * Add `episode_count` to podcast search * Add `total_skip` to podcast search * Add `played_times` to podcast and podcast_episode search * Add `skipped_times` to podcast and podcast_episode search * Add `played_or_skipped_times` to podcast and podcast_episode search * Add `last_play` to podcast and podcast_episode search * Add `last_skip` to podcast and podcast_episode search * Add `last_play_or_skip` to podcast and podcast_episode search * Add `played` to podcast and podcast_episode search * Add `myplayed` to podcast and podcast_episode search * Add `recent_played` to podcast and podcast_episode search * Alias `possible_duplicate_album` => `possible_duplicate` for album search * Alias `album_genre` => `genre` for album search * Alias `mbid_album` => `mbid` for album search * Alias `mbid_artist` => `mbid` for artist search * Alias `song_genre` => `genre` for song search * webplayer * Enable restart on democratic or random play * Allow removing played tracks on next * Subsonic * API 1.16.1 support ### Changed (6.0.0) * Moved composer to php8.2 minimum by default. Use `composer_old.json` for older PHP versions * Identify the active git branch when checking for updates * Automated the JS minify on jplayer and prettyPhoto * Enforce Admin (100) for system settings * Change all the Information pages into browses (Default to Album/Album Disk) * Add extra types to the Information pages * Combined all Albums into single Album objects * Remove Channels from Ampache (Use [icecast](https://ampache.org/docs/configuration/Ampache-Icecast-and-Liquidsoap/) instead) * Download URL parameter order matching "client, action, cache" * Add `barcode`, `catalog_number` and `subtitle` to Album::check() for comparison checks * Rework user_playlists (used for Now Playing & Play Queue operations) * Workaround time for dsub playqueue by converting to UTC * An upload_catalog should only be a music catalog * Redirect Democratic and Random Play actions with a http 308 response (`https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308`) * Add username column to playlist and search rows and allow sorting * Show empty properties on song pages * Split filename and folder properties on song and video pages * Ignore properties and data for guest users that won't have this data * When pulling user data don't pull the password * Uploads are allowed based on the `upload_access_level` (When disabled; access 25 is required) * When transcoding a file change it's name parameter to the converted file type * Only show user pages for non-system users * Large template cleanup * Reduce a lot of repeated actions, queries and processes * Update Requests module to WpOrg\Requests * Show 20 genres in Song, Artist & Album edit windows (up from 10) * Process stream output and then send the content to the player * Play URLs will rename the file name to the transcode output format * open RSS links in a new tab * Dashboard pages have Newest on top now * Updated the default `.htaccess.dist` files * Only allow one password reset from 'Lost Password' per hour * Only reset the password from 'Lost Password' when the e-mail is successfully sent * Composer * Updated jQuery to 3.5 * Updated php-cs-fixer to 3.10+ * CLI * Moved catalog map and update functions out of run:updateCatalog clean, add and verify commands (use -t|--garbage to put them back) * Make admin:updateDatabase display more information about the version and required changes * Chunk the cleanup:sortSongs to give you more information * Search * Search by the list owner when a user is required (System lists still search as you) * Split the Search class into smaller pieces to make it a bit less daunting * Return everything when searching by no or invalid rules * Faster `smartplaylist` searches for song search (Does not respect limits for those subsearches) * webplayer * Only send songs (for now) to the 'Add all to playlist' button * Added an option `loopBack` which restarts the playlist after finishing * Subsonic * Since 1.14.0 the newly created/updated playlist is returned. In earlier versions an empty `` element is returned. * Pass the authenticated user to method calls ### Removed (6.0.0) * Dropped the `-release` part of releases. * Combined a lot of duplicate properties, functions and process all over the place * Travic CI config file * For System preferences 'Apply to All' and 'Access Level' have no effect * Combined a lot of duplicate functions into one * Art from share page * Remove the auth parameter from image URLs * Option to 'Force Democratic Play' has been removed from the config page * Check the [wiki](https://ampache.org/docs/old-information/ampache6-details#configure-democratic-playlist-options-directly) for details * Remove all reference to deleted database updates (not required) * Plugins * The Movie Database (TMDB) plugin * Subsonic * Custom messages for subsonic errors [subsonic.org](http://www.subsonic.org/pages/api.jsp) ### Fixed (6.0.0) * Work around for possible release string errors (future releases will drop "-release") * Ignore case in genre comparison * Hide Upload links if you can't access the catalog * Recently played for non-user calls * Found a few dynamic properties on objects * Bugs around the setting of the Various album_artist when the album_artist is null * Show test errors correctly when you can connect to the server but don't have a database * When using LDAP check for DN and username on group membership * Browse filtering for catalogs and podcast_episodes was a bit light * Filterbox actions not loading correctly * Song was not checking for channel data * Ampachechartlyrics plugin object data might not be set * Force cast on shout data that may be null * Handle a bad object_id on rss requests * Add missing doctype for html pages * Updating Album objects with null time * Missing " in html for Captcha * Record download stats for song, video, podcast_episode * Update page title using JS to follow the user * Correct IP check behind proxy * Fallbacks for user data that may not exist yet or is empty * Remove hidden tags from catalog map * Missing Podcast from `object_count` table * Album::check() look for null prefix's so you don't get duplicates * Don't look at transcode_cache when downloading * Don't overwrite custom upload tags with the file tags * Streaming parameters may be lost depending on your link * Catalog actions are only performed on their media type (e.g. don't look for videos on music catalogs) * Missing translated catalog fields (e.g. %a %c) * Filter by allowed catalogs in more places * Dashboards would show very similar data * Simplify all statistical_graphs checks * WebDav browsing issues * Ampache Debug page didn't have all the possible boolean values to make pretty * Do not scrub title for RSS output * Repeating random play URL's could skip the first song * Send the final URL for play_url's instead of figuring it on the fly * Don't verify Podcast Episodes that don't have a file * Update song channels on tag update * ACL creation may lock you out without a system user * Recently played on the show_user pages was pulling things from other users and ignoring preferences to hide * Missing translate on update_album_artist looking for Orphans * Config * Colon instead of semi-colon * Corrected default value comments * CLI * export:playlist command help was incorrect * Get the website address from `fallback_url` * run:updateCatalogFolder and run:updateCatalogFile would always verify * webplayer * Visible shadow hightlight and replaygain button for light theme * Added back next / back keys in the playlist js * Search * Searching by different aliases could be ignored * SQL for Artist `catalog` searches * Don't try to search on bad rules. (falls back to empty rules which will show all songs) * JS could not load your search if you were using a rule alias * Subsonic * Forward the client ip instead the server ip using rewrite * Sharing some types of object * Filtering user and password ## Ampache 5.6.2-release ### Added (5.6.2) * Fork `https://github.com/scaron/prettyphoto` and add jQuery3 support * Added an empty example plugin to the docs folder AmpacheExample.php * CLI * New cli command `bin/cli show:version` (Print the Ampache version number) ### Removed (5.6.2) * Replace scaron/prettyphoto with fork to allow updates ### Fixed (5.6.2) * Checking for git updates without a forced branch * Update webplayer to fix a longstanding Google Chrome issue with playing flac * Being unable to view all your catalogs in the filter box * Prettyphoto would rewrite your link when clicking on pictures * Don't show an empty filter box if there are no valid filters * Some dynamic class properties * Beets catalog actions * Remote catalog and Subsonic catalog streaming ## Ampache 5.6.1-release ### Added (5.6.1) * Simplified transcode settings checks ### Changed (5.6.1) * Clean up the PlayAction class to make it a bit less complicated * Encode URL's with a + for segmented play URLs ### Removed (5.6.1) * Soundcloud catalogs ### Fixed (5.6.1) * mptre/php-soundcloud has been removed from github * Podcast Episode download link * Filtering passwords in some places before hashing * Catalog caches delete and add immediately when changed * Check isfinite before trying to apply replaygain on webplayer ## Ampache 5.6.0-release ### Added (5.6.0) * Subsonic * Add `type` and `serverVersion` to `` objects ### Changed (5.6.0) * Enforce raw format parameter on download links when not set * Set song channels to null instead of 0 when missing ### Fixed (5.6.0) * Config had a `:` instead of a `;` for a newline * Webplayer missing semi colons, next / back keys in the playlist js * Duckduckgo search links * Register action missing `catalog_filter_group` * LDAP DN lookup for group membership * Identify object names correctly for localplay playlist items * Parse URLs for democratic and random correctly in localplay playlist items * Make sure the webplayer identies non-media stream types as valid * Possibly unset Artist name in lyrics lookup * Allow access to public smartlists in Random * Share expiry date needed some reworking * Preferences template using a develop only function * Search * Use artist_map table for rating searches to find all related artists * Subsonic * Error's were not returning valid responses ## Ampache 5.5.7-release This release fixes issues when updating your databases from **really** old versions (< 3.9.0) ### Fixed (5.5.7) * Stop filtering items beginning with a "." during catalog import * Don't show the filter box if there aren't any filters for the page * Fix up a lot of issues upgrading from really old servers * Don't add Album maps for null Album Artist's * Filter actions on the alphabet form and the graph pages correctly * session_set_cookie_params options array * Check for statistical_graph settings * Fetch Seafile cover art * Album might get sent to the temp playlist and screw up on insert * A couple of issues with now_playing.php when enabled * RSS user lookup on now_playing * webplayer * `n` for next, `b` for back * Missing semi-colons * Subsonic * Allow empty search queries ## Ampache 5.5.6-release This release imports the API code cleanup from Ampache Develop which has fixed a lot of data issues. There will probably not be another big change to Ampache 5 as work has moved to Ampache6 but there will be more bugfix releases if needed. ### Changed (5.5.6) * Scrutinizer moved to php8.1 ### Fixed (5.5.6) * Spotify art collector (**AGAIN**) * get_now_playing `has_access` check * Malformed HTML for regular users in preferences sidebar * Missing translation on preferences sidebar * Default catalog_filter group could be missing on a new install * Gather genre tags when not an array * Display webp images * Check for a valid image extensions when uploading art * Templates for squashed branch with a default path ## Ampache 5.5.5-release This release fixes up all the issues I created with the bad release files as well as an art search issue I missed until after the release. ### Fixed (5.5.5) * Set etag for image cache * Spotify art collector * Double scrub string in catalog search rules ## Ampache 5.5.4-release ### Added (5.5.4) * Database 550005 * Add `song_artist` and `album_artist` maps to catalog_map ### Changed (5.5.4) * Update catalog map tables based on the catalog action * Force `b` and `n` for back, next in webplayer (was overwritten with `[` and `]`) ### Fixed (5.5.4) * Missing tables on a fresh install * Not filtering song_artist on album_artist browses * Don't use catalog_filter and rating_filter without a valid user * Uploaded/Manual Album Artist maps on tag update * Delete artist's from the catalog_map that don't have a song or album for that catalog * Set correct transcode `bitrate` and `mime` for songs on play_url calls * Save Track Order when viewing all the items * Use cache_target for cached song cleanup (was hardcoded to mp3) * RSS Feed generation with bad characters * Don't spam the artist description for each song * Show better Trending Dashboard section * Subsonic * Art for artist index arrays was missing * Search * SQL for Artist `catalog` searches * Make sure saved rules match the correct names on load * CLI * Don't try to update a database when the connection fails ## Ampache 5.5.3-release ### Changed (5.5.3) * Update copyright year in footer.inc.php * Localplay status and instance_fields function cleanup * Update some docker files to match current images * Allow adding streams to playlists (including rightbar) * webplayer * Another code rework, remove the old 'original' list * Shuffle is an action instead of a state of the playlist ### Fixed (5.5.3) * Hidden Genres shouldn't have a catalog * Streaming with certain parameters could not identify a session/user * Should be counting podcast objects in stats * Null artist->id on wanted pages * Search * Album 'other_user' favorite searches * Subsonic * Error if you didn't have data when using get_user_data * Response data might fall back to mp3 and not match the output format * webplayer * Reordering the list could lose track of items * Remove single item from list could create a weird list * Remove the final track when it's finished playing (if you've set that option) ## Ampache 5.5.2-release ### Added (5.5.2) * Check for upload_catalog before showing upload pages * Search * Class rework and many additional aliases, check the docs for [advanced_search](https://ampache.org/api/api-advanced-search) * Add `song_artist` as a search type (uses artist rules) * Add `album_artist` as a search type (uses artist rules) * Add `song_genre`, `mbid_artist`, `mbid_song` to album search * Add `song_genre`, `mbid_album`, `mbid_song` to artist search * Add `possible_duplicate_album` to song search * webplayer * Code cleanup and attempt to make it a bit less confusing ### Changed (5.5.2) * Do not overwrite a custom Artist/Album when updating from tags * Ignore case when comparing Genre * Show an error on share create failures * Pull some function back into the search class * When searching without rules treat it like a browse and return results unfiltered ### Fixed (5.5.2) * Tmp_Playlist::get_items may not order by the playlist id * Fix album time update when time is NULL * Transcoding format could be ignored (`encode_player_webplayer_target`) * Set the file extension based on expected transcode / download format * Don't look at the transcode cache when downloading a raw file * If you are transcoding redirect to the transcoded file * Download stats for song, video, podcast_episode * Set the file extension for URLs on generation * Don't overwrite artist art when searching for album art * Retrieve song art from tags the same way they are found ('invalid' art) * Searching from the search bar did not pickup up the rules for the search page * Upload artist, album and license selection * Don't show hidden Genres on object rows * Video needs get_f_link function * Playlists need to be in catalog_map table * Insert Podcasts more often in catalog_map * Subsonic basic auth may get filtered * Don't filter auth in the PlayAction if sent * Search * Correctly identify alias rule types * Bad SQL on 0 rating query for album/artist search * webplayer * Desired transcode format not being respected * Video types missing from supported types * Playlist sorting issues ## Ampache 5.5.1 I made a mistake in the release string so we need a new point release already! You will get this error when using the zip releases so we need to do it. At least on the plus side you'll get the latest translations. ### Added (5.5.1) * Translation Updates August 2022 * Grouping for label search items ### Fixed (5.5.1) * Release version string is incorrect and will tell you you have updates if you use the release files * Missing comma between label links on song pages ## Ampache 5.5.0 Private catalogs have been given a lot of love. This feature allows you to assign a catalog to multiple users instead of just one. Check out the [wiki](https://ampache.org/docs/configuration/catalog-filters/) for more information about this feature. **NOTE** Any user that has a private catalog will have their own filter group created which includes all public catalogs PHP8.1 has now been fixed up completely and is now fully supported. ### Added (5.5.0) * Update Copyright notice to 2022 * Added a new option 'Random Play' (shuffle) to playlists and smartlists * Add 'Recently Skipped' to user pages * Add Podcast Episodes to the browse pages and sidebar * Translate podcast episode state and some other missing ones * Allow using a smartplaylist in Democratic play * Allow podcast_episode table sort by `time` and `state` * Allow podcast table sort by `website` and `episodes` * Database 550004 * Add system preference `demo_use_search`, Use smartlists for base playlist in Democratic play * Add tables `catalog_filter_group` and `catalog_filter_group_map` for catalog filtering by groups * Add column `catalog_filter_group` to `user` table to assign a filter group * Migrate catalog `filter_user` settings to the `catalog_filter_group` table * Assign all public catalogs to the DEFAULT group * Drop table `user_catalog` * Remove `filter_user` from the `catalog` table * Search * Added more missing groups to search type lists * Added missing `song` (was `song_title`) to album searches * Add `podcast` as a search type * Add rule `title` * Add rule `podcast_episode` (Search by podcast episode name) * Add rule `time` (Episode length in minutes) * Add rule `state` (Completed, Pending Skipped) * Add rule `file` * Add rule `added` * Add rule `pubdate` (Episode Publication Date) * Add `podcast_episode` as a search type * Add rule `title` * Add rule `podcast` (Search by podcast name) * Add rule `time` (Length in minutes) * Add rule `state` (Completed, Pending Skipped) * Add rule `file` * Add rule `added` * Add rule `pubdate` (Publication Date) * Add `genre` as a search type * Add rule `title` * CLI * Add verify for podcast catalogs (fix time and size from tags) ### Changed (5.5.0) * Private catalogs have been migrated into [Catalog filters](https://ampache.org/docs/configuration/catalog-filters/) * Interface cookies for the sidebar state have new names matching their page and group * Made getID function required for library_item's * Update codeql-analysis.yml to v2 * When streaming a Democratic or Random item, redirect to the result * Hide 'is_true' boxes on search rows (you can't change it so why show it?) * Hide action buttons from random and demo webplayer lists ### Fixed (5.5.0) * The cookies for the interface sidebar had multiple issues holding and restoring status * Removed **A LOT** of FILTER_SANITIZE_STRING from code for PHP8.1 * Errors on empty values when loading the UI rows * Lots of docstring and code issues * Fixed up deleting plays (and now skips) on the user pages * Sorting playlist, user and smartlist names in search rows * SQL in get_tags when catalog_filter is disabled * A lot of browse filters were missing for certain object types * Don't try to load the playlist dialog from the webplayer when you can't add things * When using random/Democratic play send the additional parameters to the actual media * Respect play URLs with transcode_to instead of format * Updated example `docs/examples/inotifywait.sh` * Podcast_episode browse may sent a camel case argument * Null max_upload_size could still be counted as a limit * Search * SQL might have connected AND and OR incorrectly * Metadata search might have badly parsed input * Added aliases for some of the confusing search types * Subsonic * Checking parameters might return the error AND the empty response ## Ampache 5.4.1-release ### Added (5.4.1) * Put next (n) and back (b) shortcuts in the web_player * Allow `_` and `%` wildcards for hiding playlists (api_hidden_playlists) * Missing translations on CLI strings * Config version 62 * Added webplayer_debug (was previously undocumented/hidden) * Search * Add `track` to song search * Add `summary` to artist search * CLI * New argument for cleanup:sortSongs `-w|--windows` Replace windows-incompatible strings with _ * Add a table check function to admin:updateDatabase. This will repair missing tables/details ### Changed (5.4.1) * Only enforce `subsonic_always_download` for song objects * Always insert podcast source URLs. But mark them as skipped if out of date * When adding a podcast feed, sync everything * Don't trim search input (e.g. allow single spaces for search) ### Fixed (5.4.1) * web_player being unable to play different formats in some cases * Playlist download button missing ID * Truncate long podcast episode author lengths * Incorrect link on the albums page * Section on the information sidebar looking for the wrong cookie * Bad verify mod time check * SongSorter would get caught with % in your strings * Rating Match plugin may overwrite album rating * Artist getRandom using the wrong sql column name * Pocast episode time regex ## Ampache 5.4.0-release ### Added (5.4.0) * Translation Updates May 2022 * Search * Add `file` to album and artist search * CLI * New argument for run:updateCatalog `-f|--find` Find missing files and print a list of filenames * New argument for cleanup:sortSongs `-f|--files` Rename files and keep them in the current folder * New argument for cleanup:sortSongs `-l|--limit` Limit how many moves to allow before stopping * New argument for cleanup:sortSongs `[catalogName]` Name of Catalog (optional) * Database 540002 * Index `title` with `enabled` on `song` table to speed up searching * Index `album` table columns; `catalog`, `album_artist`, `original_year`, `release_type`, `release_status`, `mbid`, `mbid_group` * Index `object_type` with `date` in `object_count` table ### Changed (5.4.0) * Moved to php-cs-fixer 3 * Update from tags now shows an 'Error' status if there was an issues reading the file ### Fixed (5.4.0) * SQL for random artist with mapping * SQL for servers < 5.0.0 might try to insert into a missing table * Respect grouping for song_count searches * Autoplay in xbmc localplay and conform to localplay api * Ungrouped albums were forced into groups * Artists array should overwrite artist_mbid arrays that are smaller * Some empty globals relating to user * More work on the forked Jplayer playlist code when using `play last` * DAAP play URLs * Single disk download links on group pages * CLI * cleanup:sortSongs was broken (It actually works again) * cleanup:sortSongs removes incomplete copied files after failure ## Ampache 5.3.3-release ### Added (5.3.3) * Remove duplicates and order largest to smallest for art search * Allow update_from_tags for a single Song from it's page * Search * Add `song_title` to album search * Add `album_title` and `song_title` to artist search * Add `orphaned_album` to song search ### Changed (5.3.3) * Default art_search_limit raised to 15 * web_player shuffle improvements * Current selected track will become the first track and everything else shuffled below it * Playlist isn't automatically played so if a song was playing, it will continue to play ### Fixed (5.3.3) * Speed up stream_playlist generation by chunking into blocks * Make sure there is an object_id to fill in update_530006 * Remove song mapping on delete * Make sure podcast descriptions don't overfill the column * Clean dead total wasn't returned on completion * Searching for albums with '# Played' with grouping enabled with album_map * Adding a new xbmc localplay * Catalog type filter in get_top_sql * Subsonic * Fixed the query searches (Again) based on the wildcards different clients may send * Song discNumber was sending the MAX disk instead of the actual disk * getPlayQueue doesn't change back to miliseconds from seconds ## Ampache 5.3.2-release Some QoL fixes here with some initial SubSonic, Search and that database column again! ### Added (5.3.2) * Look for orphaned maps to delete. * Get server timezone for get_datetime (date_default_timezone_get()) * Allow deleting played activity from the ui and count using a function (Require: 100) ### Changed (5.3.2) * Updated the translation gathering process a little * Organized the play/skip counting into it's own function * Update artist from tags needs to update albums first * Subsonic * Only search for song title instead of everything * Add starred to directory elements ### Fixed (5.3.2) * Format on an empty album would complain in the log * Update from tags might not remove the old song artist * Migrating to a new album would leave old album maps * Artist search query with mapping was very slow * Database column check not included in 5.3.1 correctly * Subsonic * Get recently played * Fixed up search queries using "" (wrapping in quotes means exact search) ## Ampache 5.3.1-release There were a few reports of some databases missing an important column. This release makes sure it's there. ### Added (5.3.1) * Docker compose files to help create a local dev environment (read docker/README.md for more info) * Added php8.1 to composer (**still considered unstable**) ### Changed (5.3.1) * Began rework of Subsonic modules ### Fixed (5.3.1) * Database missing rsstoken column in the user table * gather-messages.sh was finding lots more strings than it needed * Query sql with ambiguous ID * New song import might not map all the artists * Catalog query missing a comma ## Ampache 5.3.0-release This cycle we have added support for multiple Album and Song artists. This allows multiple artists to be part of a single song/album object and is created from file tags. Check out the [wiki](https://ampache.org/docs/configuration/multi-artist/) for more information about this feature. The old and long ignored module [jPlayer](https://github.com/jplayer/jPlayer) has been forked into the base Ampache code. There have been a few fixes and changes to the module to make the webplayer a lot better to use. ### Added (5.3.0) * Additional xhtml templates added * Parse lots more WMA (ASF) file tags * Add play next and play last to radio station rows * Additional option for artist pages 'Show Artist Songs' * Add some missing tag options for mpc files * Allow manually syncing Artist name, year formed and place formed from musicbrainz (if it has an mbid) * Notify and allow updating Plugins when updates are available * You can now unhide a tag from the 'Hidden' page for Genres * This will delete previous merges but it will not retag your songs (update from tags to fix that) * Config version 61 * Add disable_xframe_sameorigin (allow disabling "X-Frame-Options: SAMEORIGIN") * Disable catalog_verify_by_time by default * Database 530016 * Create `artist_map` table and fill it with data * Create `album_map` table and fill it with data * Use `song_count` & `artist_count` using `album_map` * Drop id column from `catalog_map` table and alter object_type charset and collation * Alter `album_map` table charset and engine to MyISAM if engine set * Alter `artist_map` table charset and engine to MyISAM if engine set * Make sure `object_count` table has all the correct primary artist/album rows * Convert basic text columns into utf8 to reduce index sizes * Remove `user_activity` columns that are useless * Delete duplicate rows on `object_count` * Compact mbid columns back to 36 characters * Compact some `user` columns * enum `object_count`.`count_type` * Index data on object_count * Use a unique index on `object_count` * Compact `cache_object_count`, `cache_object_count_run` columns * Add `show_album_artist` and `show_artist` preferences to show/hide Sidebar Browse menu links * Search * Add `songrating` to album search (My Rating (Song)) * Add `songrating` (My Rating (Song)) and `albumrating` (My Rating (Album)) to artist search * Allow empty/null searches for all mbid searches * Allow empty/null searches for label searches * Add `song_count` to album and artist search * Add `album_count` to artist search * Add `myplayedartist` (Played by Me (Artist)) to album search * Add `song_artist` to album search * Add alias `album_artist` to album search for `artist` searches * Add `recent_added` to album search ### Changed (5.3.0) * Clean up artists with a duplicate MBID (Use the lowest artist id) * Delete cached recommendations instead of trying to update (Really slow) * Artist::check uses MBID on lookups as well as name * update_from_tags: Only update counts, tags and garbage collect after changes found * Use albums instead of songs for catalog verify actions * Expand search sidebar menu and collapse information without cookies * Moved all the extended functions into the forked jplayer module * Instead of skipping duplicate songs on import, disable them * jPlayer (Webplayer): * Shuffle now follows the currently playing track (If playing) * Shuffle also does not track the old playlist so you can't undo a shuffle * Subsonic * Check for art instead of always sending an art attribute ### Removed (5.3.0) * Search * removed mbid group sql from `possible_duplicate` and `possible_duplicate_album` ### Fixed (5.3.0) * VaInfo time for size/playtime_seconds * Tag arrays for Mbid and Artists lookup * Deleted item tables would not record some deletions * Updating the artist name would always migrate data when not required * Artist::check would always create an artist object with readonly set * Genres would not update the parent (Song->Album->Artist) whan using update from tags * Random sql that uses search rules * Use configured Ampache temp directory in Seafile catalog * Prepare media before update from tags (Seafile needs to download the file first) * Seafile catalog checks for a local file before downloading it again * Delete custom_metadata when removed from the object * Artist Garbage Collection was way too slow * Album and Artist count value sql * Don't remove Genre tags when they have been merged (hidden) into a different tag * Don't delete merged (hidden) Genres from the tag table * Album song_artist_count not calculated correctly * Grouping with mbid_group was missing making some albums not possible to view * Display and hide of artist columns in some pages based on count * Clean and verify would count totals based on all items instead of item type * Missing strings from xhtml templates * Album grouping for getAlbumSuite with null values * Set ratings for all album disks (if grouping enabled) for ratings and flags * Issues when you don't have an album artist tag * Correctly set null values on library_item edits * Search for song art might have sent a Song object * Fix missing preference on musicbrainz plugin * Disable/enable catalog * jPlayer (Webplayer): * Fixed moving items in the playlist * Fixed adding after the current playing track * Fixed logic behind the index and order between the HTML and the JS lists * Search * played search for album and artist was including your user in the results * other_user artist search sql * Subsonic * Artist was missing starred status ## Ampache 5.2.1-release ### Added (5.2.1) * Translation Updates Jan 2022 * Count tables on create and delete actions * Set allow-plugins in composer.json * Improve description of rss feed to make each play more unique * Wait 30 minutes between catalog updates before running update_counts * On database connection failure, go to test.php * Search * Added no_tag as a possible search item (song, album, artist) * Document the alias names of search rules (docs/API-advanced-search.md) * Add playlist and playlist_name search to artist types ### Changed (5.2.1) * AmpachePersonalFavorites: double the playlist title height * Move get_f_link from playlist/search into playlist_object * Make some functions that do the same thing use the same variable names * Don't optimize tables when doing full_service catalog updates * Use parameters in search queries instead of printing them into the query * Logout action requires a session id now to log out * Update mapping more often after catalog actions * Album check function added mbid_group to lookup * Support database upgrades from version 350008 (Ampache 3.5.4) * Remove additional 'Details' string from song/video and radio pages * Tag value is being extra filtered in the edit screen * Hide the login link when using simple_user_mode and no auth is set **note** this does not stop you logging in with /login.php * When not using auth, keep recording stats for system user plays * Hide username column from Recently Played when not authed as a user ### Fixed (5.2.1) * Lowercase package names in composer * CLI add user * Demo Systemd timer files WantedBy * Some missing garbage collection for some tables * Phantom html table row in show_catalogs page * Grouping albums with special characters * Searching albums with special characters * Lots more PHP8 runtime errors * SQL for artists in catalog_map * Typo in URL for update_all_file_tags * SQL error in database update 500013 (Not fatal) * Don't garbage_collect tags after merging * Create art URLs correctly when using rewrite rules and no auth * Respect sidebar_light preference when no cookie is present * Don't try to create users that already exist * Add/Edit catalogs in the UI missing filter_user * Search * possible_duplicate was grouping too much together * Subsonic * Jukeboxcontrol didn't send an index to the client ## Ampache 5.2.0-release Ampache 5.2.0 (and all future versions) now support multiple API versions. This means that you can send your handshake with a specific version (e.g. 390001, 440001 or 5.2.0) you will be sent API3, API4 and API5 responses in return. To change from API3 to API5 you can send a ping with a new version parameter to update your session (or send goodbye to log off and start again.) API3 is not recommended for use outside of running old applications and it is recommended that you turn off API versions you don't use. ### Added (5.2.0) * Get image from more tag types * Translation Updates Nov 2021 * Added the ability to play random songs from a playlist with a play URL * Update AmpacheRatingMatch.php to allow writing ratings to file tags * Enable 'Save ratings to file tags when changed' on the plugin page * write_tags must be enabled in the config file * Config version 59 * Removed overwrite_tags (It doesn't do anything) * playlist_art now true by default * Database 520005 * Make sure preference names are always unique * Add ui options ('api_enable_3', 'api_enable_4', 'api_enable_5') to enable/disable specific API versions * Add ui option ('api_force_version') to force a specific API response (even if that version is disabled) * Add ui option ('show_playlist_username') Show playlist owner username in titles * Add ui option ('api_hidden_playlists') Hide playlists in Subsonic and API clients that start with this string * Add ui option ('api_hide_dupe_searches') Hide searchs in Subsonic and API clients with the same name as playlists (and both owned by you) ### Changed (5.2.0) * Don't try to return objects that aren't there sometimes * Update catalog counts before returning API data * Fix preferences for system and users after each update * Light theme hover color for sidebar * Changed some cookie's from Strict to Lax to fix some bugs * Check ldap group by username instead of DN * Allow gathering random art from playlist contents instead of generating on page load ### Removed (5.2.0) * Remove AssestCache class and functions (unreliable) * When recording stats don't ignore based on a hardcoded gap ### Fixed (5.2.0) * test_image function would fail without php-gd (which is optional) * Searching for images in files could not return the files you found * Get rid of that annoying space on api key text in the WebUI * Catalog map for artist tables * ratingmatch_stars value 5 wasn't setting itself * filter_has_var is returning false in FCGI enabled PHP * Allow catalog manager to manage a catalog in the WebUI * When using custom metadata don't overwrite managed values * Missing (and duplicate) preferences for users and system * Size 0 when reading file tags * Disk and totaldisks for wma files * Genre for quicktime/m4a files * Last.fm login impossible with strict cookies * Some double scrubs of text in image links * Updating playlist user would only update the name and not the ID * garbage collection for playlist images * Stats when skipping songs with 0 plays * More PHP8 runtime errors * Fixed single song random playback using a play URL * Make sure we error if php_intl module isn't found ## Ampache 5.1.1-release ### Added (5.1.1) * Clean cache files that aren't in the database * Translate random and democratic in the webplayer * Add transcode_flv to config * Add playlist, playlist_name to album searches * Send the user to an error page when the config wasn't written * Config version 58 * Removed subsonic_stream_scrobble * Database 510005 * Add `subsonic_always_download` to preferences ### Changed (5.1.1) * Rebuild aurora.js modules from source * Perform waveform and cache on disk the same way * Move song waveforms on load if in the wrong folder * Make genre searches faster with a join instead of select in * Send a flat file path for zips when using browse/playlist ### Removed (5.1.1) * Podcast links on the dashboard removed (There is no link for them to go to) * Remove subsonic_stream_scrobble from config and make it per user (subsonic_always_download) ### Fixed (5.1.1) * Use addslashes for translations in html5 player * Send the generic client name for localplay again * Use the set permission level for localplay access * Webplayer playlists would become out of order after moving/adding * Cache process could cache the wrong song * Missing user id in search * Grouping sql in search when not grouping albums * Setting Localplay instance would not update the preference * Advanced search (Random) wasn't working in php8 * Fixed returning the correct objects for advanced search (Random) * Some objects would add transcode_to to their play URL * Set system prefs for mb and tadb plugins * Updating a channel in php8 * Get tmp_playlist by session (could get confused and never retrieve items) * Setting cookies and session details on remember_me sessions * Set the catalog parameters for seafile catalogs * Database updates for php8 * Remember me session cookie error when recreating a new session * ampache.sql script had AUTO_INCREMENT data it didn't need * Subsonic * Get the artists for a single catalog correctly * Browse highest used the sql differently to the UI ## Ampache 5.1.0-release ### Added (5.1.0) * Split search items in WebUI into optgroup categories * Add en_AU as a locale * Require confirmation on enable/disable user links * Add f_size to video parameters * Record plays for live_streams and playlists in object_count * Add podcast to the object_count table and add missing rows * Store playlist art in the database * Show the art on the main playlist page * Allow reset and change of playlist art * Pick a random art item on reset and store * Add a simple continue button for these dialogs * Fix up display of image showaction * Subsonic art looks for the playlist art the same as UI * Check for `?` in a query before trying to use parameters * Add the current php version to the debug page * Cache bust some frequently updated assets * Clear asset cache during AutoUpdate * Gather Artist recommendations on play/Stat insert * Add Top Tracks and Similar Songs to Artist pages * Extend run:updateCatalog --update to update artist name matching mbid * Add duplicate_mbid_group to album searches * Restored missing artist search to the header searchbar * Press enter on the list header to allow changing page number * Translation Update October 2021 * Config version 57 * NEW config options * allow_upload_scripts: Allow or disallow upload scripts on the server * Database 510004 * Add `podcast` to object_count table * Add `podcast` to cache_object_count table * Add `live_stream` to the rating table * Add `waveforms` for podcast episodes * PHP8 Support * Use array_key_exists to skip runtime errors * Fix undefined variables in templates * Errors with wanted/missing lookups and templates * Ajax handler updates and fixes * Set default and fallback values more often to avoid errors * Query errors would kill the whole page * Stop trying to read unreadable files * Explode key pairs when there is something to explode * Don't try to update preferences that don't exist * Errors when not logged in trying to load a session * NEW files * Test scripts: codecoverage.sh, stan.sh, tests.sh ### Changed (5.1.0) * Always update time when updating songs and videos from tags * Merge config 'ratings' and 'userflags' checks into ratings. (drop userflags) * Split search items into groups to help make it a bit clearer * Rearranged the list of search items * Simplify PlayAction code a bit and use filter_input * Speed up update_counts for missing object_counts * Enable Podcasts on new installs * Delete composer.lock * bin/cli run:updateCatalog with no options now does clean, Add, Verify and gather for all catalogs * Make category headers a bit nicer * Check for valid browse types before loading nothing * Browsing Genre defaults to artist * Skip albums that match the exact title in wanted search * Translate all database description strings on updates * Hi-res blankalbum/placeholder image (1400x1400) * Allow larger artist summary with a scroll. linebreak place, year formed * During garbage collection clean up empty strings with NULL * Subsonic * Disable stat recording on stream calls (disable subsonic_stream_scrobble in config to enable) ### Removed (5.1.0) * object_cnt: use total_count and total_skip instead of calculated properties * f_title: use f_name * Scrub CSS with Autorprefixer ### Fixed (5.1.0) * SQL query error for Random Album in certain config setups * Album suite needed even without grouping * Stop scrubbing the podcast title so hard (so many `&`'s) * Use total_count and total_skip columns for searches (Fixes searching with 0) * Can't change view limit on Android * Localplay instance could be 1 * Missing add_type variable on ACL pages * Light theme follow button color * Missing CSS on list headers * Templates with missing variables * Fix Stream_Playlist::_add_URLs to stop mismatched query values * Fix stream.php downloads not sending their URL parameters to PlayAction * Garbage collect object_count for the possible items * Do not drop catalog in table podcast_episode when it doesn't exist yet * AAC codec from itunes doesn't provide a bitrate_mode (assume vbr) * bin/cli ExportPlaylistCommand had out of order args * bin/cli Allow database updates when out of date * Fix computeCache for playlists * Logic of SQL query to get random albums * Simplify the join code for some queries * Don't force random for smartlists when you turn it off * Empty release_date when updating videos * Chrome errors where Content-Disposition has a comma (,) * Remove subtitle in stream_playlist if empty * Fix options and bitrate selection for stream.php requests * Scrobbles from Song::can_scrobble * Default preference list * MusicBrainz Artist Id could have been replaced with the Album Id * Artists being duplicated when feat. another artist * Don't let a non-critical update fail DB update * Search for 'played' albums and artists * Commands loading plugins from cli might not have a user * Dashboard links to podcast episodes and art * Lots of issues in the webplayer which only supported song links * Clean up deleted user date from all tables * Waveforms for podcast episodes * Subsonic * Trim quotes (") for Subsonic searches (some clients add them) * Support exact (lucene) searching when using quotes (") * Browse by folder is fixed * Faster browse queries for all types * Fix catalog browsing and loading library ## Ampache 5.0.0-release Ampache 5 is here and it's big! * Check out [Ampache 5 for Admins](https://ampache.org/docs/old-information/ampache5-changes) * As well as [Ampache 5 for Users](https://ampache.org/docs/old-information/ampache5-for-users) * The bin folder has had a major [rework](https://ampache.org/docs/help/troubleshooting/cli) * You can pre cache files using [Transcode Caching](https://ampache.org/docs/configuration/transcoding/transcode-caching) **IMPORTANT** instead of using date() we are now using IntlDateFormatter and your locale to identify formats. This means that 'custom_datetime' based on the date() format is incorrect and will look weird. Look here for the code to change your 'custom_datetime' string [()] This means Ampache now **requires** php-intl module/dll to be enabled. **IMPORTANT** For new installs default database charset/collation and table engine have changed * Engine MyISAM => InnoDB * Charset utf8 => utf8mb4 * Collation utf8_unicode_ci => utf8mb4_unicode_ci If you want to keep utf8 make sure you set it before running updates. * To keep the current collation/charset update your config file * Set `database_charset = "utf8"` * Set `database_collation = "utf8_unicode_ci"` ### Added (5.0.0) * Private catalogs! You can now set a public or per user catalog for your music folders * Cache transcoded files before a user requests them with [Transcode Caching](https://ampache.org/docs/configuration/transcoding/transcode-caching) * Added a CONTRIBUTING.md file * php-intl is now required for translation of date formats into your locale * Added %R (Release Status) to catalog pattern matching * Add ability to hide the Song Artist column for Albums with one Artist * Add ability to browse albums by Original Year * Add ability to hide the licence column on song pages * A helper index.php has been added to the old project root with directions to help * Show the country and Active status (Generated tags are assumed active) on label rows * Podcast_Episode show episode art for podcast mashup allow sort by date * Save a search or Smartlist as a regular playlist * New option to refresh a Playlist from Searches with the same name * Option to change the playlist owner when editing OR importing * Set "X-Frame-Options: SAMEORIGIN" on login page * Added the ability to export database art when local_metadata_dir is enabled * Save more types of thumb to the local_metadata_dir when enabled * Inform with a "Not Found: podcast" when you haven't created a podcast catalog * Added CatalogUpdate import command to the WebUI (Import = Add + playlist imports) * Search changes * Add 'possible_duplicate', 'recently_played' to song, artist and album search * Add 'catalog' to artist and album search * Add 'favorite_album', 'favorite_artist' to song search * Add 'release_status' to album search * Add 1, 5 and 10 to the Maximum Results limit * Database 500015 * Add `song_count`, `album_count`, `album_group_count` to artist table * Add `release_status`, `addition_time`, `catalog`, `song_count`, `artist_count` to album table * Add `mbid`, `country`, `active` to label table * Add `total_count` and `total_skip` to album, artist, song, video and podcast_episode tables * Add `catalog` to podcast_episode table * Add `filter_user` to catalog table * Add `total_count`, `episodes` to podcast table * Add `username` to playlist table * Create catalog_map table (map catalog location for media objects) * Create user_playlist table (Global play queue) * Create user_data table (One shot info for user actions) * Create deleted_song, deleted_video and deleted_podcast_episode tables for tracking deleted files * NEW database options * use_original_year: Browse by Original Year for albums (falls back to Year) * hide_single_artist: Hide the Song Artist column for Albums with one Artist * show_license: Hiding the license column in song rows * hide_genres: Hide the Genre column in all browse table rows * Config version 56 * NEW config options * composer_binary_path: Override the composer binary path to distinguish between multiple composer versions * write_tags: Write tag changes to file (including art if available) * art_zip_add: Include Album Art for zip downlaods * catalog_filter: Allow filtering catalogs to specific users * catalog_verify_by_time: Only verify the files that have been modified since the last verify * cache_path: The folder where the pre-transcoded files will be stored * cache_target: Target audio format for the cache * cache_remote: Remote catalogs will cache every file so this is handled separately * catalog_ignore_pattern: Allow you to ignore audio, video and playlist files with a regex * NEW cli commands * `run:moveCatalogPath`: Change a Catalog path * `run:cacheProcess`: Run the [cache process](https://ampache.org/docs/configuration/transcoding/transcode-caching) * `export:databaseArt`: Export all database art to local_metadata_dir ### Changed (5.0.0) * get_datetime(): use IntlDateFormatter to format based on locale. [()] * Renamed 'Tag' strings to 'Genre' * Changed sidebar back to browse for artist/album * Moved sidebar mashup pages into their own 'Dashboards' section * Move artist counts (song, album) to a DB column * Global counts are calculated after catalog changes instead of dynamically * Display userflag with star ratings * Always put year in Spotify art search if available * Imported playslists don't add the extension to the title * Visually crop images from the centre instead of resizing into a square * Display release year if it doesn't macth original_year. e.g. 'Back in Black (2010)' * Don't round the average rating to an integer * Replace mt_rand with random_bytes for random token generation * Move user bandwidth calculations out of the user format function into the user_data table * All localplay links use the type (e.g. mpd/upnp) as the agent to fix muti-client access * updateCatalog now implies add when using -i / --import by itself * Playlist Import checks for playlists by your user only in the UI (System for the cli) * Plugins: Use only https for building gravatar URLs * Scrobble actions now check for the exact time as well (different agents or scripts would insert) * If you call a play URL without an action we assume stream * Use ISO 8601 date for podcast episode pubdate display * Database tables default to InnoDB engine with utf8mb4 charset & collation * Subsonic * Wait a few seconds before allowing scrobbles to avoid collisions * Shift the last music play if gap is bigger than 5 repeated plays (over night, etc) ### Removed (5.0.0) * Take out the random items (except random search) from the main sidebar (use the playlist on the rightbar instead) * 'Find Duplicates' and related pages have been removed. Use 'Possible Duplicate' searches instead * 'Genre' and 'Missing Artists' removed from the top search bar * Take out the info icon from the song row; just click the song link * Take song artist out of the album edit popup * File tag reading for Band/Album Artist * Corrected album_artist collection and added missing tags to vorbis, aac and id3v2 * Removed links from album list headers when split by release type * REMOVED config options * write_id3: Use write_tags * write_id3_art: Use write_tags ### Fixed (5.0.0) * Delete duplicates from song table * Mashup page for podcast_episodes * Searching by Genre needed a query overhaul * Album groupings are the same everywhere when album_group is enabled * Unknown (Orphaned) groups all unknown files into one artist and album * Album groups for ratings and userflags * SQL queries regarding rating order and grouping of mutliple users * Ensure valid media is found before inserting into a playlist * Searching by Genre needed a lot of updates to speed up and correct * Bump phpmailer/phpmailer from 6.4.1 to 6.5.0 (#2957) * Groupings for albums and add original_year to grouping * Editing album titles with prefixes * CSS fixes for light theme * Shares didn't insert into object_count correctly * Repair missing rows in object_count after catalog updates * Browse / Mashup by podcast_episode * Sorting for a lot of browse pages that used arguments * Refreshing the details after editing an object didn't include browse aruments * Get the correct total artist_count for albums when grouped * Some buttons and links in the light theme needed extra CSS * Updated the inotifywait.sh example to stop it trying to add the same file multiple times * Translations could break JS with apostrophes * Playlist imports with an empty web_path would never work * Playlist imports were importing nothing * List preferences didn't allow null values after being set (Personal Favorites plugin) * When using album_art_store_disk the art lookup was hardcoded for jpg * Generating thumbnails wouldn't work with album_art_store_disk enabled * Updating config values for spotify_art_filter and art_search_limit would not keep your value * Delete podcasts and radio streams when deleting a catalog * Collect recommendation garbage correctly * Empty release date when updating a video would fail * Scrub out some link titles that can be abused by uploads * Subsonic * Support a global user playqueue with getplayqueue, saveplayqueue * Incorrect header being set on art requests * averageRating wasn't correctly cast for json * bookmark JSON was not correctly converted ## Ampache 4.4.3-release ### Added (4.4.3) * Catalog::update_counts to manage catalog changes * Gather more art files from your tags * Allow RatingMatch plugin to rate Album->Artist (Originally Song->Album->Artist) ### Changed (4.4.3) * Calculate MP3 stream length on transcode to avoid cutting it off early ### Removed (4.4.3) * Don't apply an album artist when it isn't distinct * MySQL faq isn't needed during install now that PHP 7.4 is a requirement ### Fixed (4.4.3) * CVE-2021-32644 * Identifying a distinct album_artist query wasn't great * Don't return duplicate art while searching file tags * SQL query in random::advanced_sql was ambiguous * Filtering random and search page type element * NowPlaying stats would be overwritten when they didn't need to be * Subsonic * getNowPlaying was unable to return playing media or the correct time * createShare would not set the object_id correctly and ignored expires value ## Ampache 4.4.2-release ### Added (4.4.2) * Larger artist images when you don't have a text summary available * Expanded artist, album and podcast thumbnails to reduce blank space * Update album tags first when you update artist tags ### Changed (4.4.2) * Simplify flagging/rating multi-disk albums * Subsonic * just send getmusicfolders music folders * When calling createPlaylist, assume that the list needs to be empty first ### Fixed (4.4.2) * Require a valid database hostname instead of assuming localhost * A valid transcode_cmd is required to transcode media * Subsonic * Clients might send you a file path of Artist art instead of the id * Strings don't need json conversion checks * Send the cover art id for playlists * Check for artist and podcast prefixes on art id's * Bugs when converting between SubSonic id and Ampache id * Assign roles based on preferences (fixes jukebox, podcast and share roles) * CreateUser could overwrite admin access level * UpdateUser didn't write the access level * don't return null Genre counts * fix getting artist indexes for large libraries * Don't get null playlist objects from the DB * Using 'Save Track Order' would not apply the offset * Vorbis/Ogg comments use 'organization' for publisher and 'track_number' for track * Automated Label creation when updating from tags * Grouped album downloads and rightbar actions * Preference::get_by_user was caching into a single value * A user who owned a playlist was unable to reorder (but could still save the order) * When creating shares, don't allow secret to be longer than database limit (20) * Album full name wasn't being used in some places * Tag::get_tag_objects was not grouping albums * Return integers for tag counts * rmccue/requests CVE: CVE-2021-29476 * PHPMailer/PHPMailer CVE: CVE-2020-36326 ## Ampache 4.4.1-release ### Added (4.4.1) * If you have an MBID in your artist, use that for last.fm queries ### Changed (4.4.1) * Updated composer dependencies * Default podcast_keep and podcast_new_download preferences are set to 0 (unlimited) ### Removed (4.4.1) * Delete 'concerts_limit_past' and 'concerts_limit_future' database settings. ### Fixed (4.4.1) * Grid View shouldn't change the artist image * Catalog Update -u (gather last.fm info) wasn't getting an ID list correctly * Album::get_random_songs not returning id's * Bookmark::get_bookmarks typo for get_bookmark_ids * Sorting album browses by artist name could fail with mysql * Subsonic getPlaylists should always send a user * Album browsing SQL didn't include Artist name in grouping * CVE-2021-21399: Unauthenticated SubSonic backend access in Ampache ## Ampache 4.4.0-release Keep an eye on the incoming changes to develop at [Ampache-Next-Changes](https://ampache.org/docs/old-information/ampache5-changes) ### Added (4.4.0) * Write metadata to mp3, flac and ogg files. Requires metaflac and vorbiscomment installed on Linux. * Write images to mp3 and flac files. Also requires metaflac on linux. * File tags can be updated from catalog management page. * Configurable settings for "Gather Art". * Configurable art search limit. * User selectable artist and year filter for Spotify album searches * User selectable limit for art searches. * Generate rsstokens for each user allowing unique feed URLs * Allow setting custom database collation and charset without overwriting your changes * rsstoken: Identify users by token when generating RSS feeds * Run garbage collection after catalog_update.inc 'clean' or 'verify' * Add duration to the table headers when browsing playlists and smartlists * Add time and duration to albums, artists instead of calculating from songs each time * Allow setting a custom background on the login page * Musicbrainz search icon on Artist, Album and Song pages * Update missing album artists on catalog add * Add R128 Gain adjustments * Persist replaygain setting as a cookie * Support for image per song * Format XML output using DOMDocument * Subsonic - shift the current track start time when you pause/resume * Config version 49 * NEW config options * hide_ampache_messages: We sometimes need to talk and will show a warning to admin users. Allow hiding this * NEW search options (also available in Api::advanced_search) * last_skip (artist, album, song) * last_play_or_skip (artist, album, song) * played_or_skipped_times (song) ### Changed (4.4.0) * Stop logging auth/passphrase strings * Add Y scrolling to the current playlist box (rightbar) ### Fixed (4.4.0) * Escape filepaths when removing from database * Regex in config for additional_genre_delimiters * Grid View option was backwards * Replaygain issues in the webplayer * Per disk actions for grouped albums (e.g. play just that disk) * Catalog removal needs to run garbage collection * Recognize opus when reading tags * Regex in config for additional_genre_delimiters * SQL query for smartlists not joining the OR correctly * Searching with bad rules will return no results instead of everything * Check the 'unique_playlist' option in more places * When you haven't set an active localplay nothing was picked * Set time for artists that are only albums * Don't hide rss generation when you haven't got a key * Podcast episode durations that use seconds were converting into crazy lengths * Playlist and Smartlist check sql simplified * Subsonic - Json clients need their playlist entry to always array (single item lists) ## Ampache 4.3.0-release This version of Ampache seeks to bring in some of the great changes going on in develop while we work on v5. There also a few API changes to enable a bit better control for older clients. ### Added (4.3.0) * Check limits on democratic playlists (> 0 && < 3000000000) * Show an error for out of range democratic cooldowns * Subsonic - Force a default format (xml) instead of none * Added back the agent string in recently played (for admins) * Replace 'Admin' icon with padlock in sidebar when access check fails. (Hide this new icon with 'simple_user_mode') * Disable API/Subsonic password resets in 'simple_user_mode' * New option -m 'move_catalog' added to catalog_update.inc * More default preferences to the refill/check functions * More functions to search (album artist, mbid) * Config version 46 * NEW config options * hide_search: If true do not include searches/smartlists in playlist results for Api::get_indexes, Api::playlists * NEW plugin: * 'Personal Favorites'. Show a shortcut to a favorite smartlist or playlist on the homepage * 'RatingMatch'. Raise the minimum star rating (and song loves) of artists and albums when you rate/love the song ### Changed (4.3.0) * Scrobble plugins fire after stat recording * Split art search by 5 instead of 4 * Increase AutoUpdate check time and don't force it on each logon * Updated CSS and separated mashup covers from other types * Don't use mail_enabled for registration checks * WebUI - Browse by album_artist instead of single artists * Better sorting for playlists using sort_tracks * Don't allow duplicate podcast feeds * Updated the gather art process * Searches will order by file/name instead of id (unless random) * Updated ampache.sql * Updated composer requirements * Default false config option text changed to true (no more typing, just uncomment!) * Compressed PNG and JPG images ### Removed (4.3.0) * Disabled the jPlayer fullscreen shortcut (ctrl + f) * Remove system preferences from the user that aren't classified as a system preference * Stop setting open_basedir from fs.ajax * Concert/Event pages (dead Last.fm API) * Don't run reset_db_charset on DB updates * Disabled browse_filter for new user accounts ### Fixed (4.3.0) * Speed up the playlist dialog boxes (Add to playlist) * Fix SQL query for Stats::get_newest_sql * Session cookie creation * Multiple auth attempts in the same second would not return a session * Mail auth was not checked correctly * Gather art correctly for update_file.inc * set bitrate correctly if using a maxbitrate in play/index * MP3's would not get a waveform without editing the config * Recently played respects your privacy settings * Graph class sql grouping * **MAJOR** UPnP fixes * Upload catalog rename logic ## Ampache 4.2.6-release ### Changed (4.2.6) * Ignore ALL tagged releases (e.g. 4.2.6-preview 4.2.6-beta) * Don't check the times in save_mediaplay plugins * Plugins should only have 1 category * Update Composer requirements ### Removed (4.2.6) * Some system preferences were added as user preferences ### Fixed (4.2.6) * Search original_year query * Replaygain was missing from the webplayer * Check albumartist in get_album_suite queries * Recently played queries check for privacy options * Headphones plugin fix for missing mbid's * Duplicate downloads recorded in play/index * Subsonic video HLS stream and json values * Block more password resets when using simple_user_mode * Upload catalog rename logic ## Ampache 4.2.5-release ### Added (4.2.5) * Use _add_URLs when building a stream playlist ### Changed (4.2.5) * Removed the forced random from search * Put the browse header at the top above plugins * Make the webplayer class a bit faster at deciding what to transcode ### Fixed (4.2.5) * Ampache Debug, cron.lib.php missing from init * Slow playlist creation when inserting a large amount of items * Stream_URL properties were inconsistently applied * Fix streaming when play_type is Democratic * Save your limit and random settings when creating a smartlist ## Ampache 4.2.4-release ### Added (4.2.4) * "Random" tickbox added to search pages ### Changed (4.2.4) * Searching 'original_year' will now fall back to 'year' if no release year is present ### Fixed (4.2.4) * User was being created but you were told it isn't * The search pages remember your limit correctly * PHP exception when < 7.1 * Correct "Recently Added", "Recently Updated" searches * Check that song can be inserted before inserting the remaining rows * Logic in stat recording when skips occur * Don't query for null tag ids ## Ampache 4.2.3-release ### Added (4.2.3) * Subsonic Generate errors for objects missing art ### Changed (4.2.3) * Don't mark short songs as skipped * Subsonic Stop converting strings to ints in JSON responses ### Fixed (4.2.3) * User registrations * Workaround null values for new columns in search table * Check release_type length before inserting into the database * Ensure Album Artist is set correctly on songs * Subsonic Fix callbacks for similarSongs2 and artistInfo2 * Subsonic getCoverArt fixes ## Ampache 4.2.2-release **DATABASE CHANGES** You can now force a default collation and charset on your database. If you choose to use utf8mb4; Ampache will convert your table engine to InnoDB to handle the extra bytes. ### Added (4.2.2) * Numeric 'Played/Skipped ratio' added to search. (Set using (stream/skip)*100.) * ```> 0 & < 100```: Skipped more than played * ```100```: Equal plays and skips * ```> 100```: Played more than skipped * Add 'Original Year', 'Release Type' to Album searches * Allow setting custom database collation and charset without overwriting your changes * Video search added to random.php * 'samesite=strict' on JS cookies * Translation updates (August 2020) * Put 'Labels' into search, browse headers and sidebar when enabled * NEW config options (config_version 45) * database_charset: Set a default charset for your database * database_collation: Set a default collation for your database * simple_user_mode: Don't allow users to edit their account values (used for demo sites that allow login) * NEW files * bin/update_file.inc: Update your catalog when individual files are changed using inotifywait.sh * bin/update_db.inc: Update your database collation, charset and table engine from the cli * docs/examples/inotifywait.sh: script to use inotifywait and update_file.inc to update as file changes happen * docs/examples/inotifywait.service: systemd example service for inotifywait.sh ### Changed (4.2.2) * stats.php: Show total 'Item Count' on Statistics page instead of trying to shoehorn songs/videos/etc into different columns * ampache.sql updated after about 4 years... no more updates on install! * Searching by "Rating (average)" now ignores private/public and always returns the average. * Hide searches for '# Skipped' and 'Played/Skipped ratio' when 'Show # skipped' is Off * Search items rearranged to try to match each other * Sort 'Playlist' and 'Smart Playlist' browse pages by name * Display the blankuser avatar in now playing if missing * Swap 'Random' and 'Playlists' in the sidebar (CSS order numbers) * Don't hide artist art when you disable lastfm_api_key in the config * Hide 'Metadata' search when 'enable_custom_metadata' is disabled ### Deprecated (4.2.2) * Drop version number from the release string in develop. ('4.3.0-develop' => 'develop') * This should stop a bit of confusion when removing / adding requirements * The '-release' suffix in version number will be dropped for Ampache 5.0.0 ### Removed (4.2.2) * Remove stat recording from channels * Don't reset the database charset and collation after each db update ### Fixed (4.2.2) * Fixed a few issues on the Statistics page * Report 'Catalog Size' correctly for podcasts * Report 'Item Count' correctly for podcasts and video catalogs * Searching albums for artist name * Mashup 'Newest' would incorrectly apply an offset missing the newest items * Search by 'Smart Playlist' rules fixed when added with other rules * Use LEFT JOIN instead of HAVING for search rules to allow more complicated lists * Logic searching 'My Rating' includes unrated (0 Stars) in a better way * Captcha was not generated for registration * Enforce lowercase codec for live streams * Parsing integer search rules was overwriting index values * Handle empty XML on similar artist requests to last.fm ### Security (4.2.2) Fix CVE-2020-15153 - Unauthenticated SQL injection in Ampache ## 4.2.1-release **NOTICE** Ampache 5.0.0 will require **php-intl** module/dll to be enabled. ### Added (4.2.1) * Numeric ('1 Star'-'5 Stars') searches now include '0 Stars' to show unrated objects * Ajax refresh localplay "Now Playing" same as the index "Now Playing" section * Add 'has not rated' to "Another User" searches * Add higher bitrates (640, 1280) to search to allow for lossless files * Put strings ('1 Star', '2 Stars', etc) back into numeric searches for ratings * When using a string title for numeric searches use the order of the items starting with 0 * NEW files * Include API docs from the wiki. (API.md, API-JSON-methods.md, API-XML-methods.md, API-advanced-search.md) * 'Filters' added to each sidebar tab if enabled (previously only 'Home' and 'Admin') ### Changed (4.2.1) * Use binary (.mo) translation files to speed up translation processing * Don't show 'Generate new API key' if you don't have access * QR Code in account page is now just the API Key (redundant link removed too) * Require minimum version of Ampache 3.8.2 to upgrade database * Added an icon to webplayer to go to album. Clicking on song title now directs to song ### Fixed (4.2.1) * Waveform config option 'get_tmp_dir' was ignored if set * Rightbar: 'Add to New Playlist' not adding on new playlists * Translate preference subcategories and status * 'podcast_new_download' logic fix * Filters box would show up in the Admin tab if you disabled 'browse_filter' * Update album when 'release_type' changes * Parse 'Release Type' from tags in a less terrible way ## 4.2.0-release The API changelog for this version has been separated into a new sub-heading below to make it easier to follow. ### Added (4.2.0) * Added Spotify art searches for both album and artist images. * Updated component installer and php-cs-fixer package. * Translation updates (April 2020, May 2020, July 2020) * Added declare(strict_types=0); to `lib/*` and `lib/class/*` (requires more work before it can be enabled) * Add 250 for search form limits in the web UI. (Jump from 100 to 500 is pretty big) * Add Recently updated/added to search rules * Add regex searching to text fields. ([]) * Refer to the wiki for information about search rules. () * When labels are enabled, automatically generate and associate artists with their publisher/label tag values. * Enforced stat recording for videos. (podcasts and episodes to be added later) * Add tags (Genres) to "Anywhere" text searches. * 10 second redirect on "Access Denied" to the default web_path * Allow "Update from tags" for multi-disk album and artist pages * show and hide the rightbar (playlist) using the minimize button in the header * Tag->f_name (New property on tag that was being set hackily) * Add "Album" to Find Duplicates in admin/duplicates.php. * "Local Image" added to Artist & Album search. Find out whether you have art stored in Ampache * PHP_CodeSniffer checks and settings added to Scrutinizer. (phpcs --standard=.phpcs.xml lib/class) * NEW database options * cron_cache: Speed up the interface by allowing background caching of data * show_skipped_times: Add "# skipped" to the UI. (disabled by default) * custom_datetime: Allow you to format your date strings your way. * unique_playlist: Force unique playlists by ignoring existing songs * NEW config options * skip_timer: Add Skip Timer Threshold to the config * artist_art_folder: Specify a local folder to search for artist images using name/title * rating_file_tag_user: Set ratings to this user ID when importing ratings from file tags * spotify_client_id: Allows Spotify art search * spotify_client_secret: Allows Spotify art search * NEW files * server/json.server.php & lib\class\json_data.class.php: JSON API! * bin/compute_cache.inc: Cache object_count data to speed up access * bin/cron.inc: Perform garbage_collection functions outside of main functions (includes compute_cache.inc) * NEW examples * docs/examples/ampache_cron.service * docs/examples/ampache_cron.timer ### Changed (4.2.0) * Change license string from AGPLv3 to AGPL-3.0-or-later * Update Composer requirements * Allow searching play times without requiring UI option * Stop showing the average rating in the web interface as stars. (show an average when available as text separately) * When you don't have a config file redirect to installer * Change to numeric searches: Renamed 'is' => 'equals' and 'is not' => 'does not equal' * Allow negative track numbers; reducing the maximum track number to 32767. * Localplay volume control moved to the playlist (rightbar) * Podcast_Episode::check_play_history Podcast_Episode::set_played (match song.class versions for stat recording) * Video::check_play_history Video::set_played (match song.class versions for stat recording) * php_cs rules for line endings * Simplify play history checks and code a bit more * Tag (Genre) searches compare each item (e.g Pop) rather than the whole string (Pop,Rock,etc) * Replace "Browse Library" buttons with a search header allowing faster browsing of other types * Share secrets are generated by generate_password instead of a separate function * inet_ntop may not convert some binary IP addresses (like ::1) these now show up as "Invalid" in the ip history. * Searches using numeric rules must use an integer. ('1 Star' => 1, '2 Stars' => 2, etc) * bin/delete_disabled.inc require -x to execute. (previously you needed to edit the file) ### Deprecated (4.2.0) * Horde_Browser::getIPAddress(). Use Core::get_user_ip() instead. ### Removed (4.2.0) * bin/migrate_config.inc (This was used to migrate the config file from php4 to php5) * EchoNest api/song previews * User::update_user_stats (used in play index only and useless) * Share::generate_secret; use generate_password instead * Song::get_cache_count (unused) * Ampache Debug check for 'safe_mode' ### Fixed (4.2.0) * Fixed a lot of incorrectly typed function calls and code documentation * Gravatar Plugin: Make sure https is used when force_ssl is configured * Truncate strings to match database limits when strings go over * Add User php warnings * Channel authentication * IP checks when sending null proxy values * Gather art page layout * Read vorbis rating correctly * Search rules in UI failing to load with custom_metadata * Warn correctly when inserting art fails * Insert missing user preferences on login * When you had beautiful_URLs enabled tracks would not parse in localplay making them all Unknown * Podcast durations aren't always correct format, prep the time before trying to insert it * Subsonic playlist add/remove removing incorrect songs * Search/Smartlists need to have results to be used in lists * Auth issues with stats for recording and localplay * Stream_URLs were generated with a typo when downloading * Respect album grouping using of the moment plugin * Filter album title with grouping enabled. (seriously deadmau5, stop with the <> everywhere) * Share playback without a UID would fail to start * Set a default popular_threshold if unauthenticated or unset * play/index would record democratic streams as a download * Make sure the default preferences table has all the preferences in them * Beets catalog bug; date_diff expecting a datetime but given a string * Searches using user data like ratings has been split in the SQL correctly * Flagged playlists never had their flag deleted * offset and limit were incorrectly used for top/recent searches ### Security (4.2.0) * Fix: CVE-2020-13625 in phpmailer ## 4.1.1 ### Added (4.1.1) * Extend Shouts to 2000 characters; Labels to 250 * Add a status icon to the channel list pointing to the channel/ID/status.xsl ### Changed (4.1.1) * Hide localplay in the sidebar when you disable all the plugins ### Removed (4.1.1) * Remove non-free lib/composer.* files. * You can enable c-pchart with (composer require szymach/c-pchart "2.*") * Remove shoutcast table and preferences. (Dead code) ### Fixed (4.1.1) * Musicbrainz Art search * tmp_playlist bug removing items * Dropbox catalog errors when using a small library * some bugs getting invalid time/date when reading tags ## 4.1.0 ### Added (4.1.0) * December translation update from Transifex * Add playlist into main search page. (Songs, Albums, Artists, Playlists, Videos) * Add docs/examples/channel_run.service for running background processes as a service * New search option "Another User" allows searching other user ratings and favorites * Updates to support php7.4 (Ampache supports 7.1-7.4) * Checks in Subsonic/WebUI for recording repeated plays * composer & php-cs-fixer updates * Add github package guide for docker to RELEASE-PROCESS.md ### Changed (4.1.0) * Update channel status pages (/channel/$CHANNELID/status.xsl) * Update ListenBrainz plugin for empty additional info. (API says remove this section from json) ### Removed (4.1.0) * Roll back mysql8 workarounds. (Orace MySQL supported on php7.4+ only) * Revert changes in 4.0.0 and allow manual choices for artist/album on upload again. ### Fixed (4.1.0) * Fix comparison bugs found during static type testing * Fix enable/disable song ajax * Typo in login page HTTP_REFERER * Fix bin\*.inc text issues with newline * Fix bug in UI when enabling/disabling songs * Fix smartlists when searching sub-lists (Ampache was trying to create one giant query that didn't scale well) * Fix "Add New..." in album edit * Subsonic return json errors when requesting json format (previously errors were always xml) ## 4.0.4 Finalize release procedure to make these updates a bit smoother ### Added (4.0.4) * Reduce the time for repeated track playback (Song length - 5 sec) ### Changed (4.0.4) * Filter playlists in API, Web and Subsonic correctly for regular users vs admins * Hide some lines from the mashup to make it a bit nicer ### Removed (4.0.4) * Remove the old logo from the main install page ### Fixed (4.0.4) * Fix album count for Artists when the album is missing data * Fix searches / searchbox for MYSQL8 * Fix some invalid returns in lib/* * Send the correct function in ajax.server when deleting from playlist ### Security (4.0.4) * None ## 4.0.3 ### Changed (4.0.3) * Filter playlists by access in subsonic * Fail check_php_verison() when using less than php7.1 ### Fixed (4.0.3) * Fixes for Api::get_indexes, Api::playlists, Api::playlist, Api::playlist_songs * Fix Access::check to allow all public lists * Fix global user connecting through the API with an API key. ## 4.0.2 ### Changed (4.0.2) * Bump API version to 400002 (4.0.0 build 002) * Extend Api::playlist_generate (add new mode 'unplayed') * Translate typo in show_test.inc * Trim massive year, time and track when importing new songs ### Fixed (4.0.2) * Fix API playlist commands and access checks relating to playlists * Access::check should be passing user id from the API * SQL query fixes for Album, Playlist methods * Remove spaces from play URL extensions (Should help nginx users) * Set play_type correctly in preferences pages ## 4.0.1 ### Added (4.0.1) * Added 'file' to Song::find ### Fixed (4.0.1) * Bug fix that would cause albums to be recreated in Album::check ## 4.0.0 Notes about this release that can't be summed up in a log line ### Added (4.0.0) * JavaScript and Ajax updates * Code documentation and bug hunting * Added SVG support to the theme engine. * Default to disk 1 instead of 0 (db updates to handle existing albums) * Add Barcode, Original Year and Catalog Number to Album table * New Plugin - Matomo.plugin. [] * New Plugin - ListenBrainz.plugin [] * Add bin/clean_art_table.inc to clean art that doesn't fit your min or max dimensions. * Default fallback user avatar when none found * Added a $_SESSION['mobile'] variable to allow changing pages for mobile devices. * Viewport settings for mobile devices * Use a random cover for playlist art * Add now_playing.php to allow badges for currently track and fall back to last played if none. (thanks @Rycieos) * Add Now Playing icon to each user page if enabled. * Add year information and links to the data rows and interface * Add debugging in song.class.php when the file may be corrupt * Allow the main sidebar to be reordered using CSS (.sb2_music, .sb2_video, .sb2_*) * Subsonic Update api to 1.13.0 [] * Subsonic Allow token auth using API Key instead of password. * Subsonic New Method: updateUser * Subsonic New Method: getTopSongs * Config Version 40 * Add: mail_enable - Enable or disable email server features otherwise, you can reset your password and never receive an email with the new one * Add: rating_browse_filter, rating_browse_minimum_stars - filter based on a star rating. * Add: send_full_stream - allow pushing the full track instead of segmenting * Add: github_force_branch - Allow any official Ampache git branch set in config * Add: subsonic_stream_scrobble - set to false to force all caching to count as a download. This is to be used with the subsonic client set to scrobble. (Ampache will now scrobble to itself over subsonic.) * Add: waveform_height, waveform_width - customize waveform size * Add: of_the_moment - set custom amount of albums/videos in "of the moment areas" * Add: use_now_playing_embedded, now_playing_refresh_limit, now_playing_css_file - Show a user forum tag "Now playing / last played" ### Changed (4.0.0) * Don't allow lost password reset for Admin users * Don't allow emails until mail_enable is true * Don't allow last.fm queries to overwrite existing art * Stop trying to insert art when present during catalog update * Move some $_GET, POST, $_REQUEST calls to Core * HTML5 doctype across the board. (DOCTYPE html) * Lots of HTML and UI fixes courtesy of @kuzi-moto * If you are using charts/graphs there has been a change regarding c-pchart * [chart-faq](https://ampache.org/docs/help/troubleshooting/cli) * Numerous catalog updates to allow data migration when updating file tags meaning faster tag updates/catalog verify! (Updating an album would update each file multiple times) * UserActivity::migrate, Userflag::migrate, Rating::migrate, Catalog::migrate, * Shoutbox::migrate, Recommendation::migrate, Tag::migrate, Share::migrate * Rework user uploads to rely on file tags ONLY instead of allowing manual choices. * Extend bin/sort_files.inc & catalog patterns to handle new fields * Updated bin/sort_files.inc for a smoother experience that actually works * Add -u to bin/catalog_update.inc This function will update the artist table with bio, image, etc as well as update similar artists. * Update the CSS theme colors and structure. * Light theme updated. * Format the input fields. (you get a datetime picker on mobile!) * Login/lostpassword moves the logo to the bottom on mobile like cockpit does! (makes typing easier on a touch screen) * Load webplayer hidden to stop popup preferences hiding the window * Hide video in search/stats if not enabled * Lots of code tweaks to make things more uniform and readable. * Default to mashup for artists and albums * Remove '[Disk x]' when grouped from all UI areas by enforcing the group setting. * Subsonic Enable getChatMessages, addMessage allowing server chat ### Removed (4.0.0) * Drop PHP 5.6 support for 7.1+ * Remove all Plex code * Remove message of the day * No video, no channels in new installs * Remove plex and googleplus plugins ### Fixed (4.0.0) * Fix import_playlist code. Do not recreate existing playlists and don't imports existing songs. * Allow cli tools to use system settings for plugins. * Fix MySQL8 installation using mysql_native_password with caveats ([]) * Catalog Manager can now access catalog areas correctly * Filter zip names in batch so they are named correctly by the download * Fixed setting button requiring two single clicks to open. (Thanks for this 2016 pull @AshotN) * Make test.php, init.php & install.php show an error page instead of blank screen. (gettext) * Fix slideshow creating black screen when using web player * Fixed QRCode views * Subsonic Don't ignore group settings with id3 browsing * Subsonic Fix cover art for playlists and albums * Subsonic Api fixes for podcast playback, Ultrasonic/Dsub workarounds ### Security (4.0.0) * Resolve NS-18-046 Multiple Reflected Cross-site Scripting Vulnerabilities in Ampache 3.9.0 * Resolve CVE-2019-12385 for the SQL Injection * Resolve CVE-2019-12386 for the persistent XSS ## 3.9.1 * Fixed Beets catalog creation and updating. * AutoUpdate now ignores pre-release (preview) versions. * Fixed various command ine utilities in bin folder. * Fixed XML api syntax for logging in with user name. * Fixed newline display in xml data returned in playlist, etc. ## 3.9.0 * Video details now correctly displayed for personal video. * XML API now fully accepts user's API key. Session will be extended if it exists; Otherwise it's replaced. * Artist name added to Lastfm track.getsimilar query. * Catalog_update.inc now includes switches for catalog name and catalog type. * Added Beets catalog to Composer autoload. * Performance improved with playlist display and search. * General translation Updates. * Documented php module requirement for FreeBSD. ## 3.8.9 * Improved display of artist summary on web page. * Fixed uploading of avatar. * DSub now writes the correct extension when the ampache config switch `encode_player_api_target` is enabled. * Artist info now properly displayed. ## 3.8.8 * Subsonic API now removes illegal characters before returning text. * Removed hardcoded access level to allow guests to stream audio. * Guest accounts can now access songs and public playlists. * Fixed bug in subsonic API which caused DSub not to create folders or add file extensions when caching. ## 3.8.7 * Better able to clean up image extentions when gathering art from remote sites. * Check for B.O.M. (\xff\xfe) only in mp3 composer tag and remove. * Added .ogv encoding target for more efficient streaming of mkv files. * Top menu appearance more reader friendly for translations. * Additional fixes to update_remote_catalog function. * Enabled similar songs when clicking on radio icon in DSub. * Repaired problem with removing "empty" albums. * Can now access XML-API when default ACL(s) are removed. * 'Find Duplicates' tool now works. * Cleaning now checks for mounted path before removing empty albums/missing files. * Starring album and artist now work via Subsonic client. * Modified "Gather Art" debug message to remove confusion from "Image less than 5 chars...". ## 3.8.6 * Updated Subsonic Remote Catalog Module to version 2. * Subsonic Catalog now grabs artwork directly from the subsonic server. * Various fixes to Subsonic Catalog and Subsonic API. * Release package now downloads from release update alert. * Develop package downloads from develop update alert. * Fixed album Search. ## 3.8.5 * Added search capability for user's own ratings option for Song, Artist, Album search. * Clean process now removes empty albums. * Further translation updates and fixes. * Updated Subsonic API to increase compliance with Subsonic json API specs. * Added starred date to album list and song and formatted per Subsonic spec. * Now compatible with latest Ultrasonic client (json transfer). * Fixed ability to edit/save smartplaylist name without setting 'random'. * Search/smart playlist now includes favorite artists and albums. * Modified SQL statement to not offend default SQL_MODE of ONLY_FULL_GROUP_BY on server versions after 5.7.6. * Set redirect to false for streaming types. ## 3.8.4 * Subsonic catalog now displays album art and artist bio. * Artist info now displays in Ampache's installed language. * Updated translations. * Composer tag changes now saved to database. * Seafile catalog module added. * Dropbox catalog updated to V2 API. * ip6 addresses now added to user history. * Updated api.class.php * fix for web_path auto configuration for subdirectory installation * Composer tag changes now written to database * Fixed catch null reference * Changes to make translation easier * Smart Playlist can now be edited/saved without 'random' set. ## 3.8.3 * Fixed upload problem * Fixed charting problem * Updated composer dependencies * Fixed ipv6 issue * Improved Opus transcoding * Fixed localization chart * Improved Subsonic API * Improved ID3v2.3 and v2.4 to better handle multivalued lists * Added sort by disc numbers * Song comments are now editable * Fixed composer column in iTunes * Many typos fixed * Fixed field types in modules and Localplay * Fixed timeline function * Activated jplayer "preload" option * Fixed missing submit button on options page * Increased info on DSub failing via Subsonic API * Fixed Group actions in private message page causing JavaScript error * Fixed some info lievel issues in Codacy * Apply trim on dropbox parameters * Added Prompt for user to change secret_key during install * Enabled use of cache in PHPCs * All files now use UTF8 without BOM * Now require Exact catalog name match on catalog update * Port 443 removed from play URL * Now test all images found to select the one with the good dimensions * Rewrote LDAP class * Song count in handshake now matches the number returned from songs * Blocking of webplayer when transcoding fixed * Cover art is added to live stream * Added browse filter and light sidebar options * Updated gettext, zipstream, react and sabre dependencies * Fixed Subsonic scrobble submission check ## 3.8.2 * Fixed potential security vulnerability on smartplaylist search rule and catalog management actions (thanks Roman Ammann) * Fixed song comparison issue on arrays (genre ...) when updating from tag * Fixed song insertion issue if track year is out of range * Fixed unexpected artist summary AutoUpdate * Improved generated playlist filename (thanks yam655) * Fixed user avatar upload (thanks vader083) * Fixed waveform temporary file deletion issue if GD library is unavailable * Fixed max number of items returned from Subsonic getStarred.view (thanks zerodogg) * Fixed video update from tags (thanks stebe) * Reverted PHP 5.5.9 dependency to PHP 5.4 * Added video playlist support (thanks SurvivalHive) * Added preference subcategory * Added prompt for new playlist name * Fixed page refresh when canceling album art change (thanks EvilLivesHere) * Added /play htaccess rewrite rule to avoid default max limit redirection * Fixed Subsonic artist/album/song name JSON parsing if the name is numeric only * Added ignored articles and cover art to Subsonic getArtists.view function * Fixed MySQL requests to support ONLY_FULL_GROUP_BY mode * Fixed Ajax art refresh after changing it (thanks gnujeremie) * Fixed playlist creation from smartplaylist (thanks stebe) * Added SQL unique constraint on tag map * Fixed Subsonic genres with JSON format * Added Bookmarks feature on Subsonic API * Fixed thumb art regeneration if entry found in database without data (thanks s4astliv) * Added Podcast feature * Added large view / grid view option on artist and albums collection * Moved from php-gettext to oscarotero/Gettext * Added `Access-Control-Allow-Origin: *` header on Subsonic images & streams * Fixed Subsonic item identifier parsing * Added logic for external plugin directories (ampache-*) * Added Discogs metadata plugin ## 3.8.1 * Fixed PHP7 Error class conflict (thanks trampi) * Fixed user password with special characters at install time (thanks jagerman) * Moved Ampache project license from GPLv2 to AGPLv3 * Added Ampache specific information on Subsonic API getAlbum using a new `ampache` parameter (thanks nicklan) * Added 'album tag' option in song search (thanks DanielMaly) * Added Message of the Day plugin to display MOTD * Moved AmpacheApi class to a separate ampacheapi-php git repository * Added timeline / friends timeline feature * Fixed disabled song display to regular users (thanks shangril) * Fixed random albums art size (thanks Bidules079) * Moved tag cloud to artist browsing by default * Fixed utf8 BOM empty string on song comparison * Improved Recently Played and user stats queries performance (thanks thinca) * Renamed SAMPLE_RATE to TRANSCODE_BITRATE on transcoding * Fixed tag deletion sql error (thanks stebe) * Moved to PNG default blank image instead of JPG (thanks Psy-Virus) * Fixed temporary playlist initial position when scrolling down (thanks RobertoCarlo) * Added Radio stations to UPnP backend * Fixed Subsonic API art to use album art if song doesn't have a custom art (thanks hypfvieh) * Fixed Subsonic API search when object count parameter is 0 (thanks hypfvieh) * Fixed UPnP UUID to be based on host information * Moved to Composer for dependencies management * Fixed catalog action when not using Ajax page loading (thanks Razrael) * Fixed unrated song default value (thanks Combustible) * Added custom metadata support from files (thanks Razrael) * Improved Subsonic API getArtists performance (thanks nicklan) * Fixed theme color setting behavior * Moved audioscrobbler API to v2 * Added m3u8 playlist import * Fixed utf8 id3v2 comments support * Added write_playlists script to export playlists to file * Fixed Tvdb and Tmdb plugins (thanks wagnered) * Improved Video filename parsing (thanks wagnered) * Fixed non scalar settings value printing on debug page * Improved Subsonic API getAlbumList error handling * Fixed user login with browser used during the installation * Fixed iTunes 12 browsing when using DAAP (thanks Chattaway83) * Moved http_port user preference to ampache.cfg.php * Upgraded last.fm and libre.fm scrobbling to latest API version (thanks nioc) * Added missing space between track and album in Localplay playlist (thanks arnaudbey) * Added check fo mbstring.func_overload support before using id3 write functionality (thanks anonymous2ch) * Fixed file size calculation when using id3v2 tag (thanks hypfvieh) * Added rating from id3 tag (thanks nioc) * Added track number on streaming playlist (thanks Fondor1) * Fixed catalog export (thanks shellshocker) * Fixed file change detection * Improved XML API with more information and new functions * (advanced_search, toggle_follow, last_shouts, rate, timeline, friends_timeline) * Fixed 'Next' button when browsing start offset is aligned to offset limit (thanks wagnered) * Fixed stream kill OS detection (thanks nan4k7) * Fixed calculate_art_size script to support storage on disk (thanks nan4k7) * Fixed sql script semicolon typo (thanks jack) * Added support for .opus files (thanks mrpi) * Fixed podcast owner xml information * Fixed ldap filter parameter check (thanks ChrGeiss) * Fixed 'Add to existing playlist' link for regular users (thanks Niols) ## 3.8.0 * Added Portuguese (Brasil) language (thanks Ione Souza Junior) * Updated PHPMailer version to 5.2.10 * Fixed user stats clear * Added user, followers and last shouts XML API functions * Fixed transcoded process end on some systems (thanks nan4k7) * Added ogg channel streaming support (thanks Deathcow) * Fixed sql connection close before stream (thanks fufroma) * Added support for several ldap filters (thanks T-Rock) * Fixed 'Add to existing playlist' button on web player (thanks RyanCopley) * Added 'add to existing playlist' link on album page (thanks RyanCopley) * Added option to hide user fullname from other users * Added playlist track information in Apache XML API (thanks RyanCopley) * Fixed playlist remove song in Apache XML API (thanks RyanCopley) * Fixed Subsonic API ifModifiedSince information * Added Podcast links to albums / artists * Added Piwik and Google Analytics plugins * Added Apache 2.4 access control declaration in htaccess files * Fixed performance issues on user preferences * Added artist search by year and place * Fixed search by comment (thanks malkavi) * Added Paypal and Flattr plugins * Added .maintenance page * Fixed captcha * Added private messages between users * Fixed Subsonic API rating information on albums and songs * Added latest artists and shouts RSS feeds * Fixed tag cloud ordering * Added Label entities associated to artists / users * Added WebDAV backend * Fixed Subsonic API requests with musicFolderId parameter (thanks dhsc19) * Added footer text edition setting * Added uploaded artist list on user page * Added custom Ampache login logo and favicon support * Added edition support on shared objects (thanks dhsc19) * Fixed share feature on videos (thanks RobertoCarlo) * Removed album year display from album name if unset * Fixed Subsonic API Album/Artist song's link (thanks dhsc19 and daneren2005) * Added mysql database socket authentication support on web setup (thanks AsavarTzeth) * Fixed artist art URL for mobile use (thanks dhsc19) * Added Shoutbox home plugin * Added catalog favorites home plugin * Fixed search by rating (thanks iamnumbersix) * Added UPnP Localplay (thanks SeregaPru) * Changed preferences to return the global value if preference is missing for the searched user * Fixed special chars in songs names and tags (thanks SeregaPru) * Fixed Subsonic API playlist edition/delation (thanks dhsc19) * Fixed integer default value in Apache XML API * Fixed image thumb on webplayer and search preview (thanks RobertoCarlo and eephyne) * Fixed proxy setting on all external http requests (thanks brendankearney) * Added QRCode view of user API key * Fixed http status code on Subsonic API streams when using curl (thanks nicklan) * Added Server-Sent Events on catalog actions * Added option to enable/disable channel and live stream features * Removed official PHP 5.3 support * Added option to show/hide footer statistics (thanks brownl) * Added delete from disk option on user uploaded files * Added installation type and players helper at installation process * Added tv_episode tag on quicktime files (thanks wagnered) * Added new option to disable deferred extended metadata, e.g. artist details * Added Subsonic API getAvatar function * Fixed unsynced lyrics tags * Fixed ldap_filter setting deactivation on ampache.cfg.php update (thanks Rouzax) * Added Subsonic API similar artists & songs functions * Added Subsonic API getLyrics function * Fixed disk number and album artist metadata on quicktime files (thanks JoeDat) * Fixed Ampache API playlist_add_song function * Added ability to store images on disk * Added new setting to define album art min and max width/height * Fixed Subsonic API getAlbum returned artist id on songs * Fixed Subsonic API cover art when PHP-GD unavailable * Fixed Localplay playlist refresh on volume changes (thanks essagl) * Fixed web player equalizer option if visualizer is not enabled (thanks brownl) * Fixed asx file mime type (thanks thinca) * Added song genre parsing options (thanks Razrael and lotan) * Added sort on languages list (thanks brownl) * Added placeholder text to search box (thanks brownl) * Added web player Play Next feature (thanks tan-ce) * Fixed Plex backend administration page uri (thanks a9k) * Fixed expired shared objects clean (thanks eephyne) * Added missing artist search results (thanks bliptec) * Fixed song genre id parsing (thanks lotan) * Added Scrobble method to Subsonic API * Added an option to add tags to child without overwriting * Added image dimension info to image tables (thanks tsquare66) * Replaced ArchiveLib by StreamZip-PHP to avoid temporary zip file * Added Year field in song details and edition * Added Subsonic API create/delete user, jukebox control and search auto suggestion * Added few optional install tests * Improved Share features with modal dialog choices * Added new action on playlists to remove duplicates * Fixed playlist addition to another playlist (thanks kszulc) * Fixed Various Artist link on album page (thanks Jucgshu) * Added session_destroy call when a session should be destroyed * Added HTML5 ReplayGain track feature * Added display and mandatory user registration fields settings * Added .htaccess IfModule mod_access.c directives * Fixed SmartPlayer results per user (thanks nakinigit) * Fixed XSS vulnerability CVE-2014-8620 (thanks g0blin) * Fixed playlist import setting on catalog update to be disabled by default (thanks DaPike) * Added ability to browse my tags other library items than songs * Added Stream Control plugins * Added transcode settings per player type * Added ability to write directly the new configuration file when it version changed * Added `quick play url` to have permanent authenticated stream link without session * Fixed unresponsive website on batch download (thanks Rouzax) * Added batch download item granularity * Fixed 'guest' user site rendering * Added Aurora.js support in webplayer * Added Google Maps geolocation analyze plugin * Added statistical graphs * Added user geolocation * Added 'Missing Artist' search * Fixed Ampache installation with FastCGI * Added a new RSS Feed plugin * Added a new 'display home' plugin type * Added Favorite and Rating features to playlists * Added user feedback near mouse cursor on democratic votes * Changed header page position to be fixed * Added external links on song page details * Fixed Subsonic API getAlbumList2 byGenre and byYear order (thanks rrjk) * Added html5 desktop notification * Added album group order setting * Fixed unwanted album merge when one of the album doesn't have mbid * Changed video player to go outside the footer * Added ip address in authentication failure for fail2ban scripts (thanks popindavibe) * Added parameter to hide directplay button if number of items is above a limit * Added Tag split (thanks jcwmoore) * Fixed album/artist arts and stats migration on rename (thanks jcwmoore) * Fixed get lyrics from files (thanks apastuszak) * Fixed verify local catalog (thanks JoeDat) * Removed Twitter code * Added optional cookie disclaimer for the EU Cookie Law * Replaced catalog action links to action dropdown list (thanks Psy-Virus) * Fixed `remember me` feature (thanks ainola) * Added email when registered user must be enabled by administrators * Fixed local catalog clean on Windows (thanks Rouzax) * Added Subsonic API maxBitRate parameter support (thanks philipl) * Fixed Subsonic API special characters encode (thanks nan4k7) * Added Beets local and remote catalog support (thanks Razrael) * Fixed XML error code returned with invalid Ampache API handshake (thanks funkygaddafi) * Replaced iframe to Ajax dynamic page loading * Changed `Albums of the Moment` to not necessarily have a cover * Added Plex backend items edition support * Added hls stream support * Added X-Content-Duration header support on streams * Removed Toogle Art from artist page * Fixed track numbers when removing a song from playlist (thanks stonie08) * Added Plex backend playlist support * Added gather art from video files (thanks wagnered) * Added Plex backend movie / tvshow support * Added release group on albums * Added Smart Playlist songs list * Added zlib test * Removed old Ampache themes * Fixed Subsonic API lastModified element (thanks bikkuri10) * Disabled `beautiful url` on XML-API for retro-compatibility * Fixed image resource allocation (thanks greengeek1) * Added setting to write id3 metadata to files (thanks tsquare66) * Added check for large files manipulation * Added video subtitle support * Fixed Google arts to use real arts and not the small size preview * Added Tmdb metadata plugin * Added Omdb metadata plugin * Added Music Clips, Movies and TV Shows support * Added media type information on catalog * Fixed get SmartPlaylist in XML-API (thanks opencrf) * Added beautiful URL on arts * Improved browse list header (thanks Psy-Virus) * Fixed user online/offline information on Reborn theme (thanks thorsforge) * Added UPnP backend (thanks SeregaPru) * Added DAAP backend * Added sort options on playlists (thanks Shdwdrgn) * Fixed XML-API tag information (thanks jcwmoore) * Fixed multiple broadcast play (thanks uk3gaus) * Added SmartPlaylists to Subsonic API * Added limit option on SmartPlaylists * Added random option on SmartPlaylists * Added 'item count' on browse * Added direct typed links on items tags * Fixed Subsonic API compatibility with few players requesting information on library -1 * Added license information on songs * Added upload feature on web interface * Added albumartist information on songs (thanks tsquare66) * Fixed errors on sql table exists check * Fixed play/pause on broadcasts (thanks uk3gaus) * Added donation button * Added democratic page automatic refresh * Fixed distinct random albums * Added collapsing menu (thanks Kaivo) * Added 'save to playlist' feature on web player (thanks Kaivo) * Added tag merge feature * Fixed democratic vote with automatic logins (thanks M4DM4NZ) * Added git pull update from web interface for development versions * Fixed http-rang requests on streaming (thanks thejk) * Improved installation process * Improved French translation (thanks arnaudbey) * Improved German translation (thanks Psy-Virus and meandor) ## 3.7.0 * Added Scrutinizer analyze * Fixed playlist play with disabled songs (reported by stebe) * Improved user auto-registration to optionally avoid email validation * Fixed date.timezone php warnings breaking Ampache API (reported by redcap1) * Fixed playlist browse with items > 1000 (reported by Tetram67) * Fixed Amazon API Image support (thanks jbrain) * Fixed id3v2 multiples genres (reported by Rouzax) * Improved democratic playlist view to select the first one by default * Improved German translation (thanks Psy-Virus) * Fixed playlist view of all users for administrator accounts (reported by stonie08) * Added option to regroup album disks to one album view * Changed Ampache logo * Fixed email validation on user registration (reported by redcap1) * Added local charset setting * Improved installation steps and design (thanks changi67) * Improved Recently Played to not filter songs to one display only * Fixed Subsonic transcoding support * Fixed Subsonic offline storage file path (reported by Tetram76) * Added optional top dock menu * Added html5 web audio api visualizer and equalizer * Added `Play List` to Localplay mode * Fixed encoding issue in batch download * Added pagination to democratic playlists * Added an option to group albums discs to an unique album * Added alphabeticalByName and alphabeticalByArtist browse view in Subsonic API * Fixed album art on xspf generated playlist * Added stats, playlist and new authentication method to Ampache XML API * Added responsive tables to automatically hide optional information on small screen * Added song action buttons (user favorite, rating, ...) to the web player * Added sortable capability to the web player playlist * Added Growl notification/scrobbler plugin * Added artist slideshow photos plugin from Flickr * Added setting to change Ampache log file name * Added playlists to Quick and Advanced search * Added pls, asx and xspf playlist file format import * Fixed playlist import with song file absolute path (reported by ricksorensen) * Fixed playlist import with same song file names (reported by captainark) * Added shoutcast notification at specific time when playing a song with a waveform * Added Tag edit/delete capability * Added several search engine links * Added myPlex support on Plex API * Added cache on LastFM data * Added custom buttons play actions * Added artist pictures slideshow for current playing artist * Added Broadcast feature * Added Channel feature with Icecast compatibility * Replaced Muses Radio Player by jPlayer to keep one web player for all * Added missing artists in similar artists for Wanted feature * Added concerts information from LastFM * Added tabs on artist information * Added 'add to playlist' direct button on browse items * Added avatar on users and Gravatar/Libravatar plugins * Fixed playlist visibility (reported by stonie08) * Added OpenID authentication * Fixed m3u import to playlist on catalog creation (reported by jaydoes) * Improved missing/wanted albums with the capability to browse missing artists * Added share feature * Updated French translation * Added options per browse view (alphabetic, infinite scroll, number of items per page...) * Fixed several Subsonic players (SubHub, Jamstash...) * Added option to get beautiful stream URL with URL rewriting * Added check to use a new thread for scrobbling if available * Added confirmation option when closing the currently playing web player * Added auto-pause web player option between several browse tabs * Fixed similar artists list with disabled catalogs (reported by stebe) * Improved Shoutbox (css fix, real time notifications...) * Fixed iframe basket play action reload * Fixed wanted album auto-remove * Fixed MusicBrainz get album art from releases * Added Waveform feature on songs * Added AutoUpdate Ampache version check * Added auto-completion in global Ampache search * Added option to 'lock' header/sidebars UI * Fixed catalog export when 'All' selected * Fixed XBMC Local Play (reported by nakinigit) * Fixed artist search * Fixed Random Advanced (reported by stebe) * Changed song preview directplay icons * Added Headphones Automatic Music Downloader support as a 'Wanted Process' plugin * Updated PHPMailer to version 5.2.7 * Updated getID3 to version 1.9.7 * Added 'Song Preview' feature on missing albums tracks, with EchoNest api * Added 'Missing Albums' / 'Wanted List' feature * Upgraded to MusicBrainz api v2 * Replaced Snoopy project with Requests project * Added user-agent on Recently Played * Added option to show/hide Recently Played, time and user-agent per user * Updated French language * Added option for iframe or popup web player mode * Improved Song/Video web player with jPlayer, Radio player with Muse Radio Player * Added 'add media' to the currently played playlist on web player * Added dedicated 'Recently Played' page * Added enable/disable feature on catalogs * Fixed Config class conflict with PEAR * Improved recommended artists/songs loading using ajax * Added a new modern 'Reborn' theme * Improved Subsonic api backend support (json, ...) * Added Plex api backend support * Added artist art/summary when using LastFM api * Added 'all' link when browsing * Added option to enable/disable web player technology (flash / html5) * Fixed artist/song edition * Improved tag edition * Added song re-order on album / playlists * Replaced Prototype with jQuery * Added 'Favorite' feature on songs/albums/artists * Added 'Direct Play' feature to play songs without using a playlist * Added Lyrics plugins (ChartLyrics and LyricWiki) * Fixed ShoutBox enable/disable (reported by cipriant) * Added SoundCloud, Dropbox, Subsonic and Google Music catalog plugins * Improved Catalogs using plug-ins * Added browse paging to all information pages * Fixed LDAP authentication with password containing '&' (reported by bruth2) * Added directories to zip archives * Improved project code style and added Travis builds * Added albums default sort preference * Added number of times an artist/album/song was played * Fixed installation process without database creation * Removed administrative flags ## 3.6-FUTURE * Fixed issue with long session IDs that affected OS X Mavericks and possibly other newer PHP installations (reported by yebo29) * Fixed some sort issues (patch by Afterster) * Fixed Fresh theme display on large screens (patch by Afterster) * Fixed bug that allowed guests to add radio stations * Added support for aacp transcoding * Improved storage efficiency for large browse results * Fixed unnecessary growth of the tmp_browse table from API usage (reported by Ondalf) * Removed external module 'validateEmail' * Updated PHPMailer to 5.2.6 ## 3.6-alpha6 *2013-05-30* * Fixed date searches using 'before' to use the correct comparison (patch by thinca) * Fixed long-standing issue affecting Synology users (patch by NigridsVa) * Added support for MySQL sockets (based on patches by randomessence) * Fixed some issues with the logic around memory_limit (reported by CableNinja) * Fixed issue that sometimes removed ratings after catalog operations (reported by stebe) * Fixed catalog song stats (reported by stebe) * Fixed ACL text field length to allow entry of IPv6 addresses (reported by Baggypants) * Fixed regression preventing the use of an existing database during installation (reported by cjsmo) * Fixed operating on all catalogs via the web interface (reported by orbisvicis) * Added support for nonstandard database ports * Updated getID3 to 1.9.5 * Improved the performance of stream playlist creation (reported by AkbarSerad) * Fixed "Pure Random" / Random URLs (reported by mafe) ## 3.6-alpha5 *2013-04-15* * Fixed persistent XSS vulnerability in user self-editing (reported by Jean-Lou Hau) * Fixed persistent XSS vulnerabilities in AJAX object editing (reported by Jean-Lou Hau) * Fixed character set detection for ID3v1 tags * Added matroska to the list of known tag types * Made the getID3 metadata source work better with tag types that Ampache doesn't recognise * Switched from the deprecated mysql extension to PDO * stderr from the transcode command is now logged for debugging * Made database updates more robust and verified that a fresh ## 3.## 3.## 3.5 import will run through the updates without errors * Added support for external authenticators like pwauth (based on a patch by sjlu) * Renamed the local auth method to pam, which is less confusing * Removed the Flash player * Added an HTML5 player (patch by Holger Brunn) * Changed the way themes handle RTL languages * Fixed a display problem with the Penguin theme by adding a new CSS class (patch by Fred Thomsen) * Made transcoding and its configuration more flexible * Made transcoded streams more standards compliant by not sending a random value as the Content-Length or claiming that ranged requests are supported * Changed rating semantics to distinguish between user ratings and the global average and add the ability to search for unrated items (< 1 star) * Updated Prototype to git HEAD (4ce0b0f) * Fixed bug that disclosed passwords for plugins to users that didn't have access to update the password (patch by Fred Thomsen) * Fixed streaming on Android devices and anything else that expects to be able to pass a playlist URL to an application and have it work * Removed the SHOUTcast Localplay controller ## 3.6-Alpha4 *2012-11-27* * Removed lyric support, which was broken and ugly * Removed tight coupling to the PHP mysql extension * Fixed an issue with adding catalogs on Windows caused by inconsistent behaviour of is_readable() (reported by Lockzi) ## 3.6-Alpha3 *2012-10-15* * Updated getID3 to 1.9.4b1 * Removed support for extremely old passwords * Playlists imported from M3U now retain their ordering (patch by Florent Fourcot) * Removed HTML entity encoding of plaintext email (reported by USMC Guy) * Fixed a search issue which prevented the use of multiple tag rules (reported by Istarion) * Fixed ASF tag parsing regression (reported by cygn) ## 3.6-Alpha2 *2012-08-15* * Fixed CLI database load to work regardless of whether it's run from the top-level directory (reported by porthose) * Fixed XML cleanup to work with newer versions of libpcre (patch by Natureshadow) * Fixed ID3v2 disk number parsing * Updated getID3 to 1.9.3 * Added php-gettext for fallback emulation when a locale (or gettext) isn't supported * Fixed pluralisation issue in Recently Played * Added support for extracting MBIDs from M4A files * Fixed parsing of some tag types (most notably M4A) * Corrected PLS output to work with more players (reported by bhassel) * Fixed an issue with compound artists in media with MusicBrainz tags (reported by greengeek) * Fixed an issue with filename pattern matching when patterns contained characters that are part of regex syntax (such as -) * Fixed display of logic operator in rules (reported by Twister) * Fixed newsearch issue preventing use of more than 9 rules (reported by Twister) * Fixed JSON escaping issue that broke search in some cases (reported by XeeNiX) * Overhauled CLI tools for installation and database management * Fixed admin form issue (reported by the3rdbit) * Improved efficiency of fetching song lists via the API (reported by lotan_rm) * Added admin_enable_required option to user registration * Fixed session issue preventing some users from streaming (reported by miir01) * Quote Content-Disposition header for art, fixes Chrome issue (patch by Sébastien LIENARD) * Fixed art URL returned via the API (patch by lotan_rm) * Fixed video searches (reported by mchugh19) * Fixed Database Upgrade issue that caused catalog user/pass for remote catalogs to not be added correctly * Added the ability to locally cache passwords validated by external means (e.g. to allow LDAP authenticated users to use the API) * Fixed session handling to actually use our custom handler (reported by ss23) * Fixed Last.FM art method (reported by claudio) * Updated Captcha PHP to 2.3 * Updated PHPMailer to 5.2.0 * Fixed bug in MPD module which affected toggling random or repeat (patch from jherold) * Properly escape config values when writing ampache.cfg.php * Fixed session persistence with auth disabled (reported by Nathanael Anderson) * Fixed item count retention for Advanced Random (reported by USAF_Pride) * Made catalog verify respect memory_cache * Some catalog operations are now done in chunks, which works better on large catalogs * API now returns year and bitrate for songs * Fixed search_songs API method to use Search::run properly * Fixed require_session when auth_type is 'local' * Catalog filtering fix * Toggle artwork with a button instead of a checkbox (patch from mywindow) * API handshake code cleanup, including a bugfix from postfuturist * Improved install process when JavaScript is disabled * Fixed duplicate searching even more * Committed minor bugfixes for Penguin theme * Added Fresh theme * Fixed spurious API handshake failure output ## 3.6-Alpha1 *2011-04-27* * Fixed forced transcoding * Fixed display during catalog updates (reported by Demonic) * Fixed duplicate searching (patch from Demonic) * Cleaned up transcoding assumptions * Fixed tag browsing * Added new search/advanced random/dynamic playlist interface * byterange handling for ranges starting with 0 (patch from uberbrady) * Fixed issue with updating ACLs under Windows (reported by Citlali) * Add function that check ampache and php version from each website. * Updated each ampache header comment based on phpdocumentor. * Fixed only admin can browse phpinfo() for security reasons on /info.php * Added a few translation words. * Updated version ## 3.6 on docs/* * Implemented ldap_require group (patch from eliasp) * Fix \ in web path under Apache + Windows Bug #135 * Partial MusicBrainz metadata gathering via plugin * Metadata code cleanup, support for plugins as metadata sources * New plugin architecture * Fixed display charset issue with catalog add/update * Fixed handling of temporary playlists with >100 items * Changed Browse from a singleton to multiple instances * Fixed setting access levels for plugin passwords * Fixed handling of unusual characters in passwords * Fixed support for requesting different thumbnail sizes * Added ability to rate Albums of the Moment * Added ability to edit/delete playlists while they are displayed * Fix track numbers not being 0 padded when downloading or renaming. * Rating search now allows specification of operator (>=, <=, or =) and uses the same ratings as normal display. * Add -t to catalog_update.inc for generating thumbnails * Generate Thumbnails during catalog art operations * Fixed transcode seeking of Flacs by switching to MM:SS format for flacs being transcoded * Change album_art_order to art_order to reflect general nature of config option * Fix PHP warning with IP History if no data is found. * Add -g flag to catalog update to allow for art gathering via cmdline * Change Update frequency of catalog display to 1 second rather then %10 reduces cpu load due to javascript excution (Thx Dmole) * Add bmp to the list of allowed / supported album art types * Strip extranious whitespace from cmdline catalog update (Thx ascheel) * Fix catalog size math for catalogs up to 4TB (Thx ) * Fix httpQ not correctly skipping to new song * Fix refreshing of Localplay playlist when an item is skipped to * Fix missing Content-Disposition filename= on non-transcoded songs * Fix refresh of Localplay playlist when you delete a track from it * Added ability to add Ampache as a search descriptor (Thx Vlet) * Correct issue with single song downloads * Removed old useless files * Added local auth method that uses PHP's PAM module * Correct potential security issues due to misuse of REQUEST for write operations rather then POST (Thx Raphael Geissert ) * Finished switching to Dba::read() Dba::write() for database calls (Thx dipsol) * Improved File pattern matching (Thx october.rust) * Updated Amazon Album art search to current Amazon API specs (Thx Vlet) * Fix typo that caused song count to not be set on tag xml response * Fix tag methods so that alpha_match and exact_match work * Fix limit and offset not working on search_songs API method * Fix import m3u on catalog build so it does something * Fix inconsistent view during catalog operations * Sort malformed files into "Unknown (Broken)" rather then leaving them in "Unknown (Orphaned)" * Fix API democratic voting methods (Thx kindachris) * Add server version to API ping response * Fix Localplay API methods (Thx thomasa) * Improve bin/catalog_update.inc to allow only verify, clean or add (Thx ascheel) * Fix issue with batch download and UNC paths (Thx greengeek) * Added config option to turn caching on/off, Default is off * Fix issue where file tag pattern was ignore if files have no tag structure * Add TDRC to list of parsed id3v2 tags * Added the rating to a single song view * Fix caching issue when updating ratings where they would not display correctly until a page reload * Altered the behavior of adding to playlists so that it maintains playlist order rather then using track order * Strip excessive \n's from catalog_update (Thx ascheel) * Fix incorrect default ogg transcode target in base config file * Fix stream user preferences using cached system preferences rather then their own * Fixed prevent_multiple_logins preventing all logins (Thx Hugh) * Added additional information to installation process * Fix PHP 5.3 errors (Thx momo-i) * Fix random methods not working for Localplay * Fixed extra space on prefixed albums (Thx ibizaman) * Add missing operator on tag and rating searches so they will work with other methods (Thx ) * Add MusicBrainz MBID support to uniqly identify albums and also get more album art (Thx flowerysong) * Fix the URL to song function * Add full path to the files needed by the installation just to make it a little clearer * Fixed potential endless loop with malformed genre tags in mp3s (Thx Bernhard Weyrauch) * Fixed web path always returning false on /test.php * Updated Man Page to fix litian problems for Debian packaging * Fixed bug where video was registering as songs for now playing and stats * Add phpmailer and change ampache.cfg.php.dist * Fixed manpage (Thx Porthose) ## 3.5 *2009-05-05* * Added complete Czech translation (Thx martin hason) * Add the AlmightyOatmeal-Sanity check to prevent a clean from removing all songs if your mount failed, but is still readable by ampache * Make the Lang Install page prettier * Added Check for hash,inet_pton,windows PHP Version to init so that upgrades without pre-reqs are handled correctly * Allow mms,mmsh,mmsu,mmst,rstp in Radio Stream URLs * Fixed a problem where after adding a track to a saved playlist there was no UI response upon deleting the track without a page refresh * Fix an issue where the full version of the album art was never used even when requested * Fix maxlength on acl fields being to small for all IPv6 addresses * Add error message when file exists but is unreadable do not remove unreadable songs from catalog * Fixed missing title tag on song browse for the title (Thx flowerysong) * Fix htmlchar'd rss feed url * Fix Port not correctly being added to URL in most cases even when defined in config v.## 3.5-Beta2 04/07/2009 * Fix ASX playlists so more data shows up in WMP (Thx Jon611) * Fix dynamic playlist items so they work in stream methods again * Fixed Recently Played so that it correctly shows unique songs with the correct data * Fix some issues with filenames with Multi-byte characters (Thx Momo-i) * Add WMV/MPG specific parsing functions (Thx Momo-i) * Add text to /test.php for hash() and SHA256() support under PHP section * Fix SHA256 Support so that it references something that exists * Fix incorrect debug_event() on login due to typo * Remove manage democratic playlist as it has no meaning in the current version * Run Dba::reset_db_charset() after upgrade in case people are playing hot potato with their charsets. * Move Server Preferences to Admin menu (Thx geekdawg) * Fixed missing web_path reference on radio creation link * Fixed remote catalog_clean not working * Fixed xmlrpc get image. getEncoding wasn't static ## 3.5-Beta1 *2009-03-15* * Add democratic methods to api, can now vote, devote, get url and the current democratic playlist through the api * Revert to old Random Play method * Added proxy use for xmlrpcclient * Added Configuration 'Wizard' for democratic play * Fixed interface feedback issues with democratic play actions * Add extension to image URLs for the API will add to others as needed due to additional query requirement. Needed to fix some DLNA devices * Fixed typo that caused the height of album art not to display * Modified database and added GC for tmp_browse table * Added get lyrics and album art using http proxy server #313 + username, password patch * Added lyricswiki link Ticket #70 * Updated README language * Updated getid3 library 2.0.0b4 to 2.0.0b5 * Make the Democratic playlist be associated with the user who sends it to a 'player' * Fixed missing page headers on democratic playlist * Show who voted for the sogns on democratic playlist * Increase default stream length to account for the fact that movies are a good bit longer then songs * Correct Issues with multi-byte characters in Lyrics (Thx Momo-i) * Added caching to Video * Added Video calls to the API * Remove redundent code from Browse class by making it extend new Query class * Update Prototype to 1.6.0.3 * Add Time range to advanced search * Add sorting to Video Browse * Changed to new Query backend for Browsing and Dynamic Playlists ## 3.5-Alpha2 *2009-03-08* * Fixed caching of objects with no return value * Fixed updating of songs that should not be updated during catalog verify * Added default_user_level config option that allows you to define the user level when use_auth is false. Also allows manual login of admin users when use_auth is false. * Fix Version checking and Version Error Message on install (Thx Paleo) * Moved Statistics to main menu, split out newest/popular/stats * Fixed bug where saved Thumbnails were almost never used * Fixed Localplay httpQ and MPD controls to recognize Live Stream URLs. * Added Localplay controls to API * Added Added/Updated filters to API include the ability to specify a date range using ISO 8601 format with [START]/[END] * Changed API Date format to ISO 8601 * Fixed Incorrect Caching of Album records that caused the Name + Year + Disk to not be respected * Added Lyrics Patch (Thx alister55 & momo-i) * Fixed password not updating when editing an httpQ Localplay instance * Added Video support * Fixed normalize tracks not re-displaying playlist correctly * Fixed now playing now showing currently playing song * Fixed now playing clear all not correctly refreshing screen * Fixed adding object to playlist so that it correctly shows the songs rather then an empty playlist * Added User Agent to IP History information gathering * Added Access Control List Wizards to make API interface setup easier * Added IPv6 support for Access Control, Sessions, IP History * Fixed sorting issue on artist when using search method * Updated flash player to 5.9.5 * Fixed bug where you admins couldn't edit preferences of users due to missing 'key' on form * Added Mime type to Song XML ## 3.5-Alpha1 *2008-12-31* * Fixed sort_files script so that it properly handles variable album art file names in the directories * Fixed issue where small thumbnails were used for larger images if gd based resizing was enabled in the config * Fixed catalog_update.inc so it doesn't produce errors * Made democratic play respect force http play * Make installation error messages more helpful * Added Swedish (sv_SE) translation (Thanks yeager) * Allow Add / Verify of sub directories of existing catalogs * Prevent an fread of 0 bytes if you seek to the end of a file * Added require_localnet_session config that allows you to exclude IP(s) from session checks, see config.dist * Added Nusoap () library for use with future lyrics feature * Fixed problem with flash player where random URLs were not being added correctly * Fixed problem with user creation using old method (Thx Purdyk) * Switched to SHA256() for API and passwords * Added check for BADTIME error code from Last.FM and correctly return the error rather then a generic one * Fix http auth session issues, where every request blew away the old session information * Many other minor improvements (Thx Dipsol) * Fixed warnings in caching code (Thx Dipsol) * Massive text cleanup (Thx Dipsol) * Fixed tag searching and improved some other search methods to prevent SQL warnings on no results * Improved Test page checks to more accuratly verify putENV support * Make network downsampling a little more sane, don't require access level * Added caching to Playlist dropdown * Fixed double caching on some objects * Added base.css and 4 tag 'font' sizes depending on weight/count * Fixed inline song edit * Updated registration multi-byte mail. * Fixed vainfo.class.php didn't catch exception for first analyze. * Fixed iconv() returns an empty strings (Thx abs0) * Updated getid3 for multi-byte characters, but some wrong id3tags have occurred exception error. * Fixed use_auth = false not correctly re-creating the session if you had just switched from use_auth = true * Add links to RSS feeds and set default to TRUE in config.dist * Fixed Dynamic Random/Related URLs with players that always send a byte offset (MPD) * Added Checkbox to use existing Database * Updated language code and Fixed catalan language code * Added Emulate gettext() from upgradephp-15 () * Fixed Test.php parse error. * Updated multibyte character strings mail. * Fixed To send mail don't remove the last comma from recipient. * Updated More translatable templates. * Removed merge-messages.sh and Add LANGLIST (each languages translation statistics). * Fixed If database name don't named ampache, can't renamed tags to tag. * Fixed count issue on browse Artists (Thx Sylvander) * Fixed prevent_multiple_logins, preventing all logins (Thx hugh) * Fixed Export catalog headers so it corretly prompts you to download the file * Add ability to sort by artist name, album name on song browse * Implemented caching on artist and album browse, added total artist time to the many artist view * Fixed test config page so it bounces you back to the test page if the config starts parsing correctly * Fixed browsing so that you can browse two different types in two windows at the same time * Improved gather script for translations (Thx momo-i) * Added paging to the Localplay playlist * Updated German Translation (Thx Laurent) * Fixed issue where Remote songs would never be removed from the democratic playlist * Fixed issue where user preferences weren't set correctly on stream (Thx lorijho) * Added caching of user preferences to avoid a SQL query on load (Thx Protagonist) * Fixed home menu not always displaying the entire contents * Fixed logic error with duplicate login setting which caused it to only work if mysql auth was used * Changed passwords to SHA1 will prompt to reset password * Corrected some translation strings and added jp_JP (Thx momo-i) * Ignore filenames that start with . (hidden) solves an issue with mac filesystems * Fix tracking of stats for downloaded songs * Fix divide by 0 error during transcode in some configurations * Remove root mysql pw requirement from installer * Added Image Dimensions on Find Album Art page * Added Confirmation Screen to Catalog Deletion * Reorganized Menu System and Added Modules section * Fix an error if you try to add a shoutbox for an invalid object (Thx atrophic) * Fixed issue with art dump on jpeg files (Thx atrophic) * Fixed issue with force http play and port not correctly specifying non-standard http port (Thx Deathcrow) * Remember Starts With value even if you switch tabs * Fixed rating caching so it actually completely works now * Removed redundent UPDATE on session table due to /util.php * Added Batch Download to single Artist view * Added back in the direct links on songs, requires download set to enabled as it's essentially the same thing except with now playing information tied to it * Bumped API Version to 350001 and require that a version is sent with handshake to indicate the application will work * Removed the MyStrands plugin as did not provide good data, and does not appear to have been used * Added Catalog Prefix config option used to determine which prefixes should not be used for sorting * Merged Browse Menu with Home * Added checkbox to single artist view allowing you to enable/disable album art thumbnails on albums of said artist * Added timeout override on update_single_item because the function is a lie * Fix translations so it's not all german * Genre Tag is now used as a 'Tag', Browse Genre removed * Ignore getid3() iconv stuff doesn't seem to work * Improved fix_filenames.inc, tries a translation first then strips invalid characters * Fixed album art not clearing thumbnail correctly on gather * Fixed Localplay instance not displaying correctly after change until a page refresh * Fixed endless loop on index if you haven't played a song in over two years * Fixed gather art and parse m3u not working on catalog create also added URL read support to m3u import * Upped Minimum requirements to Mysql 5.x * Add codeunde1load's Web 2.0 style tag patch * Fixed typo in e-mail From: name (Thx Xgizzmo) * Fixed typo in browse auto_init() which could cause ampache to not remember your start point in some situations. (Thx Xgizzmo)