From a0ce56d45e14c71fd12d1ca1fc4fc78e121c919c Mon Sep 17 00:00:00 2001 From: Lionel Dricot Date: Mon, 27 Mar 2023 20:51:03 +0200 Subject: [PATCH] Adding chardet to README --- CHANGELOG | 3 ++- README.md | 1 + ubuntu_dependencies.txt | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index fb1e591..afd7994 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ # Offpunk History -## 1.9.3 - unreleased +## 1.10 - unreleased +- IMPORTANT : new optional dependency : python-chardet - Add missing chardet module (Sotiris Papatheodorou) ## 1.9.2 - March 13th 2023 diff --git a/README.md b/README.md index 02fc666..d2d874c 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,7 @@ Dependencies to enable web browsing (packagers may put those in an offpunk-web m Nice to have (packagers should may make those optional): * [Xsel](http://www.vergenet.net/~conrad/software/xsel/) allows to `go` to the URL copied in the clipboard without having to paste it (both X and traditional clipboards are supported). Also needed to use the `copy` command. (apt-get install xsel) * [Python-setproctitle](https://github.com/dvarrazzo/py-setproctitle) will change the process name from "python" to "offpunk". Useful to kill it without killing every python service. +* [Python-chardet](https://github.com/chardet/chardet) is used to detect the character encoding on Gopher (and may be used more in the future) ## Features diff --git a/ubuntu_dependencies.txt b/ubuntu_dependencies.txt index afdb976..6e49d85 100644 --- a/ubuntu_dependencies.txt +++ b/ubuntu_dependencies.txt @@ -1 +1 @@ -sudo apt install less file xdg-utils xsel chafa timg python3-cryptography python3-requests python3-feedparser python3-bs4 python3-readability python3-pil python3-setproctitle +sudo apt install less file xdg-utils xsel chafa timg python3-cryptography python3-requests python3-feedparser python3-bs4 python3-readability python3-pil python3-setproctitle python3-chardet