| Age | Commit message (Collapse) | Author |
|
* git clean before git auto-update
To avoid https://github.com/FreshRSS/FreshRSS/issues/2012 in the future
* More generic SQLite file filter
* Another -f
https://git-scm.com/docs/git-clean
|
|
show latest version message as success, FIXES #1586
|
|
Do not require write access to check if new ZIP version is available
https://github.com/FreshRSS/FreshRSS/issues/1450
|
|
Code from the update server was not loaded anymore before the update
process. This commit brings back missing `require`.
|
|
|
|
https://github.com/FreshRSS/FreshRSS/issues/907
https://github.com/FreshRSS/FreshRSS/issues/1355
|
|
Fix https://github.com/FreshRSS/FreshRSS/issues/1019
|
|
In particular, ensure that ERROR is only used for errors that may affect
FreshRSS integrity, and ensure that feed errors are visible also in
production, i.e. visibility of WARNING
https://github.com/FreshRSS/FreshRSS/issues/885
https://github.com/FreshRSS/FreshRSS/issues/884
|
|
There were warnings when reading extensions (trying to use e.g. README
and .gitignore as directories), and when reading update file.
https://github.com/FreshRSS/FreshRSS/issues/733
|
|
- To the hook is associated a method signature (OneToOne or NoneToNone for now) so
it is easier to call hooks correctly
- post_update hook is called during the post update moment.
|
|
|
|
Number is stored inside the data/last_update.txt file and shown if there
is an update script.
See https://github.com/FreshRSS/FreshRSS/issues/699
|
|
|
|
|
|
|
|
|
|
Replace Minz_Configuration::isAdmin($user). FreshRSS_Auth::hasAccess() could
be extended to others scopes later.
See https://github.com/marienfressinaud/FreshRSS/issues/655
|
|
Big work, not finished. A lot of features have been removed.
See https://github.com/marienfressinaud/FreshRSS/issues/655
|
|
See https://github.com/marienfressinaud/FreshRSS/issues/616
|
|
|
|
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
|
|
|
|
Cancel check action if update has been done during last hour.
|
|
Remember last update timestamp.
|
|
FRESHRSS_PATH needs to be writable before performing update.
|
|
- Add some curl checks
- Refactor code
|
|
- Check UPDATE_FILENAME exists before applying update
- Add empty line at the end of files
|
|
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())
|
|
|
|
- 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
|