1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

[NEWS] 0.17.0rc2

This commit is contained in:
Witold Filipczyk 2023-12-10 12:31:41 +01:00
parent 6f11b9be8b
commit 74906f2b0f
3 changed files with 12 additions and 3 deletions

11
NEWS
View File

@ -5,6 +5,15 @@ 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.17.0rc2
----------------
Released on 2023-12-10
* Avoid division by zero. Refs #276
* Fix for FSP under Windows
ELinks 0.17.0rc1
----------------
@ -23,7 +32,7 @@ Released on 2023-12-02
set protocol.http.use_curl = 1 for http/https
* ui.sessions.postpone_unlink option. Delete temporary files at exit instead of immediately after
closing viewer #257
* redefined isspace to #249
* redefined isspace #249
* Serbian translation update
* compilation fixes

View File

@ -16,7 +16,7 @@ AC_CONFIG_AUX_DIR(config)
AC_CONFIG_MACRO_DIR([config/m4])
PACKAGE=elinks
VERSION=0.17.0rc1
VERSION=0.17.0rc2
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version])

View File

@ -1,4 +1,4 @@
project('elinks', ['c','cpp'], version:'0.17.0rc1', license:'GPLv2', default_options:['cpp_std=gnu++17'])
project('elinks', ['c','cpp'], version:'0.17.0rc2', license:'GPLv2', default_options:['cpp_std=gnu++17'])
srcs=[]
srcdir = meson.source_root()