aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/updateController.php
AgeCommit message (Collapse)Author
2014-10-20Add checking installation featureGravatar Marien Fressinaud
2014-10-07Introduce FreshRSS_Auth::hasAccess('admin')Gravatar Marien Fressinaud
Replace Minz_Configuration::isAdmin($user). FreshRSS_Auth::hasAccess() could be extended to others scopes later. See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-10-06Refactor authentication system.Gravatar Marien Fressinaud
Big work, not finished. A lot of features have been removed. See https://github.com/marienfressinaud/FreshRSS/issues/655
2014-09-17No cache for update systemGravatar Marien Fressinaud
See https://github.com/marienfressinaud/FreshRSS/issues/616
2014-09-17Move button to apply update outside the messageGravatar Marien Fressinaud
2014-09-16Message if last update checking is closeGravatar Marien Fressinaud
last_update.txt is updated even if there is no update If last_update.txt has been modified during last hour, show a message See https://github.com/marienfressinaud/FreshRSS/issues/480#issuecomment-55765373
2014-09-12Log error if update.freshrss.org is unreachableGravatar Marien Fressinaud
2014-09-12Check if update has been done during last minuteGravatar Marien Fressinaud
Cancel check action if update has been done during last hour.
2014-09-08Add data/last_update.txtGravatar Marien Fressinaud
Remember last update timestamp.
2014-09-08Check FRESHRSS_PATH is writable.Gravatar Marien Fressinaud
FRESHRSS_PATH needs to be writable before performing update.
2014-08-12Update system now uses HTTPS connectionGravatar Marien Fressinaud
- Add some curl checks - Refactor code
2014-08-10Litlle improvements (update system)Gravatar Marien Fressinaud
- Check UPDATE_FILENAME exists before applying update - Add empty line at the end of files
2014-08-10Improve update APIGravatar Marien Fressinaud
Update script must implement 4 functions: - apply_update() to perform the update (most important). Return true if all is ok, else false. - need_info_update() returns true if we need more info for update, else false. If this function always returns false, you don't need to implement following functions (but it's better to not forget) - ask_info_update() should be a HTML form to ask infos. Method must be post and action must point to _url('update', 'apply') (or leave it blank) - save_info_update() is called for POST requests (to save form from ask_info_update())
2014-08-10Add translations for update systemGravatar Marien Fressinaud
2014-08-09Add basic system of updateGravatar Marien Fressinaud
- Check on update.freshrss.org for new updates - Download script - Apply script - Need translations and verifications NOTE: current script on server indicates version 0.7.3 is an update of 0.8-dev ==> IT'S ONLY FOR MY TESTS! Script just does a backup of ./data actually... See https://github.com/marienfressinaud/FreshRSS/issues/411