summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorailin-nemui <ailin-nemui@users.noreply.github.com>2017-02-05 20:21:20 +0100
committerailin-nemui <ailin-nemui@users.noreply.github.com>2017-02-05 20:21:20 +0100
commit1cfe9652a704558fa42d87d317ec821ee91f4458 (patch)
tree0a9fb2932974a58325c5499161009f8bb381b316 /NEWS
parentaab24cf4a4456682e82de4eb96e44472b7e237b2 (diff)
parent99e3d8a30bdf68775825eb79e5c29f3af12cd255 (diff)
downloadirssi-1cfe9652a704558fa42d87d317ec821ee91f4458.zip
Merge branch 'integrate/1.0.1'
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS17
1 files changed, 13 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 267eaa2a..2553d0da 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,14 @@
v1.1-head 2017-xx-xx The Irssi team <staff@irssi.org>
+v1.0.1 2017-02-03 The Irssi team <staff@irssi.org>
+ - Fix Perl compilation in object dir. By Martijn Dekker (#602, #623).
+ - Disable EC cryptography on Solaris to fix build (#604, #598).
+ - Fix incorrect HELP SERVER example (#606, #519).
+ - Correct memory leak in /OP and /VOICE. By Tim Konick (#608).
+ - Fix regression that broke second level completion (#613, #609).
+ - Correct missing NULL termination in perl_parse. By Hanno Böck (#619).
+ - Sync broken mail.pl script (#624, #607).
+
v1.0.0 2017-01-03 The Irssi team <staff@irssi.org>
* Removed --disable-ipv6 (#408).
* /connect Network now aborts with an error if no servers have been
@@ -41,16 +50,16 @@ v1.0.0 2017-01-03 The Irssi team <staff@irssi.org>
values like this: Start by downloading the certificate from a given IRC
server:
- $ openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | \
- openssl x509 > freenode.cert
+ $ openssl s_client -connect irc.example.net:6697 < /dev/null 2>/dev/null | \
+ openssl x509 > example.cert
Find the value for -tls_pinned_cert:
- $ openssl x509 -in freenode.cert -fingerprint -sha256 -noout
+ $ openssl x509 -in example.cert -fingerprint -sha256 -noout
Find the value for -tls_pinned_pubkey:
- $ openssl x509 -in freenode.cert -pubkey -noout | \
+ $ openssl x509 -in example.cert -pubkey -noout | \
openssl pkey -pubin -outform der | \
openssl dgst -sha256 -c | \
tr a-z A-Z