Skip to content

Commit ee60a7e

Browse files
committed
[NEWS] 0.17.0rc1
1 parent 5d7403d commit ee60a7e

35 files changed

Lines changed: 5527 additions & 5602 deletions

NEWS

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ You can see the complete list of recent changes, bugfixes and new features
55
in the https://github.com/rkd77/felinks.git[gitweb interface]. See the ChangeLog
66
file for details.
77

8+
ELinks 0.17.0rc1
9+
----------------
10+
11+
Released on 2023-12-02
12+
13+
* configuration files are now saved to ~/.config/elinks/ or $XDG_CONFIG_HOME/elinks/ #199
14+
User must copy files from ~/.elinks/ to ~/.config/elinks/ himself or herself
15+
* HOME_ETC support was dropped, you can set ELINKS_CONFDIR instead
16+
* idn2 in place of idn #206
17+
* libcss support (a few netsurf's libraries are required). Set document.css.libcss = 1 to enable
18+
* experimental libsixel support (image/*; img2sixel %s; copiousoutput) in ~/.mailcap
19+
Must be enabled in a few places in configuration: set document.plain.sixel = 1
20+
and in terminal options. Do not try it on metered remote connections
21+
* testing libcurl support (explicit FTPS and SFTP among others)
22+
To enable set protocol.ftp.use_curl = 1
23+
set protocol.http.use_curl = 1 for http/https
24+
* ui.sessions.postpone_unlink option. Delete temporary files at exit instead of immediately after
25+
closing viewer #257
26+
* redefined isspace to #249
27+
* Serbian translation update
28+
* compilation fixes
829

930
ELinks 0.16.1.1
1031
---------------

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ AC_CONFIG_AUX_DIR(config)
1616
AC_CONFIG_MACRO_DIR([config/m4])
1717

1818
PACKAGE=elinks
19-
VERSION=0.17.GIT
19+
VERSION=0.17.0rc1
2020
AC_SUBST(PACKAGE)
2121
AC_SUBST(VERSION)
2222
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Package version])

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('elinks', ['c','cpp'], version:'0.17.GIT', license:'GPLv2', default_options:['cpp_std=gnu++17'])
1+
project('elinks', ['c','cpp'], version:'0.17.0rc1', license:'GPLv2', default_options:['cpp_std=gnu++17'])
22
srcs=[]
33

44
srcdir = meson.source_root()

0 commit comments

Comments
 (0)