From 672c5fce529646cf2323cc2f227887376a18c3e3 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sun, 6 Dec 2020 15:46:28 +0100 Subject: [PATCH] [NEWS] Info about 0.14.0rc1 --- NEWS | 24 ++++++++++++++++++++++++ configure.ac | 2 +- meson.build | 4 ++-- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index df0d8042..ea2868ca 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,30 @@ 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.14.0rc1 +-------------------- + +Released on 2020-12-06 + +* dblatex for pdf. PR #64 +* fixes CTRL-Z. #65 +* changes in mime handlers. PR #66 +* fixes in data protocol. #67, #68, #71, #72, #73 +* allow to wrap text in PRE. #69 +* pass #fragment to external command. #75 +* introduced "document.browse.search.reset". #76 +* added meson as alternative build system +* in #77 I'm going to attach static binaries for released versions +* mozjs dependency updated to 52.* + +Note that, to compile with javascript support you must compile by g++ with -fpermissive option. +There is a lot of warnings. Unfortunately JS often crashes. Without help from someone familiar +with SpiderMonkey, we won't go far. + +As you might notice, I renamed repo to elinks. + +Thanks to all involved in this release. + ELinks 0.13.5 -------------------- diff --git a/configure.ac b/configure.ac index 6b16826b..428ff0e1 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.14.GIT +VERSION=0.14.0rc1 AC_SUBST(PACKAGE) AC_SUBST(VERSION) AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version]) diff --git a/meson.build b/meson.build index 6afa6b53..ba18715e 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('elinks', ['c','cpp'], version:'0.14.GIT', license:'GPLv2') +project('elinks', ['c','cpp'], version:'0.14.0rc1', license:'GPLv2') srcs=[] srcdir = meson.source_root() @@ -8,7 +8,7 @@ dirty = run_command(srcdir + '/git-dirty.sh').stdout().strip() add_global_arguments('-DBUILD_ID="' + txt + dirty + '"', language : 'c') conf_data = configuration_data() -conf_data.set('VERSION', '0.14.GIT') +conf_data.set('VERSION', '0.14.0rc1') conf_data.set('PACKAGE', 'elinks')