Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Ampache now requires PHP 5.3 or greater... 'JFDI' | Karl Vollmer | 2011-11-30 | 1 | -4/+1 |
| | |||||
* | FS#201 - Video files broken in search | Paul Arthur | 2011-11-28 | 1 | -0/+1 |
| | | | | | Video searching was trying to use explode instead of implode. That won't work. | ||||
* | Updated changelog | Karl Vollmer | 2011-11-23 | 1 | -0/+2 |
| | |||||
* | Add the ability to locally cache passwords validated by external means | Paul Arthur | 2011-11-18 | 1 | -0/+2 |
| | | | | | | This can, for instance, be used to allow LDAP authenticated users to use the API without manually setting a password, as long as they've logged in using the web interface at least once. | ||||
* | Fix custom session handler. | Paul Arthur | 2011-11-09 | 1 | -0/+2 |
| | | | | | | | We were manually loading the vauth class (apparently to work around a bug in Synology's PHP) but not calling vauth::_auto_init(), so the default session handler was used. This normally does session locking, so bad things happened. | ||||
* | FS#195 - Unable to gather album art from lastfm | Paul Arthur | 2011-11-09 | 1 | -0/+1 |
| | | | | Cleaned up the code, might work now. Untested. | ||||
* | Update Captcha PHP to 2.3 | Paul Arthur | 2011-10-27 | 1 | -0/+1 |
| | | | | http://freshmeat.net/projects/captchaphp | ||||
* | Update getID3 to 1.9.1 | Paul Arthur | 2011-10-27 | 1 | -0/+1 |
| | |||||
* | Update PHPMailer to 5.2.0 | Paul Arthur | 2011-10-27 | 1 | -0/+1 |
| | |||||
* | FS#193 - Localplay MPD cannot turn off Repeat or Random | Paul Arthur | 2011-10-10 | 1 | -0/+2 |
| | | | | | The rewritten MPD module did not allow passing false values to MPD. Using isset instead of boolean evaluation fixes this. | ||||
* | Escape config values when outputting the config file | Stephen Shkardoon | 2011-09-19 | 1 | -0/+1 |
| | | | | Allows for odd characters in the database username and password. | ||||
* | Null is an acceptable session auth type if use_auth=false. FS#182. | Paul Arthur | 2011-09-12 | 1 | -0/+2 |
| | |||||
* | Fix FS#175 - Advanced Random Resets Item Count to 1 | Paul Arthur | 2011-08-12 | 1 | -0/+1 |
| | |||||
* | Some Catalog cleanup and enhancement. | Paul Arthur | 2011-08-12 | 1 | -0/+3 |
| | |||||
* | Make the API return more data for songs | Paul Arthur | 2011-06-28 | 1 | -0/+1 |
| | |||||
* | Fix broken API method | Paul Arthur | 2011-06-28 | 1 | -0/+1 |
| | | | | | Api::search_songs needed to declare a type, and Search::run needed to honour that declaration. | ||||
* | Make require_session work with local auth. | Paul Arthur | 2011-05-31 | 1 | -0/+1 |
| | |||||
* | Partial fix for catalog filtering | Paul Arthur | 2011-05-26 | 1 | -0/+1 |
| | | | | | Acting on 'click' sends the AJAX request as soon as the user clicks to make the dropdown drop down; watch for 'change' instead. | ||||
* | UI fix for toggling artwork | Paul Arthur | 2011-05-26 | 1 | -0/+1 |
| | |||||
* | Clean up API::handshake | Paul Arthur | 2011-05-26 | 1 | -0/+1 |
| | | | | | Use Access::check_network to check the ACLs. Be more restrictive about validating timestamps. Miscellaneous cleanup (line wraps, etc.) | ||||
* | Cosmetics: Changelog grammar | Paul Arthur | 2011-05-26 | 1 | -1/+1 |
| | |||||
* | JS-less install should work better. | Paul Arthur | 2011-05-04 | 1 | -0/+1 |
| | |||||
* | Changelog entry. | Paul Arthur | 2011-05-04 | 1 | -0/+1 |
| | |||||
* | Do some clean up of the code for finding duplicate songs | Paul Arthur | 2011-04-29 | 1 | -0/+1 |
| | | | | | | No joins were necessary for what it was doing; cartesian joins even less so. Limiting display to two duplicates was bogus. Ordering by the number of duplicates in ascending order was an odd choice. | ||||
* | Add some missing changelog entries | Paul Arthur | 2011-04-27 | 1 | -1/+12 |
| | |||||
* | Fix display not updating during catalog updates. | Paul Arthur | 2011-04-18 | 1 | -0/+1 |
| | | | | | | Consistently use $this instead of $catalog or (no longer set) local variables that duplicated class variables in the templates, minor quoting cosmetics. | ||||
* | Fix display of duplicate search | Adam Grissom | 2011-04-18 | 1 | -0/+1 |
| | |||||
* | Fix byterange bug | Brady Wetherington | 2011-03-29 | 1 | -0/+1 |
| | | | | | Byteranges can start with zero - e.g. 0-1 is a valid byterange, and should invoke 'byterange' mode. | ||||
* | Fixed issue with updating ACLs under Windows (reported by Citlali) | Paul Arthur | 2011-02-21 | 1 | -0/+1 |
| | |||||
* | Add function that check ampache and php version from each website. | momo-i | 2011-02-04 | 1 | -0/+1 |
| | |||||
* | Update docs | momo-i | 2011-02-04 | 5 | -45/+53 |
| | |||||
* | Implement ldap_require_group | Elias Probst | 2010-12-07 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | Squashed commit of the following: commit 4cba31ed7a607cf955b39131ca598d4f8b7553b6 Author: Elias Probst <mail@eliasprobst.eu> Date: Tue Dec 7 23:08:47 2010 +0100 Improved LDAP group matching regex to make sure, the whole string is matched. commit 1a056e6fdac3c3c3f141283dad25a407a4c897a1 Author: Elias Probst <mail@eliasprobst.eu> Date: Tue Dec 7 23:08:02 2010 +0100 Implementation for the still missing 'ldap_require_group' feature. Including changes suggested in http://ampache.org/bugs/task/150#comment103 | ||||
* | fixed typo. | momo-i | 2010-11-05 | 1 | -1/+1 |
| | |||||
* | Updated Doc | Chris 'cslamar' Slamar | 2010-11-02 | 1 | -1/+7 |
| | |||||
* | Fix potential issue with Apache+Windows causing extranous slash in path ↵ | Karl 'vollmerk' Vollmer | 2010-10-29 | 1 | -0/+1 |
| | | | | during install | ||||
* | Update Readme to correctly list supported clients | Karl 'vollmerk' Vollmer | 2010-10-12 | 1 | -2/+2 |
| | |||||
* | Break everyone's config by changing metadata gathering. | Paul 'flowerysong' Arthur | 2010-10-06 | 2 | -0/+4 |
| | |||||
* | Plugin work. Plugins are now pluggable: no plugin-specific code in the main ↵ | Paul 'flowerysong' Arthur | 2010-06-22 | 2 | -0/+26 |
| | | | | | | | Ampache code. Plugins are now updatable, if configuration changes are needed for a new version. | ||||
* | Use scrub_out when displaying update status; scrub_out calls htmlentities with | Paul 'flowerysong' Arthur | 2010-06-14 | 1 | -0/+1 |
| | | | | the proper charset argument. Fixes mangled output string w/non-ASCII filenames. | ||||
* | Preserve keys when slicing up the tmpplaylist array. Fixes FS#112, reported by | Paul 'flowerysong' Arthur | 2010-06-10 | 1 | -0/+1 |
| | | | | Pietje Puk. | ||||
* | Change Browse from static to instantiable. Among other things, fixes FS#13; | Paul 'flowerysong' Arthur | 2010-06-10 | 1 | -0/+1 |
| | | | | | probably also breaks things. Most things appear to still work, but I may have missed some cases. | ||||
* | Always update the access level associated with a preference, even if it's a | Paul 'flowerysong' Arthur | 2010-06-09 | 1 | -0/+1 |
| | | | | password and not itself being updated. | ||||
* | Cleanup and rationalisation of authentication related code. Among other things, | Paul 'flowerysong' Arthur | 2010-05-29 | 1 | -0/+1 |
| | | | | fixes FS#99. | ||||
* | Art work. Rationalise DB schema, support multiple thumbnail sizes and | Paul 'flowerysong' Arthur | 2010-05-05 | 1 | -0/+1 |
| | | | | | caching thereof, call Catalog->gather_art instead of Catalog->gather_album_art, unbreak (hopefully) gather_musicbrainz. | ||||
* | Cosmetics. %s/assoicated/associated/g | Paul 'flowerysong' Arthur | 2010-04-28 | 1 | -1/+1 |
| | |||||
* | I will eventually remember to update the changelog at the same time I make ↵ | Paul 'flowerysong' Arthur | 2010-04-28 | 1 | -0/+2 |
| | | | | the changes. | ||||
* | Pad track number with zeros, like the doc says. Fixes FS#58, reported by ↵ | Paul 'flowerysong' Arthur | 2010-04-15 | 1 | -0/+1 |
| | | | | Adam Grissom. | ||||
* | Enhanced rating search; uses correct algorithm for calculation, allows | Paul 'flowerysong' Arthur | 2010-03-23 | 1 | -0/+2 |
| | | | | specification of the operator. | ||||
* | Add ability to generate thumbnails via catalog_update and also generate ↵ | Karl 'vollmerk' Vollmer | 2010-03-21 | 1 | -0/+2 |
| | | | | thumbnails during art add | ||||
* | Switch Album so it uses new art methods | Karl 'vollmerk' Vollmer | 2010-03-21 | 1 | -0/+2 |
| |