From bd1e5f3a9dd093110447adfaedb12f93ba3c8b5b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 6 Apr 2020 23:37:37 +0200 Subject: Fetch the feeds in a new processus by taking into account the current virtual environment. --- CHANGELOG.md | 15 +++++++++++++++ newspipe/lib/misc_utils.py | 3 +-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4956e910..ebf19437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,21 @@ Newspipe Changelog ================== +## 9.4.0 (not yet released) + +### New + +- migrated form Flask-Script to the built-in integration of the click command + line interface of Flask; +- display feeds icon in the list of feeds. + +### Improvements + +- simplify loading of the configuration file; +- speed improvements to the /history page; +- various improvements to the Web user interface and to the crawler. + + ## 9.3.0 (2020-03-22) ### New diff --git a/newspipe/lib/misc_utils.py b/newspipe/lib/misc_utils.py index 8eb03816..3bd9c6a5 100755 --- a/newspipe/lib/misc_utils.py +++ b/newspipe/lib/misc_utils.py @@ -101,8 +101,7 @@ def fetch(id, feed_id=None): The default crawler ("asyncio") is launched with the manager. """ cmd = [ - "poetry", "run", - "flask", + sys.exec_prefix + "/bin/flask", "fetch_asyncio", "--user-id", str(id), ] -- cgit