summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-21lib: Upgrade php-publisher from ??? to a5d6a0e (2016-11-15)Anders Kaseorg
https://github.com/pubsubhubbub/php-publisher Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21lib: Upgrade mobile-detect from svn r44 (2012-05-03) to 2.8.24 (2016-11-11)Anders Kaseorg
https://github.com/serbanghita/Mobile-Detect Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21lib: Upgrade JShrink from 0.5.1 to 1.1.0Anders Kaseorg
https://github.com/tedivm/JShrink Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21lib: Upgrade accept-to-gettext.php from 2003-08-14 to 2007-04-01Anders Kaseorg
http://grep.be/data/accept-to-gettext.inc Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21lib: Upgrade php-gettext from 1.0.11 to 1.0.12Anders Kaseorg
https://launchpad.net/php-gettext The local change to rename the gettext_reader function to __construct (commit 00b6b66827c5ce0c103399f2742581fa90d50a97) has been preserved. Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21lib: Upgrade Prototype from 1.7 to 1.7.3Anders Kaseorg
http://prototypejs.org/ The local change from ‘on’ to ‘p_on’ for Dojo compatibility has been preserved. Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21force-enable persist for feedTreeAndrew Dolgov
2017-01-21Merge branch 'dojo-1.12.1'Andrew Dolgov
Conflicts: js/prefs.js
2017-01-21prefs: add updateSelectedPrompt shim called by toggleSelectedRow()Andrew Dolgov
2017-01-21add dependency on dojo/_base/htmlAndrew Dolgov
2017-01-21lib: Upgrade Dojo and Dijit from 1.8.3 to 1.12.1Anders Kaseorg
The itemNode and expandoNode elements have changed from img to span (https://bugs.dojotoolkit.org/ticket/16699), so we now put our tree icons inside them rather than replacing them. Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21Replace deprecated dojo.place with domConstruct.placeAnders Kaseorg
Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-21dojo: Build dojo/dom-constructAnders Kaseorg
Signed-off-by: Anders Kaseorg <[email protected]>
2017-01-17tweak the enclosure dropdown display a little bit for less-readable urlsAndrew Dolgov
2017-01-16update phpmailerAndrew Dolgov
2017-01-16Merge branch 'subscribe-idn-feed' into 'master' Andrew Dolgov
Subscribe to feed with Internationalized Domain Name Currently you cannot subscribe to feeds on hosts with internationalized domain names (IDNA) within tt-rss. You need to manually convert them to punycode to subscribe to them. This patch adds code to detect IDNA and convert them to punycode in fix_url() if possible on the system. This requires PHP IDN functions (e.g. on Debian Jessie this needs php5-intl to be installed), so a notice is added to the installer sanity check. See merge request !37
2017-01-07headlines toolbar: move selection links into the dropdownAndrew Dolgov
2017-01-07add toggle_sidebar plugin, remove obsolete toggle buttonAndrew Dolgov
add PluginHost::HOOK_MAIN_TOOLBAR_BUTTON
2017-01-07hide selected_prompt on low width screensAndrew Dolgov
2017-01-07deprecate encrypted feed passwords because mcrypt is getting removed from ↵Andrew Dolgov
php 7.1 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
2017-01-06Merge branch 'fclose-before-unlink-updater' into 'master' Andrew Dolgov
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
2017-01-06Make sure we are running on Windows before fclose() to avoid race condition ↵tsimmons
possible in Nix.
2017-01-05Close lockfile handle before trying to unlink during update.tsimmons
2017-01-04edit tags dialog: fix heightAndrew Dolgov
2017-01-04mail plugin: i guess rows= on dijit text areas doesn't work nowAndrew Dolgov
2017-01-04ttrssmailer: include phpmailer's smtp classAndrew Dolgov
2017-01-02convert to punycode for feed on idn hostnameBernhard Thaler
2016-12-29update phpmailer (again)Andrew Dolgov
2016-12-26update phpmailerAndrew Dolgov
2016-12-13edit tags dialog: enable overflow so that tag completion works properlyAndrew Dolgov
2016-11-30set_basic_feed_info: fix typoAndrew Dolgov
2016-11-30rssfuncs: fix warning when trying to update nonexisting feedAndrew Dolgov
2016-11-25maybe we shouldn't escape entry_author twiceAndrew Dolgov
2016-11-22category: swap context menu itemsAndrew Dolgov
2016-11-11feedparser: fix syntax errorAndrew Dolgov
2016-11-11feed tree: add category context menu entry to un/collapse itAndrew Dolgov
2016-11-11feedparser: fix normalize_encoding() not working properly for some encodingsAndrew Dolgov
2016-10-24fetch_file_contents: set timeout when not using CURLAndrew Dolgov
2016-10-19get_article_filters: add unicode modifier to preg_match()Andrew Dolgov
2016-09-21shared posts: remove link to feed in externally shared articles to prevent ↵Andrew Dolgov
leaking potentially private feed urls
2016-09-05parser: only try to convert encoding if mbstring actually supports itAndrew Dolgov
2016-08-29Merge branch 'add_feed_id_to_subscribeToFeed_response' into 'master' Andrew Dolgov
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
2016-08-28Specify feed_id as an int rather than a string.John Brayton
2016-08-27Add feed_id to subscribeToFeed response when the code is 1 or 0.John Brayton
Set the API_LEVEL to 14.
2016-08-26better debugging for matched filter rulesAndrew Dolgov
2016-08-26Merge branch 'fix-night-theme-for-ios' into 'master' Andrew Dolgov
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
2016-08-26Fix themes/night.css for iOS browsersDmitry Potapov
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.
2016-08-25af_psql_trgm: do not try to render preference pane if enabled on mysqlAndrew Dolgov
2016-08-21remove support for legacy mysql driverAndrew Dolgov
2016-08-19remove classes/db/api.php (shouldn't be there)Andrew Dolgov