<feed xmlns='http://www.w3.org/2005/Atom'>
<title>FreshRSS (Customized)/app/Models/Entry.php, branch 1.17.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.17.0</id>
<link rel='self' href='https://git.rdnlsmith.com/fresh-rss-custom/atom?h=1.17.0'/>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/'/>
<updated>2020-09-03T08:35:23+00:00</updated>
<entry>
<title>When ssl_verify is false, decrease SSL security (#3171)</title>
<updated>2020-09-03T08:35:23+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-09-03T08:35:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=be5f9f2dceba7b67041295914169fcbbbb07e5fd'/>
<id>urn:sha1:be5f9f2dceba7b67041295914169fcbbbb07e5fd</id>
<content type='text'>
When ssl_verify option is set to false for a feed, allow lower security such as SHA-1 signatures.
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=900984
https://stackoverflow.com/questions/58342699/php-curl-curl-error-35-error1414d172ssl-routinestls12-check-peer-sigalgwr
Fix error of type `cURL error 35: error:1414D172:SSL routines:tls12_check_peer_sigalg:wrong signature`
Example of feeds:
https://www.version2.dk/it-nyheder/rss
https://ing.dk/rss/nyheder</content>
</entry>
<entry>
<title>Add machine-readable dates in views (#3106)</title>
<updated>2020-07-14T08:51:45+00:00</updated>
<author>
<name>Alexis Degrugillier</name>
<email>aledeg@users.noreply.github.com</email>
</author>
<published>2020-07-14T08:51:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=8d8211b2a5fa997bce06d7ae0c6f7cf37f97b245'/>
<id>urn:sha1:8d8211b2a5fa997bce06d7ae0c6f7cf37f97b245</id>
<content type='text'>
This will allow to make some transformations on dates when needed.
See #3103 and #853</content>
</entry>
<entry>
<title>Fix memory leak when using lib_phpQuery (#3004)</title>
<updated>2020-05-25T14:02:52+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-05-25T14:02:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=e1ef88d8151f73f83c2c8813632bbef9371de5c5'/>
<id>urn:sha1:e1ef88d8151f73f83c2c8813632bbef9371de5c5</id>
<content type='text'>
* Fix memory leak when using lib_phpQuery

This library keeps documents in static class, so it requires a special
call to clean them.

* Another unload</content>
</entry>
<entry>
<title>getContentByParsing follow HTML redirections (#2985)</title>
<updated>2020-05-21T09:56:55+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-05-21T09:56:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=b906d79d61beaeed7474f33fb6dac01a63ca90b9'/>
<id>urn:sha1:b906d79d61beaeed7474f33fb6dac01a63ca90b9</id>
<content type='text'>
* getContentByParsing follow HTML redirections

Add the ability to follow HTML redirections in getContentByParsing:

```html
&lt;meta http-equiv="Refresh" content="1; url=https://example.net/article123.html" /&gt;
```

* Better regex

* Trim http-equiv</content>
</entry>
<entry>
<title>Stream instead of memory copy of SimplePie entries (#2972)</title>
<updated>2020-05-16T22:04:51+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-05-16T22:04:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=83b5944dcbb09db0accd528be4906b88590d924f'/>
<id>urn:sha1:83b5944dcbb09db0accd528be4906b88590d924f</id>
<content type='text'>
* Stream instead of memory copy of SimplePie entries

https://github.com/FreshRSS/FreshRSS/issues/2952

* Undo lines delete

* Typo

* Remove unaccessible code

https://github.com/FreshRSS/FreshRSS/pull/2972/files#r425624163

* Back-compatibility for Feed-&gt;entries

https://github.com/FreshRSS/FreshRSS/pull/2972/files#r425631913</content>
</entry>
<entry>
<title>Fever integer type for numbers (#2946)</title>
<updated>2020-05-03T11:39:16+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-05-03T11:39:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=b1aac20839f6e1f3e733774eeb5984ce7b08c246'/>
<id>urn:sha1:b1aac20839f6e1f3e733774eeb5984ce7b08c246</id>
<content type='text'>
* Fever integer type for feed ID

#Fix
https://github.com/FreshRSS/FreshRSS/issues/2940#issuecomment-623022435

* Fix feed_id

* Ensure string for entry ID

To be compatible with 32-bit platforms.
Before, the type was inconsistent depending on architecture + database

* Integer for entry count functions</content>
</entry>
<entry>
<title>Expose podcast in API (#2898)</title>
<updated>2020-04-16T16:11:26+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-04-16T16:11:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=bdc4da6ad07f2f5dfa7cf397cf3a379199c0a2ed'/>
<id>urn:sha1:bdc4da6ad07f2f5dfa7cf397cf3a379199c0a2ed</id>
<content type='text'>
* Expose podcast in API

Expose RSS enclosures in our API, e.g. for clients supporting podcasts

* PHP CS?

* Annoying linter

* Light optimisation</content>
</entry>
<entry>
<title>Fix action filter when filtering on author (#2863)</title>
<updated>2020-03-31T15:57:05+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-03-31T15:57:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=be582713feb960f13521d2b19adcb87b3a47ada3'/>
<id>urn:sha1:be582713feb960f13521d2b19adcb87b3a47ada3</id>
<content type='text'>
#fix https://github.com/FreshRSS/FreshRSS/issues/2806
Bug: array instead of string</content>
</entry>
<entry>
<title>Fallback to GUID when entry title is empty (#2813)</title>
<updated>2020-02-29T17:14:29+00:00</updated>
<author>
<name>Alexandre Alapetite</name>
<email>alexandre@alapetite.fr</email>
</author>
<published>2020-02-29T17:14:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=e9f879b411ac6af9d102702fb52c8deff161b0e6'/>
<id>urn:sha1:e9f879b411ac6af9d102702fb52c8deff161b0e6</id>
<content type='text'>
When entries have an empty title, our UI was a bit broken. In this
(rare) case, we revert to GUID, which is always non-empty.</content>
</entry>
<entry>
<title>Fix wrong foreach in applyFilterActions (#2809)</title>
<updated>2020-02-29T15:12:04+00:00</updated>
<author>
<name>shn7798</name>
<email>shn7798@gmail.com</email>
</author>
<published>2020-02-29T15:12:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.rdnlsmith.com/fresh-rss-custom/commit/?id=0b6d39a7952e9dff98e977d1bcc13476910cde0c'/>
<id>urn:sha1:0b6d39a7952e9dff98e977d1bcc13476910cde0c</id>
<content type='text'>

</content>
</entry>
</feed>
