offpunk 1.5

This commit is contained in:
Lionel Dricot 2022-08-04 12:07:41 +02:00
parent e51d04ece8
commit 1663c1bc01
4 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,7 @@
- "redirect" now replaces "set redirects" to improve discoverability
- "redirect" now allows urls to be blocked. By default, facebook.com and google-analytics.com are blocked
- Fixed a bug when trying to download base64 image
=> gemini://rawtext.club/~ploum/2022-08-04-offpunk15.gmi
## 1.4 - April 25th 2022
- Making python-readability optional

View File

@ -110,6 +110,7 @@ Nice to have (packagers should probaly make those optional):
* Complex bookmarks management through multiple lists, built-in edition, subscribing/freezing lists and archiving content.
* Advanced navigation tools like `tour` and `mark` (as per VF-1). Unlike AV-98, tour is saved on disk accross sessions.
* Ability to specify external handler programs for different MIME types (use `handler`)
* Enhanced privacy with `redirect` which allows to block a http domain or to redirect all request to a privacy friendly frontent (such as nitter for twitter).
* Non-interactive cache-building with configurable depth through the --sync command. The cache can easily be used by other software.
* IPv6 support
* Supports any character encoding recognised by Python

View File

@ -12,7 +12,7 @@
# - Björn Wärmedal <bjorn.warmedal@gmail.com>
# - <jake@rmgr.dev>
_VERSION = "1.4"
_VERSION = "1.5"
global BETA
BETA = False

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='offpunk',
version='1.4',
version='1.5',
description="Offline-First Gemini/Web/Gopher/RSS reader and browser",
author="Ploum",
author_email="offpunk@ploum.eu",