diff --git a/debian/changelog b/debian/changelog index 3eb9a330b..ddbf63b1e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -140,6 +140,15 @@ yunohost (11.0.2) testing; urgency=low -- Alexandre Aubin Wed, 19 Jan 2022 20:52:39 +0100 +yunohost (4.4.2.3) stable; urgency=low + + - [fix] bullseye migration: add fix for stupid dnsmasq not picking new init script (origin/dev, origin/HEAD, dev) + - [fix] bullseye migration: add the patch for the build-essential / libc6-dev / libgcc-8-dev hell ... + - [fix] bullseye migration: add critical fix for RPi failing to get network on reboot + - [fix] bullseye migration: add ffsync to deprecated apps (77c2f5dc) + + -- Alexandre Aubin Sat, 13 Aug 2022 20:06:00 +0200 + yunohost (4.4.2.1) stable; urgency=low - [fix] bullseye migration: /opt may not exist ... (5fd74577) diff --git a/src/app.py b/src/app.py index 3b60deb6c..be36a4561 100644 --- a/src/app.py +++ b/src/app.py @@ -2440,7 +2440,7 @@ def is_true(arg): def unstable_apps(): output = [] - deprecated_apps = ["mailman"] + deprecated_apps = ["mailman", "ffsync"] for infos in app_list(full=True)["apps"]: