1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00

Merge pull request #849 from ailin-nemui/news-update

add additional notes to NEWS
This commit is contained in:
ailin-nemui 2018-02-15 19:46:32 +01:00 committed by GitHub
commit a72e706667
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
NEWS
View File

@ -27,6 +27,9 @@ v1.0.7 2018-02-15 The Irssi team <staff@irssi.org>
- Minor help correction. By William Jackson (#834). - Minor help correction. By William Jackson (#834).
v1.1.0 2018-01-15 The Irssi team <staff@irssi.org> v1.1.0 2018-01-15 The Irssi team <staff@irssi.org>
! Warning. Irssi is broken and will crash with OpenSSL < 1.0.2
due to openssl/openssl commit
5b4b9ce976fce09a7a92e2f25b91a1635cb840fe
* Colour is now re-set when reaching a comma, matching mIRC * Colour is now re-set when reaching a comma, matching mIRC
behaviour (#742, #740, #790) behaviour (#742, #740, #790)
* Irssi now shows the initial nick and name on first start * Irssi now shows the initial nick and name on first start
@ -106,6 +109,9 @@ v1.1.0 2018-01-15 The Irssi team <staff@irssi.org>
- Fix space issue in glib-2.0.m4 (#621) - Fix space issue in glib-2.0.m4 (#621)
v1.0.6 2018-01-07 The Irssi team <staff@irssi.org> v1.0.6 2018-01-07 The Irssi team <staff@irssi.org>
! Note: Code and aliases using `$($'-like constructs are no
longer supported due to issue GL#18. Sorry about the
inconvenience.
- Fix invalid memory access when reading hilight configuration - Fix invalid memory access when reading hilight configuration
(#787, #788). (#787, #788).
- Fix null pointer dereference when the channel topic is set - Fix null pointer dereference when the channel topic is set
@ -149,6 +155,7 @@ v1.0.4 2017-07-07 The Irssi team <staff@irssi.org>
- Minor help update (#729). - Minor help update (#729).
v1.0.3 2017-06-06 The Irssi team <staff@irssi.org> v1.0.3 2017-06-06 The Irssi team <staff@irssi.org>
! Regression info in 1.0.3: #716 Warnings on start up: invalid time '-1'
- Fix out of bounds read when scanning expandos (GL!11). - Fix out of bounds read when scanning expandos (GL!11).
- Fix invalid memory access with quoted filenames in DCC - Fix invalid memory access with quoted filenames in DCC
(GL#8, GL!12). (GL#8, GL!12).
@ -167,6 +174,7 @@ v1.0.3 2017-06-06 The Irssi team <staff@irssi.org>
- Minor typo correction in help. By Michael Hansen (#707). - Minor typo correction in help. By Michael Hansen (#707).
v1.0.2 2017-03-10 The Irssi team <staff@irssi.org> v1.0.2 2017-03-10 The Irssi team <staff@irssi.org>
! Warning. Irssi is broken on GLib 2.46 (bgo#755496)
- Prevent some null-pointer crashes (GL!9). - Prevent some null-pointer crashes (GL!9).
- Fix compilation with OpenSSL 1.1.0 (#628, #597). - Fix compilation with OpenSSL 1.1.0 (#628, #597).
- Correct dereferencing of already freed server objects during - Correct dereferencing of already freed server objects during
@ -305,6 +313,8 @@ v0.8.20 2016-09-16 The Irssi team <staff@irssi.org>
Quarkslab. Quarkslab.
v0.8.19 2016-03-23 The Irssi team <staff@irssi.org> v0.8.19 2016-03-23 The Irssi team <staff@irssi.org>
! If your cursor keys stopped working, try this first: `/bind
meta-O key meta2'
- Fixed regression when joining and parting channels on IRCnet (#435) - Fixed regression when joining and parting channels on IRCnet (#435)
- Fixed SASL EXTERNAL. By Mantas Mikulėnas (grawity, #432) - Fixed SASL EXTERNAL. By Mantas Mikulėnas (grawity, #432)
- Fixed regression when not using SASL (#438) - Fixed regression when not using SASL (#438)
@ -320,11 +330,15 @@ v0.8.19 2016-03-23 The Irssi team <staff@irssi.org>
v0.8.18 2016-02-13 The Irssi team <staff@irssi.org> v0.8.18 2016-02-13 The Irssi team <staff@irssi.org>
* Modules will now require to define a * Modules will now require to define a
void MODULENAME ## _abicheck(int *version) void MODULENAME ## _abicheck(int *version)
method to ensure that they are compiled against the correct Irssi method to ensure that they are compiled against the correct Irssi
version. version.
* The signature of "message private" has been changed to * The signature of "message private" has been changed to
5: server, message, nick, address, target 5: server, message, nick, address, target
in order to support "self messages". Module authors should in order to support "self messages". Module authors should
implement this change if they are using this signal. implement this change if they are using this signal.
* Removing networks will now remove all attached servers and channels * Removing networks will now remove all attached servers and channels
@ -337,12 +351,14 @@ v0.8.18 2016-02-13 The Irssi team <staff@irssi.org>
effect for anyone given that it has been unsupported for several years. effect for anyone given that it has been unsupported for several years.
+ CAP SASL PLAIN login is now supported natively. + CAP SASL PLAIN login is now supported natively.
+ Paste bracket markers can be requested from terminal with + Paste bracket markers can be requested from terminal with
/set paste_use_bracketed_mode on /set paste_use_bracketed_mode on
+ "Self messages" generated by some bouncers can now be received in the + "Self messages" generated by some bouncers can now be received in the
proper window. proper window.
+ Try to split long lines on spaces to avoid words being splitted. Adds + Try to split long lines on spaces to avoid words being splitted. Adds
a new option: 'split_line_on_space' which defaults to on. a new option: `split_line_on_space' which defaults to on.
+ Add setting hilight_nick_matches_everywhere (#56). + Add setting `hilight_nick_matches_everywhere' (#56).
+ The config parser is more robust and prints out better diagnostics on + The config parser is more robust and prints out better diagnostics on
incorrect config files. incorrect config files.
+ Ctrl+^ (FS#721) and Ctrl+J can now be bound. + Ctrl+^ (FS#721) and Ctrl+J can now be bound.