<feed xmlns='http://www.w3.org/2005/Atom'>
<title>FreshRSS (Customized)/app/layout, branch 1.12.0</title>
<subtitle>Customized version of FreshRSS, a self-hosted RSS feed aggregator</subtitle>
<id>https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.12.0</id>
<link rel='self' href='https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.12.0'/>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/'/>
<updated>2018-10-14T12:37:50+00:00</updated>
<entry>
<title>Ensure fast flush of HTTP headers and HTML head (#2045)</title>
<updated>2018-10-14T12:37:50+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-10-14T12:37:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=5b030dcc6ff1393e29ecc6e5c76f129c7ad6c914'/>
<id>urn:sha1:5b030dcc6ff1393e29ecc6e5c76f129c7ad6c914</id>
<content type='text'>
* Ensure fast flush of HTTP headers and HTML head

The fast flush optimisation done in
https://github.com/FreshRSS/FreshRSS/pull/1133 does not seem to work
anymore (need to check if it is related to a PHP version).
Work-around when PHP flush() is not working
Can be tested by adding a `sleep(5);` after:

https://github.com/FreshRSS/FreshRSS/blob/ee902ee7c4370421802768c3105ba269a4f97b16/app/layout/layout.phtml#L27
Follow-up of the performance checks of
https://github.com/FreshRSS/FreshRSS/pull/2040

* output_buffering in .user.ini for PHP CGI / FPM

* Reuse .user.ini for Docker PHP config

* Longer flush

Flush a bit later, to be compatible with the default value of 4096 for
PHP output_buffering, and thus avoid the need of tuning the value.
</content>
</entry>
<entry>
<title>Remove some preload / prefetch (#2040)</title>
<updated>2018-10-13T22:35:43+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-10-13T22:35:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=1cc891be35c50ad3fd1fcc3498a08f7f46462d35'/>
<id>urn:sha1:1cc891be35c50ad3fd1fcc3498a08f7f46462d35</id>
<content type='text'>
* Remove next prefetch

This approach was only efficient in the specific case when no change was
made (no mark-as-read, favourites, tags), and useless in the other
situations.
Removed to reduce server load.

* Remove next prefetch from JavaScript too

* Remove some preload / prefetch

While useful for the first request, those preload / prefetch hints are
slightly negative for the following requets, especially server-side,
e.g. generating one log entry in Apache, and a bit more network traffic.

* Revert mistake

* Remove comment

https://github.com/FreshRSS/FreshRSS/pull/2040#discussion_r223214915
</content>
</entry>
<entry>
<title>Custom labels (#2027)</title>
<updated>2018-09-29T18:47:17+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-09-29T18:47:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=8ee8a573f1f7e9cc45f9b3c46627d15670f14f3a'/>
<id>urn:sha1:8ee8a573f1f7e9cc45f9b3c46627d15670f14f3a</id>
<content type='text'>
* First draft of custom tags

https://github.com/FreshRSS/FreshRSS/issues/928
https://github.com/FreshRSS/FreshRSS/issues/1367

* SMALLINT to BIGINT for id_entry

And uppercase SQL types

* Fix layout for unreads

* Start UI menu

* Change menu order

* Clean database helpers

https://github.com/FreshRSS/FreshRSS/pull/2027#discussion_r217971535

* Travis rules do not understand PostgreSQL constants

Grrr

* Tag controller + UI

* Add column attributes to tags

* Use only favicon for now, for label

* Fix styling for different themes

* Constant for maximum InnoDB index length in Unicode

https://github.com/FreshRSS/FreshRSS/pull/2027#discussion_r219052200
(I would have personnally prefered keeping the readability of a real
value instead of a constant, in this case of many SQL fields)

* Use FreshRSS_Factory::createCategoryDao

* Add view of all articles containing any tag

* Fix search in tags

* Mark as read tags

* Partial auto-update unread tags

* More auto update tag unreads

* Add tag deletion

* Do not purge tagged articles

* Minor comment

* Fix SQLite and UI bug

* Google Reader API support for user tags

Add SQL check that tag names must be distinct from category names

* whitespace

* Add missing API for EasyRSS

* Compatibility SQLite

Problematic parentheses

* Add SQL DISTINCT for cases with multiple tags

* Fix for PostgreSQL

PostgreSQL needs some additional type hint to avoid "could not determine
data type of parameter $1"

http://www.postgresql-archive.org/Could-not-determine-data-type-of-parameter-1-tp2171092p2171094.html
</content>
</entry>
<entry>
<title>Add mark-as-unread (#1995)</title>
<updated>2018-09-03T18:48:04+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-09-03T18:48:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=d3f5bd840d513bc4820a919ef9e0f02b0263ff9c'/>
<id>urn:sha1:d3f5bd840d513bc4820a919ef9e0f02b0263ff9c</id>
<content type='text'>
* Add mark-as-unread

https://github.com/FreshRSS/FreshRSS/issues/1966

* Change sentence

https://github.com/FreshRSS/FreshRSS/pull/1995#discussion_r214515954

* Enable mark-as-unread only when unread articles are shown

In order to prevent erroneous marking-as-unread.
We might find a better logic later.

* Disable instead of hide mark-as-unread option

To make it easier to discover
</content>
</entry>
<entry>
<title>Explicit quotes decoding (#1947)</title>
<updated>2018-06-22T14:07:48+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-06-22T14:07:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=a66b995be7d187a208bf7f66ce4d83911ba5932f'/>
<id>urn:sha1:a66b995be7d187a208bf7f66ce4d83911ba5932f</id>
<content type='text'>
* Explicit quotes decoding

* Explicit htmlspecialchars_decode and htmlspecialchars
</content>
</entry>
<entry>
<title>Fix double encoding for mark as read a search (#1945)</title>
<updated>2018-06-20T18:49:48+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-06-20T18:49:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=c4903bc8db41c0aed803e1bc183ade3eeb17aa8d'/>
<id>urn:sha1:c4903bc8db41c0aed803e1bc183ade3eeb17aa8d</id>
<content type='text'>
* Fix double encoding for mark as read a search

Fix https://github.com/FreshRSS/FreshRSS/issues/1944

* Fix more search encoding issues
</content>
</entry>
<entry>
<title>[UI] fix active check in subscription menu (#1858)</title>
<updated>2018-04-06T18:26:08+00:00</updated>
<author>
<name>Kevin Papst</name>
<email>kevinpapst@users.noreply.github.com</email>
</author>
<published>2018-04-06T18:26:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=6b9be92263cd9034ae8a84e6032b555591c948a1'/>
<id>urn:sha1:6b9be92263cd9034ae8a84e6032b555591c948a1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix shortcuts for view switching</title>
<updated>2018-01-26T07:17:32+00:00</updated>
<author>
<name>Alexis Degrugillier</name>
<email>github@ainw.org</email>
</author>
<published>2018-01-26T07:17:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=951eb708e609622f31faba591b624b5e9c901897'/>
<id>urn:sha1:951eb708e609622f31faba591b624b5e9c901897</id>
<content type='text'>
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
</content>
</entry>
<entry>
<title>fixed css classes for reading mode buttons #1714</title>
<updated>2018-01-24T18:37:24+00:00</updated>
<author>
<name>Kevin Papst</name>
<email>kpapst@gmx.net</email>
</author>
<published>2018-01-24T18:37:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=047fa17aeb65dfb6b551bf73e610057e8d78142c'/>
<id>urn:sha1:047fa17aeb65dfb6b551bf73e610057e8d78142c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #1714 from kevinpapst/hook-readingmodes</title>
<updated>2018-01-01T19:49:18+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2018-01-01T19:49:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=a756878219f0c67674849c1bc1b881303d394ee7'/>
<id>urn:sha1:a756878219f0c67674849c1bc1b881303d394ee7</id>
<content type='text'>
Added extension hook for reading modes</content>
</entry>
</feed>
