From 68f5007252279ed609355d5d59e95e971b8f4e1f Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sat, 4 Dec 2021 09:55:34 +0100 Subject: [PATCH] [NEWS] 0.15.0rc1 --- NEWS | 29 +++++++++++++++++++++++++++++ configure.ac | 2 +- meson.build | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 82755201..552c675c 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,35 @@ You can see the complete list of recent changes, bugfixes and new features in the https://github.com/rkd77/felinks.git[gitweb interface]. See the ChangeLog file for details. +ELinks 0.15.0rc1 +---------------- + +Released on 2021-12-04 + +* removed -Wno-pointer-sign from CFLAGS +* close stdin before calling a background program (sgerwk) + and options related to it #108, #109, #110, #113 +* gemini protocol and text/gemini mime type +* changed rendering of blockquote element +* avoid tmpfile in lua (sgerwk) #115, #118 +* console.log in js (mtatton) #93 +* localstorage (mtatton) #98 +* options document.browse.search.beginning_only + document.browse.search.ignore_history + ui.double_esc +* ui.temperature.* to show temperature of CPU +* document.plain.fixup_tables +* enhanced ecmascript code. Added QuickJS +* Notes on ECMAScript: + requires C++ compiler, sqlite3, libxml++5 >= 5.0.1.GIT + and either mozjs78-dev or QuickJS-2021-03-27 + Most sites don't work, some crash. Some workarounds were implemented: + a) ECMAScript is disabled by default + b) ~/.elinks/allow.txt and ~/.elinks/disallow.txt with url prefixes + c) Added toggle-ecmascript action. You can bind it to some key +* other small fixes + + ELinks 0.14.3 ------------- diff --git a/configure.ac b/configure.ac index 5c158d02..404200d2 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_CONFIG_AUX_DIR(config) AC_CONFIG_MACRO_DIR([config/m4]) PACKAGE=elinks -VERSION=0.15.GIT +VERSION=0.15.0rc1 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version]) diff --git a/meson.build b/meson.build index 5d96dec6..c0c15f16 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elinks', ['c','cpp'], version:'0.15.GIT', license:'GPLv2') +project('elinks', ['c','cpp'], version:'0.15.0rc1', license:'GPLv2') srcs=[] srcdir = meson.source_root()