aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-06-29Fix wrong mark-as-read maxId argument (#2431)Gravatar Alexandre Alapetite
Fix https://github.com/FreshRSS/FreshRSS/issues/2429
2019-06-23Add FAQ for admin section (#2427)Gravatar Alexis Degrugillier
See #1987 and #2102
2019-06-22Minor readmeGravatar Alexandre Alapetite
2019-06-22Changelog + credits updateGravatar Alexandre Alapetite
2019-06-22jQuery 3.4.1 (#2424)Gravatar Alexandre Alapetite
Only used for statistics graphs
2019-06-22Allow email as admin username (#2421)Gravatar Alexandre Alapetite
Fix https://github.com/FreshRSS/FreshRSS/issues/2418 https://github.com/FreshRSS/FreshRSS/pull/2407
2019-06-22Merge pull request #2422 from Alkarex/docker_ubuntu_19.04Gravatar Alexis Degrugillier
Update Docker to Ubuntu 19.04
2019-06-22Merge pull request #2423 from Alkarex/docker_alpine_3.10Gravatar Alexis Degrugillier
Update Docker Alpine to 3.10
2019-06-21Update Docker Alpine to 3.10Gravatar Alexandre Alapetite
2019-06-21Update Docker to Ubuntu 19.04Gravatar Alexandre Alapetite
2019-06-21Change category configuration (#2410)Gravatar Alexis Degrugillier
* Change category configuration Before, we had a drop-down list to interract on categories. It was not working the same way as feeds. Now, categories and feeds behave in a similar manner. At the moment, there is no change in features but it will allow to expand them. See #2369 * Minor whitespace
2019-06-21Make Aside sit on top of New Articles Popup (#2416)Gravatar Patrick
Fixes #2379.
2019-06-16Fix line break in table (#2413)Gravatar Sp3r4z
* Fix line return Better with HTML native `<br>` than with `\\` * Fix line break Replace `\\` by native HTML `<br>`
2019-06-16Allow email as username (#2407)Gravatar Alexis Degrugillier
* Allow email as username Before, it was possible to register email as username on cli but not in the interface. This was caused by a bug in the pattern which was not working as expected. If your input was "user@example.com", the PHP verification was catching only "user" and was acting like the whole thing was catched. But on the interface, the catching was unsuccesful. Now, the catching should be working properly. I needed to add "$|^" in the pattern because without, I was catching either the beginning of a string either the last char. This was introduced as a workaround for IE/Edge pattern matching on April 27, 2017. See #1511 for more information. I tested it only on FF. Tests on other browsers wanted. See #2391 * Relax and fix username check Allow @ + - * Remove + for now https://github.com/FreshRSS/FreshRSS/pull/2407#issuecomment-502469137
2019-06-16Fix API remove category (#2412)Gravatar Alexandre Alapetite
Fix https://github.com/FreshRSS/FreshRSS/issues/2411
2019-06-16Add Dockerfile links for PHP modules list (#2409)Gravatar Sp3r4z
* Add whole PHP modules Dockerfile link * Add Dockerfile link to whole PHP modules list
2019-06-14Fix shortcut configuration page. (#2406)Gravatar Alexis Degrugillier
Before, first and last entry shortcuts were located under the "no-modifier" section. But they were actually working properly with the modifiers. Now, they are located under the "modifier" section. See #2405
2019-05-30Merge pull request #2374 from aledeg/feature/print-cssGravatar Alexandre Alapetite
Add theme to print page
2019-05-30Merge pull request #2388 from lx-s/patch-1Gravatar Alexandre Alapetite
Configurable amount of feeds that gets refreshed.
2019-05-30Merge pull request #2389 from Fake4d/patch-1Gravatar Alexandre Alapetite
Update 03_Main_view.md
2019-05-30Fix typosGravatar Alexandre Alapetite
2019-05-30Merge pull request #2390 from Fake4d/patch-2Gravatar Alexandre Alapetite
Update 06_Fever_API.md
2019-05-30Remove /de/ in URLGravatar Alexandre Alapetite
2019-05-30Merge pull request #2399 from aledeg/fix/filter-actionGravatar Alexandre Alapetite
Fix filter action display
2019-05-30Fix filter action displayGravatar Alexis Degrugillier
Before, there was extra white lines between search terms when displaying the data. It was not an issue for the storage since they were discarded during the save process. But it was confusing. Now, extra white lines are stripped.
2019-04-29Update 06_Fever_API.mdGravatar Fake4d
Reeder-4 is new - Reeder-3 is the old version BUT: 3 is free ;-) And you have to pay for the new version.. So I dont know whether this should be linked here..
2019-04-29Update 03_Main_view.mdGravatar Fake4d
Typo in Param maxFeeds
2019-04-29Update 03_Main_view.mdGravatar Fake4d
Document all the parameters for "feed actualize". the new parameter "maxfeeds" from Pull Request #2388 is already considered.
2019-04-29Configurable amount of feeds that gets refreshed.Gravatar Alexander Steinhöfer
Enhanced actualizeFeed with a maxFeeds-Parameter, so that a user can control how many feeds he wants to refresh instead of being force to choose between "10 or all".
2019-04-16Add theme to print pageGravatar Alexis Degrugillier
Before, the printed page didn't have any usable CSS. Now, it uses the css files available in the application. It means that custom CSS can be add to target printed page. See #2149
2019-04-16Merge pull request #2376 from Alkarex/fix_sage_svgGravatar Alexandre Alapetite
Fix Sage theme SVG refresh
2019-04-16Forgotten colourGravatar Alexandre Alapetite
2019-04-16More minimal patchGravatar Alexandre Alapetite
2019-04-16Fix Sage theme SVG refreshGravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/2375
2019-04-08Start next version 1.14.3-devGravatar Alexandre Alapetite
2019-04-08Merge pull request #2368 from FreshRSS/dev1.14.2Gravatar Alexandre Alapetite
FreshRSS 1.14.2
2019-04-08Release FreshRSS 1.14.2Gravatar Alexandre Alapetite
2019-04-08Merge branch 'master' into devGravatar Alexandre Alapetite
2019-04-08Changelog 2359 - 2362Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/2359 https://github.com/FreshRSS/FreshRSS/pull/2361 https://github.com/FreshRSS/FreshRSS/pull/2362
2019-04-08[CI] Force php -l failure (#2363)Gravatar Frans de Jonge
* [CI] Force php -l failure By redirecting stderr to a file and checking if the filesize is greater than 0 bytes, we can also force failure for warnings. See discussion in <https://github.com/FreshRSS/FreshRSS/pull/2362#issuecomment-480623161>. * exclude JSON lib
2019-04-07Fix API minor code syntax warning (#2362)Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/2359#issuecomment-480620713
2019-04-07Fix PHP 5.5 compat for array const (#2360)Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/issues/2359
2019-04-07[CI] php -l syntax check (#2361)Gravatar Frans de Jonge
As suggested by @Alkarex in <https://github.com/FreshRSS/FreshRSS/issues/2359#issuecomment-480608408>.
2019-04-07Update for Unfolded categories (#2358)Gravatar Quentí
The participi passat is AT for the verbs ending with AR is the subject is masculine and ADA for a feminine subject :) L’article que m’a agradat : the article I liked La categoria que m’a agradada : the category I liked
2019-04-07Prepare next version 1.14.2-devGravatar Alexandre Alapetite
2019-04-07Merge pull request #2338 from FreshRSS/dev1.14.1Gravatar Alexandre Alapetite
FreshRSS 1.14.1
2019-04-07Release FreshRSS 1.14.1Gravatar Alexandre Alapetite
2019-04-07i18n zh unfolded categories (#2357)Gravatar Alexandre Alapetite
https://github.com/FreshRSS/FreshRSS/pull/2313 Thanks to @ZhongyuWang
2019-04-07Cherry pick from 2335 (#2356)Gravatar Alexandre Alapetite
Cherry pick bug fix from https://github.com/FreshRSS/FreshRSS/pull/2335 This code is currently not used.
2019-04-07Fix quote escaping on CLI (#2355)Gravatar Alexis Degrugillier
for translation manipulations