aboutsummaryrefslogtreecommitdiff
path: root/app
AgeCommit message (Collapse)Author
2018-03-03Move shares (#1812)Gravatar Alexandre Alapetite
From ./data/ to ./app/ Fix manual updates like https://github.com/FreshRSS/FreshRSS/issues/1803#issuecomment-369371907 Left for later: support a ./data/shares.local.php for user-defined shares.
2018-03-03Fix bug when using double authentication (#1809)Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1807
2018-03-02Add tooltips on share configuration buttons (#1805)Gravatar Alexis Degrugillier
Add a tooltip on the add and remove buttons in the share configuration page.
2018-03-01cleanOldEntries call autoUpdateDb (#1804)Gravatar Alexandre Alapetite
* cleanOldEntries call autoUpdateDb https://github.com/FreshRSS/FreshRSS/issues/1803 * Fix feedDAO autoUpdateDb * Move cleanOldEntries to EntryDAO Only the entry table is concerned
2018-02-28Feed parsing: use author email when there's no author name (#1801)Gravatar perrinjerome
This is especially useful because when author is given as `<author>Author Name</author>` ( as in this example https://cyber.harvard.edu/rss/rss.html#ltauthorgtSubelementOfLtitemgt ), SimplePie will expose *Author Name* as `email`.
2018-02-23Fix Dutch typos (#1792)Gravatar Jan van den Berg
2018-02-19Option to hide nav_entries (#1764)Gravatar Matt DeMoss
* put nav_entries in a div so they can be hidden, add config option, no labels yet * add English text for hide_nav_entries, choose better name * Update conf.php add comma to last item * hide nav_entries by optionally not rendering in normal.phtml * fix logic, remove containing div * apply phpcbf to ConfigurationSetter.php * Make navigation buttons options positive And add TODOs for i18n, and add default config.
2018-02-14Fix notice when managing user (#1785)Gravatar Alexis Degrugillier
See #1765 & #960
2018-02-14Allow admin user to reset passwords (#1765)Gravatar Alexis Degrugillier
See #960
2018-02-08API /reader/api/0/stream/items/contents (#1774)Gravatar Alexandre Alapetite
* API /reader/api/0/stream/items/contents For FeedMe * Fix continuation * Continuation in stream/items/ids * Fix multiple continuations * Allow empty POST tokens For FeedMe. This token is not used by e.g. The Old Reader API. There is the Authorization header anyway. TODO: Check security consequences * API compatibility FeedMe: add/remove feed FeedMe uses GET for some parameters typically given by POST * A bit of sanitization * Links to FeedMe * API favicons more robust when base_url is not set * Changelog FeedMe
2018-02-05param nameGravatar Django Janny
2018-02-02Trim spaces from user given urlGravatar Django Janny
2018-01-31[i18n] Translated to Korean (#1776)Gravatar Seokseong Jeon
2018-01-26Fix shortcuts for view switchingGravatar Alexis Degrugillier
I've introduced shortcuts to switch between view in #1755. They have been broken by #1714. Then I've made an ugly fix in #1758. This change revert all changes to have something better. See #1757
2018-01-24fixed css classes for reading mode buttons #1714Gravatar Kevin Papst
2018-01-16[i18n] Add ignore/zh-cn and update simplified Chinese translation (#1769)Gravatar hoilc
* update Simplified Chinese translation * update the description of buttons #1766 * trim space to pass PHPCS
2018-01-13Update translations to reflect the real action of buttons (#1766)Gravatar Alexis Degrugillier
See #1574
2018-01-11Allow favorite in reading mode (#1761)Gravatar Alexis Degrugillier
I've got the inspiration from the mark as read action. So I've used the id of the feed to trigger the action and not the url in the link. This way, it works all the time. It works in reading mode, it works in normal mode when icon are not displayed. See #1545
2018-01-11Update travis config (#1751)Gravatar Alexis Degrugillier
I've enabled tests on PHP 7.2 since it's the latest stable version. I've also installed phpcs from composer since PEAR is not available for all versions of PHP.
2018-01-02Replace "keep history" magic value by a constant (#1759)Gravatar Alexis Degrugillier
I think the use of a magic value repeated many times in the code is prone to have some errors made by people not knowing its meaning. Using a constant is a bit more safe. Judging by some comments in the code, I am not the only one.
2018-01-01Fix login bug when HTTP REMOTE_USER changesGravatar Alexandre Alapetite
https://github.com/YunoHost-Apps/freshrss_ynh/issues/33
2018-01-01Merge pull request #1714 from kevinpapst/hook-readingmodesGravatar Alexandre Alapetite
Added extension hook for reading modes
2018-01-01Minor syntaxGravatar Alexandre Alapetite
2018-01-01Add mute strategy configuration (#1750)Gravatar Alexis Degrugillier
2018-01-01Add shortcuts to switch views (#1755)Gravatar Alexis Degrugillier
2017-12-19PHP 7.2: Fix a warning when retrieving the list of entries (#1739)Gravatar Alexis Degrugillier
When retrieving the list of entries when the context was 'all' or 'starred', there was the following warning: > Warning: count(): Parameter must be an array or an object that implements Countable in /home/alexis/FreshRSS/app/Controllers/indexController.php on line 206 I fixed that by changing how the array is tested.
2017-12-17Remove warning for CURLOPT_FOLLOWLOCATION with open_basedir (#1734)Gravatar Alexandre Alapetite
For PHP 5.6.0- http://www.php.net/ChangeLog-5.php#5.6.0 https://bugs.php.net/bug.php?id=65646 https://github.com/FreshRSS/FreshRSS/pull/1733 https://github.com/FreshRSS/FreshRSS/pull/1657 https://github.com/FreshRSS/FreshRSS/issues/1655
2017-12-17fixed bug when adding a category and feed at the same time (#1731)Gravatar Kevin Papst
fixed bug when adding a category and feed at the same time
2017-12-1618n Hebrew more 2Gravatar Alexandre Alapetite
2017-12-16i18n hebrew moreGravatar Alexandre Alapetite
2017-12-16Fix whitespaceGravatar Alexandre Alapetite
2017-12-16Merge branch 'dev' into hebrew-i18nGravatar Alexandre Alapetite
2017-12-10Merge branch 'dev' into logfilesizeGravatar Alexandre Alapetite
2017-12-10Check requirement in CLI script (#1711)Gravatar Kevin Papst
* check requirements in actualize_script before executing, fixes #1710 * removed empty whiteline * testing all requirements * incorporated code review feedback * removed code that is already executed in _cli.php * added newline at eof * fixed include problems * fixed include problems
2017-12-10Log rotation, use Minz_Log, new log constantsGravatar Alexandre Alapetite
ADMIN_LOG, API_LOG, PSHB_LOG
2017-12-10refactored ReadingModes to ModelGravatar Kevin Papst
2017-12-10added new extension hookGravatar Kevin Papst
using hook for reading modes in navigation
2017-12-06Show existing extensions in admin panel (#1708)Gravatar Kevin Papst
* first draft * display installed extension state * fixed whitespace vs tabs * added translation in all languages * added error checks and log messages * fixed tabs vs whitespace * another try in fixing whitespaces * another try in fixing whitespaces * improved extension list translations * using JSON from official extension repo * improved version compare * updated translations * French translation
2017-12-03Extension function to override entry hash (#1707)Gravatar Alexandre Alapetite
Extension function to override entry hash https://github.com/FreshRSS/FreshRSS/issues/1706
2017-12-02Update panel shows latest version message as success (#1701)Gravatar Kevin Papst
show latest version message as success, FIXES #1586
2017-12-01I18n - DE (#1698)Gravatar Kevin Papst
* added missing german translations
2017-11-12A bit of documentation for the API (#1689)Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/1687 https://github.com/FreshRSS/FreshRSS/issues/443#issuecomment-36666133
2017-11-04Small fix Mastodon shareGravatar Alexandre Alapetite
$a['method'] can be undefined. https://github.com/FreshRSS/FreshRSS/pull/1674 https://github.com/FreshRSS/FreshRSS/issues/1521
2017-11-04Add a Mastodon share (#1674)Gravatar Alexis Degrugillier
See #1521
2017-10-26improve zh-cn i18n (#1678)Gravatar hoilc
2017-10-17Fix typo in nl i18n (#1675)Gravatar Alexis Degrugillier
2017-10-12CLI optimize database (#1663)Gravatar Alexandre Alapetite
CLI optimize database https://github.com/FreshRSS/FreshRSS/issues/1583 And VACUUM in SQLite https://github.com/FreshRSS/FreshRSS/issues/918 Add VACUUM for PostgreSQL (Not tested yet)
2017-10-10[i18] nl/sub: add a few translationsGravatar Frans de Jonge
2017-10-10Merge pull request #1658 from aledeg/improve-i18n-toolsGravatar Alexandre Alapetite
Improve translation tools
2017-10-10Improve translation toolsGravatar Alexis Degrugillier
I was not happy with the previous version. I refactored everything to make it reusable. It allows me do do more verifications and to build a tool to handle the files themselves.