1. transparent decryption for existing installs stays for the time being
2. new passwords are not going to be encrypted even if FEED_CRYPT_KEY is defined
3. added update.php --decrypt-feeds to bulk decrypt existing encrypted passwords
4. updated install to not auto-generate crypt key
5. added warning to config.php-dist
If Windows, fclose() before unlink() in updater.php
Windows barks an error if you try to unlink() a file while the pointer is still open(); If running under Windows, fclose() the handle before the unlink();
See merge request !36
Add feed id to subscribe to feed response
As described on the forum, this proposed change is to make the subscribeToFeed API response include the feed_id of the new or existing feed.
https://tt-rss.org/forum/viewtopic.php?f=8&t=3893
Thank you.
John
See merge request !35
Fix themes/night.css for iOS browsers
Somehow the image filters order matters for iOS browsers (Chrome, Safari), so
grayscale filter is not applied if -webkit-filter is not the last filter in
list.
See merge request !34
Somehow the image filters order matters for iOS browsers (Chrome, Safari), so
grayscale filter is not applied if -webkit-filter is not the last filter in
list.
Pass the value of cache_images to plugins in HOOK_ARTICLE_FILTER.
Adds the `$cache_images` value to the `$article['feed']` array before calling HOOK_ARTICLE_FILTER. Allows plugins to know whether images will be cached in case they want to manage them in one way or another.
See merge request !32
Remove href attribute if it executes JavaScript.
Security update to prevent A tags with a `javascript:` href from actually executing the JavaScript.
See merge request !31