summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-01-02 18:57:48 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-01-02 18:57:48 +0100
commit6fa5672800682afa4f3194cd3ee8e65a98bfeeab (patch)
treefb518cf6789da6bf3f81b90476b3cf03a8b1aa94
parenta19b4534f9aac21f6738bc94f6f42cb3899dba8f (diff)
Release 1.19.11.19.1
-rw-r--r--CHANGELOG.md18
-rw-r--r--constants.php2
2 files changed, 18 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5f0695559..2a3d189dc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,23 @@
# FreshRSS changelog
+## 2022-01-02 FreshRSS 1.19.1
-## 2022-0X-XX FreshRSS 1.19.1-dev
+* Bug fixing
+ * Fix regression when creating a new user (only with PostgreSQL, MariaDB/MySQL) [#4116](https://github.com/FreshRSS/FreshRSS/pull/4116)
+ * Fix some filters for automatic article actions (e.g., `!pubdate:P3d`) [#4092](https://github.com/FreshRSS/FreshRSS/pull/4092)
+* Features
+ * New search operator on article IDs (useful to show a single article, extensions) [#4058](https://github.com/FreshRSS/FreshRSS/pull/4058)
+ * Entry (article) ID: `e:1639310674957894` or multiple entry IDs (*or*): `e:1639310674957894,1639310674957893`
+* UI
+ * Fix left navigation with long category names [#4055](https://github.com/FreshRSS/FreshRSS/pull/4055)
+ * Show *My labels* menu also when empty [#4065](https://github.com/FreshRSS/FreshRSS/pull/4065)
+ * Improve category titles on global view [#4059](https://github.com/FreshRSS/FreshRSS/pull/4059)
+ * Disable dynamic favicon for browser / extensions blocking canvas [#4098](https://github.com/FreshRSS/FreshRSS/pull/4098)
+ * Minor UI and style improvements [#4061](https://github.com/FreshRSS/FreshRSS/pull/4061), [#4067](https://github.com/FreshRSS/FreshRSS/pull/4067), [#4085](https://github.com/FreshRSS/FreshRSS/pull/4085)
+* SimplePie
+ * Manual update to SimplePie 1.5.8 [#4113](https://github.com/FreshRSS/FreshRSS/pull/4113)
+* Code improvements
+ * Add PHPStan [level 1](https://phpstan.org/user-guide/rule-levels) for code quality [#4021](https://github.com/FreshRSS/FreshRSS/pull/4021)
## 2021-12-31 FreshRSS 1.19.0
diff --git a/constants.php b/constants.php
index 1dbf2dff9..afb317577 100644
--- a/constants.php
+++ b/constants.php
@@ -3,7 +3,7 @@
//<Not customisable>
define('FRESHRSS_MIN_PHP_VERSION', '7.0.0');
-define('FRESHRSS_VERSION', '1.19.1-dev');
+define('FRESHRSS_VERSION', '1.19.1');
define('FRESHRSS_WEBSITE', 'https://freshrss.org');
define('FRESHRSS_WIKI', 'https://freshrss.github.io/FreshRSS/');