1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 17:59:21 +02:00
Commit graph

128 commits

Author SHA1 Message Date
Afterster
05f37b54d8 Set information flag if artist update was update manually (fix #1012) 2016-01-11 21:27:12 +01:00
Afterster
55f011aea2 Fix user avatar upload (fix #1084) 2016-01-04 21:53:02 +01:00
Afterster
c2039e9ff0 Add art id to generated art url (fix #996)
Lighted player and library item edition dialog
2015-12-26 23:40:35 +01:00
Afterster
1bb268a66d Fix Subsonic genres when using json format
Change Large album art browsing view to 200px
Add unique constraint on tag map
Change popular and favorite stats object type order
2015-12-24 00:14:55 +01:00
Afterster
bb24bedfa6 Re-generate thumb art if the entry is found in database but not the data itself (fix #1070) 2015-12-23 20:29:44 +01:00
Afterster
58fa76fe3d Display large covert arts if grid view is disabled for target item type 2015-12-19 15:55:12 +01:00
Afterster
4ca86c15ac CSS trick to remove grid view 2015-12-19 14:51:30 +01:00
Afterster
47faff9523 Remove debugging code on song insertion error
Update song id3 tags after writing
Add variable sanity checks on mpd localplay, scrobbler and search classes
2015-12-18 22:22:17 +01:00
Afterster
d6234db15f Fixed undefined call to undeclared property on catalog update since custom metadata feature addition (fix #1042) 2015-12-08 07:41:52 +01:00
Afterster
92fcb84670 Rename Error class to AmpError (fix php7 Error class name conflict) 2015-12-04 14:00:01 +01:00
Afterster
9c3637b879 Change license from GPLv2 to AGPLv3 2015-12-02 20:46:34 +01:00
Afterster
a340c30872 Update code style script with new checks 2015-11-18 22:39:49 +01:00
Afterster
5124a5ed4c Merge branch 'develop' of https://github.com/Psy-Virus/ampache into Psy-Virus-develop
Conflicts:
	templates/show_album_row.inc.php
	templates/show_artist_row.inc.php
	templates/show_label_row.inc.php
	templates/show_playlist_song_row.inc.php
	templates/show_song_row.inc.php
	templates/show_video_row.inc.php

Apply align_equals and concat_with_spaces on code style
2015-11-07 08:08:59 +01:00
Afterster
f2e69a198f Fix Wanted feature with latest MusicBrainz library release 2015-09-16 22:55:02 +02:00
Afterster
5094e2e1a1 Fix MusicBrainz Request http adapter use 2015-09-16 22:12:02 +02:00
Afterster
8a1ea90ed4 Add m3u8 playlist import
Use audioscrobbler API v2 for album search
2015-09-06 10:08:36 +02:00
Afterster
47a6585c88 Use latest php-cs-fixer version 2015-07-29 21:59:12 +02:00
nan4k7
8080be991b Change get_dir_on_disk function from private to public
In order to make the binary calculate_art_size to work get_dir_on_disk function had to change from private to public
2015-07-04 06:47:23 -03:00
Afterster
36eb36d455 Don't require valid session on image if use_auth or require_session settings are disabled 2015-05-13 07:18:41 +02:00
Afterster
2835e4c330 Add delete from disk setting and delete actions on most library items 2015-04-26 09:55:14 +02:00
Afterster
142105a6c7 Allow users to edit songs metadata and album art on their uploads 2015-04-15 07:35:23 +02:00
Afterster
95dfb9e2e1 Fixed #797: Artist bio picture does not load in mobile app 2015-04-07 21:11:43 +02:00
Afterster
496932f779 Add Art::insert_from_file method 2015-04-06 21:33:29 +02:00
Afterster
ec519a47cb Fix album art gathering option (fix #766) 2015-04-03 13:49:59 +02:00
SeregaPru
5d09e7dcad Fix: special chars in songs names and tags correct support 2015-03-21 01:37:42 +04:00
Afterster
cd8334b67f Add image thumb on search preview 2015-02-23 21:51:03 +01:00
Afterster
f587dfe6c5 Avoid amazon plug-in activation mistake 2015-02-08 20:37:13 +01:00
Afterster
411ad4b06c Use proxy settings on all get Requests 2015-02-05 13:56:12 +01:00
Afterster
a9d74c58ad Set image thumb size in playlist item directly 2015-02-02 07:44:00 +01:00
Afterster
def9bc9371 Fixed #706: Album art is not resized in the web player 'poster' box 2015-02-02 06:50:36 +01:00
Afterster
aa3029ef7b Fix new Scrutinizer issues since scrutinizer tool update 2015-02-01 21:14:14 +01:00
Afterster
cd55dda99d Fix disk number and album artist metadata read from quicktime files (fix #684 and fix #685) 2015-01-23 06:45:38 +01:00
Afterster
4f204d2d73 Add checks on album art remove from file
Fix break line in lyrics from file tags (end fix #414)
2015-01-22 22:06:55 +01:00
Afterster
6df66768ab Add ability to store images on disk (fix #131)
Add new settings to define art min and max width/height (fix #584)
2015-01-22 03:42:05 +01:00
Afterster
d17d9d2973 Merge branch 'image-dimensions' of https://github.com/tsquare66/ampache into tsquare66-image-dimensions 2015-01-14 07:35:47 +01:00
Lawrence Brown
60a653daf4 copyright 2014 -> 2015
janitorial services
2015-01-04 21:36:41 +00:00
Lawrence Brown
447647910e loop over directories the "correct" way
see http://php.net/manual/en/function.readdir.php - specifically:

    /* This is the correct way to loop over the directory. */
    while (false !== ($entry = readdir($handle))) {
        echo "$entry\n";
    }

    /* This is the WRONG way to loop over the directory. */
    while ($entry = readdir($handle)) {
        echo "$entry\n";
    }
2015-01-03 16:29:17 +00:00
tsquare66
5ca3053bc8 Add dimension info (width & height) in table image
Add width & height search function for albums
2014-12-03 10:06:37 +01:00
Afterster
0a6a6bad7b Fix missing album list when current albums have only release mbid without release group mbid 2014-11-12 22:59:17 +01:00
Afterster
173d5e9d76 Requires user catalog right to edit arts
Avoid additional sql requests on searches
2014-10-15 22:37:06 +02:00
Afterster
9b910a40d1 Duplicate arts on song artist/album changes if required
Hide rating from random albums/videos if user is unauthorized
2014-10-03 07:19:51 +02:00
Afterster
bef75fd05a Add Favorite and Rating to playlists
Improve Guest user view when use_auth=false
2014-10-02 21:23:07 +02:00
Afterster
160c59dea2 Fix Scrutinizer issues 2014-09-30 07:47:21 +02:00
Afterster
66dd1ff782 Image art on artists edition and index display preferences 2014-09-15 07:37:17 +02:00
Afterster
a5cd83d6cd Fixed #447: Reseting art stops the player 2014-09-13 22:54:34 +02:00
Afterster
23486b86a7 Migrate item stats and arts when check() returns a new id (fix #424) 2014-09-07 16:16:18 +02:00
Afterster
034a6341fb Add Plex edition on missing library items 2014-08-05 02:10:23 +02:00
Afterster
4139baac86 Fix album group directplay 2014-08-02 23:53:23 +02:00
Afterster
467e071b73 Add few songs & videos metadata
Add release type on albums
Add methods code comments on few classes
Display release date on all videos
2014-08-02 22:48:41 +02:00
Afterster
58e8150d70 Add gather_art from files for video files (thanks wagnered) 2014-07-30 23:53:51 +02:00