| Age | Commit message (Collapse) | Author |
|
https://github.com/FreshRSS/FreshRSS/issues/1381
Possibility to exclude authors, titles, tags, urls, words by prefixing
them by ! or - (like Google Search):
* !intitle:unwanted
* -intitle:unwanted
* -author:unwanted
* -#unwanted
* -unwanted
And one can use many of each and combine them with positive searches
|
|
Allow multiple values of intitle: , author:, inurl:
Note: Tests for UserQueryTest are broken due to
https://github.com/sebastianbergmann/phpunit/wiki/Release-Announcement-for-PHPUnit-4.0.0#backwards-compatibility-issues
|
|
|
|
http://php.net/manual/migration71.changed-functions.php#migration71.changed-functions.pdo
|
|
|
|
New index entry_feed_read_index
TODO: Auto add this index to existing version
|
|
The update of cached values remains to be optimized
|
|
https://github.com/FreshRSS/FreshRSS/issues/530
|
|
|
|
Avoid large in-memory copies
https://github.com/FreshRSS/FreshRSS/issues/1372
|
|
https://github.com/FreshRSS/FreshRSS/issues/1345
|
|
https://github.com/FreshRSS/FreshRSS/issues/1349
We should later replace all bindParam by bindValue
|
|
|
|
It looks like SimplePie does not always filter everything
Having a character not in latin1 would create MySQL collate errors
|
|
https://github.com/FreshRSS/FreshRSS/issues/1325
|
|
https://github.com/FreshRSS/FreshRSS/issues/1311
|
|
https://github.com/FreshRSS/FreshRSS/issues/1299
|
|
|
|
|
|
|
|
|
|
|
|
X' syntax did not work well with bind values
|
|
|
|
|
|
|
|
|
|
https://github.com/FreshRSS/FreshRSS/issues/1220
https://github.com/FreshRSS/FreshRSS/pull/1218
https://github.com/FreshRSS/FreshRSS/issues/608
|
|
https://github.com/FreshRSS/FreshRSS/issues/608
|
|
https://github.com/FreshRSS/FreshRSS/issues/416
Based on @Damstre work https://github.com/FreshRSS/FreshRSS/pull/1071
Not tested
|
|
|
|
* Requires MySQL 5.5.3+ (drop support for MySQL 5.0)
* Requires PHP 5.3.3+ (drop support for PHP 5.3.0)
https://github.com/FreshRSS/FreshRSS/issues/789#issuecomment-73878076
|
|
https://github.com/FreshRSS/FreshRSS/issues/894
And use native hexadecimal function when available (MySQL) to avoid
having binary data in the SQL logs.
|
|
https://github.com/FreshRSS/FreshRSS/issues/845
|
|
https://github.com/FreshRSS/FreshRSS/issues/845
And updated version comments to 1.1.1
|
|
https://github.com/FreshRSS/FreshRSS/issues/850
|
|
Additional changes to add compatibility with SQLite for the new
hash/lastSeen mode of updating articles.
|
|
X'09AF' hexadecimal literals do not work with SQLite/PDO. Replaced by
PHP hex2bin().
https://github.com/FreshRSS/FreshRSS/commit/711530a512b370d79b079205ce1f8376174f7f03
|
|
|
|
https://github.com/FreshRSS/FreshRSS/issues/798
|
|
Before, the search was a single value.
Now it is splited in chuncks when separated by spaces.
Except if they are enclosed by single quotes or double quotes.
For some reasons, the unit tests are working for both single and double quotes but the
search box isn't. It is working only with single quotes.
We need to investigate the reason of this behavior.
See #823
|
|
https://github.com/FreshRSS/FreshRSS/issues/798
https://github.com/FreshRSS/FreshRSS/issues/493
SQLite not yet tested. Only MySQL tested so far.
|
|
|
|
There is now an object to manipulate user queries. It allows to move logic to handle those from the view and the controller in the model.
Thus making the view and the controller easier to read.
I introduced a new interface to start using dependency injection. There is still some rough edges but we are moving in the right direction.
The new object is fully tested but it still need some improvements, for instance, it is still tied to the search object.
There might be a better way to do that.
|
|
|
|
|
|
It is now possible to combine multiple keywords to do a search. The separation of concern is better now since the search extraction is not done in the DAO anymore.
At the moment, a multiple keyword search is stored as this. It could be nice to have it rendered differently in the search page to make it more readable.
At the moment, there is a problem with search enclosed by ". Same search works well when enclosed by '.
|
|
- We have still to fix actualize_script and greader api (refactoring?)
- We have to fix the FreshRSS_Configuration calls
- We have to fix availableLanguages calls
See https://github.com/FreshRSS/FreshRSS/issues/730
|
|
|
|
See https://github.com/marienfressinaud/FreshRSS/issues/634
|