1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00
Commit Graph

211 Commits

Author SHA1 Message Date
ailin-nemui
3d1980599a Merge tag '1.1.2' into integrate/1.1.2 2019-01-09 15:41:28 +01:00
ailin-nemui
a72e706667
Merge pull request #849 from ailin-nemui/news-update
add additional notes to NEWS
2018-02-15 19:46:32 +01:00
ailin-nemui
0b9beeb01d Merge tag '1.1.1' into integrate/1.1.1 2018-02-15 01:18:37 +01:00
ailin-nemui
666ddc2ecd Merge tag '1.0.7' into integrate/1.0.7 2018-02-15 00:56:08 +01:00
ailin-nemui
5c60e72b11 add additional notes to NEWS
(synced back from github releases)
2018-02-15 00:44:19 +01:00
ailin-nemui
ef8111eebe Merge branch 'maint/1.1.0' into integrate/1.1.0 2018-01-15 21:57:14 +01:00
Ailin Nemui
c8012b2e57 Merge tag '1.0.6' into integrate/1.0.6 2018-01-05 00:32:29 +01:00
ailin-nemui
816df6d153 Merge tag '1.0.5' into integrate/1.0.5 2017-10-22 15:39:18 +02:00
Ailin Nemui
91ec153c7f Merge tag '1.0.4' into integrate/1.0.4 2017-07-05 21:31:43 +02:00
Ailin Nemui
fc67fd5111 Merge tag '1.0.3' 2017-06-06 21:11:44 +02:00
Ailin Nemui
3930f91edc tag as 1.0.2
(cherry picked from commit 2a53853f36)
2017-03-10 18:03:01 +01:00
ailin-nemui
22bc7fcc39 amend forgotten fix
(cherry picked from commit 0ada284a25)
2017-03-10 17:19:17 +01:00
ailin-nemui
1cfe9652a7 Merge branch 'integrate/1.0.1' 2017-02-05 20:21:20 +01:00
ailin-nemui
99e3d8a30b tag as 1.0.1 2017-02-05 20:20:35 +01:00
dequis
69e112fbd1 NEWS: Avoid explicitly mentioning freenode in the pinning examples
They have proper certs, so using them as an example is wrong.
Particularly worse since they started using letsencrypt recently so
every server has a different cert and pubkey.

We'll figure out how to link this from the release notes later.
2017-01-06 12:57:53 -03:00
ailin-nemui
cbb931ed1d continue head 2017-01-05 13:14:15 +01:00
ailin-nemui
ea7826b0ec tag as 1.0.0 2017-01-05 13:10:08 +01:00
ailin-nemui
a96b1e4328 Merge tag '0.8.21' into integrate/0.8.21 2017-01-03 14:38:02 +01:00
ailin-nemui
7cac354161 tag as 0.8.21 2017-01-03 14:24:55 +01:00
Alexander Færøy
5a04430998
Kill support for DANE.
This patch removes support for DANE validation of TLS certificates.

There wasn't enough support in the IRC community to push for this on the
majority of bigger IRC networks. If you believe this should be
reintroduced into irssi, then please come up with an implementation that
does not rely on the libval library. It is causing a lot of troubles for
our downstream maintainers.
2016-10-22 22:04:33 +02:00
Alexander Færøy
5146ce9631
Add x509 certificate and public key pinning support.
This patch adds two new options to /CONNECT and /SERVER to let the user
pin either an x509 certificate and/or the public key of a given server.

It is possible to fetch the certificate outside of Irssi itself to
verify the checksum. To fetch the certificate call:

    $ openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | \
      openssl x509 > freenode.cert

This will download chat.freenode.net:6697's TLS certificate and put it into the
file freenode.cert.

-tls_pinned_cert
----------------

This option allows you to specify the SHA-256 hash of the x509
certificate. When succesfully connected to the server, irssi will verify
that the given server certificate matches the pin set by the user.

The SHA-256 hash of a given certificate can be verified outside of irssi
using the OpenSSL command line tool:

    $ openssl x509 -in freenode.cert -fingerprint -sha256 -noout

-tls_pinned_pubkey
------------------

This option allows you to specify the SHA-256 hash of the subject public key
information section of the server certificate. This section contains both the
cryptographic parameters for the public key, but also information about the
algorithm used together with the public key parameters.

When succesfully connected to the server, irssi will verify that the
given public key matches the pin set by the user.

The SHA-256 hash of a public key can be verified outside of irssi using
the OpenSSL command line tool:

    $ openssl x509 -in freenode.cert -pubkey -noout | \
      openssl pkey -pubin -outform der | \
      openssl dgst -sha256 -c | \
      tr a-z A-Z

It is possible to specify both -tls_pinned_cert and -tls_pinned_pubkey
together.
2016-10-22 22:01:50 +02:00
Alexander Færøy
c6c2e79537
Display TLS connection information when connected to a TLS enabled server. 2016-10-22 21:58:50 +02:00
Alexander Færøy
6a286a4eb2
Use TLS by default for Freenode, IRC6, OFTC, EsperNet, EFnet, and Rizon. 2016-10-22 20:37:12 +02:00
Alexander Færøy
2be7289085
Rename SSL to TLS.
This patch changes the internal name of SSL to TLS. We also add -tls_*
options to /CONNECT and /SERVER, but make sure that the -ssl_* versions
of the commands continue to work like before.
2016-10-22 20:36:50 +02:00
Alexander Færøy
6300dfec71
Always build irssi with TLS support.
This patch removes the optional checks for whether to build irssi with
TLS support or not. This will allow us to ship a default configuration
file where we connect to TLS enabled IRC servers out of the box.
2016-10-16 14:55:48 +02:00
ailin-nemui
20b5d4d982 Update NEWS for 0.8.20 2016-09-20 19:56:06 +02:00
ailin-nemui
52fedeaf02 Update NEWS for 0.8.20 2016-09-14 13:34:39 +02:00
ailin-nemui
9ee4803770 remove curses terminal and ncurses macro 2016-08-04 10:02:28 +02:00
ailin-nemui
8d5edff515 update news and authors 2016-05-18 14:43:54 +02:00
ailin-nemui
8b847034ef update news and authors 2016-05-18 14:39:13 +02:00
ailin-nemui
bab60daa17 Merge tag '0.8.19' 2016-03-24 15:02:33 +01:00
ailin-nemui
c438315741 tag as 0.8.19 2016-03-23 00:24:25 +01:00
ailin-nemui
9174ec584f Merge tag '0.8.18'
master now on 0.8.19-head
2016-02-29 22:45:54 +01:00
ailin-nemui
b91f3c3025 tag as 0.8.18 2016-02-08 21:18:04 +01:00
ailin-nemui
4af3a4731e continue head 2016-01-18 10:43:28 +01:00
ailin-nemui
38b1121989 Merge branch '0.8.18-beta1' into 0.8.18-beta2 2016-01-12 23:34:44 +01:00
ailin-nemui
f6d4b11079 correct incorrect pre-release tag in NEWS 2015-12-22 00:51:57 +01:00
ailin-nemui
64463933fd list NEWS since 0.8.17 2015-12-22 00:16:12 +01:00
ailin-nemui
ab809d8d2a list NEWS since 0.8.17 2015-12-15 14:06:50 +01:00
Alexander Færøy
29cf546ee4
Remove Garbage Collection support.
GC support was never enabled by default and nobody in the current
development team seems to care about it.
2015-09-20 21:28:14 +02:00
Alexander Færøy
9abdeb8611 Merge pull request #152 from sebth/master
Try to split long lines on spaces
2015-01-05 01:03:58 +01:00
Veres Lajos
f285332c5b typo fixes - https://github.com/vlajos/misspell_fixer 2014-11-08 22:26:53 +00:00
Sebastian Thorarensen
f81a54b937 Try to split long lines on spaces
Try to split long lines on spaces to avoid words being splitted. This
can be turned off with the option `split_line_on_space'. The code
assumes that the terminal encoding has ASCII spaces.
2014-10-19 17:03:20 +02:00
Alexander Færøy
136efda1bc Add NEWS entry on SSLv3 2014-10-15 20:14:17 +02:00
Alexander Færøy
971b1e57ab Add header for v0.8.18-head 2014-10-11 12:16:43 +02:00
Alexander Færøy
df1df75ca2 Prepare for 0.8.17 2014-10-11 10:44:46 +02:00
Alexander Færøy
503cbeb330 Head is now 0.8.17-head. 2014-08-31 18:35:15 +02:00
Alexander Færøy
56bd481974 Prepare for irssi 0.8.17-rc2. 2014-08-31 18:34:30 +02:00
Geert Hauwaerts
a5154c4e77 Fixing a typo
Fixing a typo.
2014-07-14 13:19:31 +02:00
David Leadbeater
16743c5c13 Update NEWS 2014-07-13 20:01:08 +01:00
Sebastian Thorarensen
3257794bf7 Add information about message splitting to NEWS
(...and AUTHORS.)
2014-07-06 23:25:54 +02:00
Alexander Færøy
48d9fec8b8 Add initial NEWS entries for 0.8.17-head 2014-06-18 23:11:00 +02:00
Alexander Færøy
1f04b12c9c Prepare for 0.8.16
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5232 dbcabf3a-b0e7-0310-adc4-f8d773084564
2014-05-28 21:50:41 +00:00
Alexander Færøy
68f8229373 Add -ssl_pass to /connect and /server
Fixes: Bug #305

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5231 dbcabf3a-b0e7-0310-adc4-f8d773084564
2014-01-11 19:53:17 +00:00
Alexander Færøy
952698dc3a Update NEWS file
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5230 dbcabf3a-b0e7-0310-adc4-f8d773084564
2014-01-11 15:10:59 +00:00
Alexander Færøy
fa92c92797 Fix wording before release
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5227 dbcabf3a-b0e7-0310-adc4-f8d773084564
2013-09-15 16:49:11 +00:00
Alexander Færøy
56700f9515 Version is now 0.8.16-rc1
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5225 dbcabf3a-b0e7-0310-adc4-f8d773084564
2013-09-14 12:54:25 +00:00
Alexander Færøy
85f272daaf Prepare for 0.8.16rc1
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5224 dbcabf3a-b0e7-0310-adc4-f8d773084564
2013-06-25 21:35:19 +00:00
Alexander Færøy
5a747f3407 Preparation for 0.8.15, take two.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5133 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-04-03 16:17:30 +00:00
Alexander Færøy
b7a0807505 Preparation for 0.8.15
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5131 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-04-02 19:39:54 +00:00
Wouter Coekaerts
87e54fdfa6 complete NEWS
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5128 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-03-21 20:54:04 +00:00
Alexander Færøy
1693924b3b Slowly prepare for 0.8.15-rc1.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5127 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-03-21 20:25:44 +00:00
Wouter Coekaerts
2a439eee54 Fix active_window_ignore_refnum description
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5106 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-12-28 18:07:14 +00:00
Wouter Coekaerts
433cf4211f Update NEWS
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5105 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-12-28 12:26:34 +00:00
Alexander Færøy
03a695e487 Release: 0.8.14
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5081 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-07-28 19:38:36 +00:00
Alexander Færøy
13edcc2ad1 Typo spotted by RichiH.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5079 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-06-07 11:50:55 +00:00
Wouter Coekaerts
65feac9ef2 Release 0.8.13
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5054 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-03-31 21:01:42 +00:00
Wouter Coekaerts
d81ec45378 Fix /NOTIFY list when nick is seen joining (bug #642)
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5039 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-03-10 22:18:01 +00:00
Wouter Coekaerts
e5fee8869c Include hostmask in 001 event sent by proxy (bug #650)
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5038 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-03-10 21:36:35 +00:00
Wouter Coekaerts
1fd6094c27 Update AUTHORS and NEWS
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5036 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-03-10 20:38:53 +00:00
Alexander Færøy
559e2ada2e Add autolog_ignore_targets entry to the NEWS file.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5033 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-03-01 22:05:42 +00:00
Emanuele Giaquinta
a065f97f87 Recode outgoing irc quit messages.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4940 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-12-02 16:13:15 +00:00
Emanuele Giaquinta
41be9d6085 Update NEWS.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4923 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-28 09:54:23 +00:00
Wouter Coekaerts
136a1ec360 Update NEWS
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4911 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-15 22:07:31 +00:00
Emanuele Giaquinta
621761cff3 Handle bold/blink attributes like other attributes rather than mapping them to
the eighth bit of the color. The formats KBGCRMYW and the mirc colors are now
mapped to colors 8-15. fe-text translates colors 8-15 to bold/blink+0-7 if the
terminal supports only 8 colors.


git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4909 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-15 21:51:07 +00:00
Jochen Eisinger
f8461d39bc introduce the type Irssi::Irc::Client and signals to communicate with proxy
clients to allow for scripting parts of the irssi-proxy.



git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4882 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-02 12:13:36 +00:00
Emanuele Giaquinta
7c3e1437f3 Update NEWS.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4869 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-08-06 09:43:40 +00:00
Jilles Tjoelker
a7419662f7 Add some changes of mine to NEWS.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4868 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-08-06 00:47:59 +00:00
Emanuele Giaquinta
f84a7d9e2b Add 'actlist_names' option to add active items names in 'act' statusbar item.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4860 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-06-10 10:21:00 +00:00
Wouter Coekaerts
1a79bd055c Fix /set hilight_level not taking effect immediately (bug #598). Patch by exg.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4857 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-06-04 19:33:00 +00:00
Emanuele Giaquinta
8e8d46f211 Update NEWS.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4843 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-05-23 07:51:10 +00:00
Jilles Tjoelker
22e180d1a4 Add entry about /userhost * and copying oper status flag on new join.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4662 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-12-06 23:37:37 +00:00
Emanuele Giaquinta
350c04abdf Remove trailing whitespace.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4658 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-12-05 23:51:06 +00:00
Emanuele Giaquinta
4c96fd7022 Update.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4643 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-11-18 10:30:44 +00:00
Wouter Coekaerts
ed2ab98102 Release 0.8.12
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4606 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-10-06 09:39:55 +00:00
Wouter Coekaerts
85943e22d5 Release 0.8.12-rc1
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4604 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-08-26 20:02:10 +00:00
Wouter Coekaerts
a5e96939b2 Sort NEWS by features and fixed like previous released, and update
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4602 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-08-22 19:47:28 +00:00
Jilles Tjoelker
69bda66acd Update NEWS file, always mentioning the bug number if any.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4578 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-07-11 21:00:37 +00:00
Jilles Tjoelker
0f33f40e7f NEWS: describe my changes (not others') since 0.8.11.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4568 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-06-20 21:35:23 +00:00
Wouter Coekaerts
b2f6d813a4 Put release date in NEWS file
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4460 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-04-25 18:13:08 +00:00
Wouter Coekaerts
8861980f94 Release 0.8.11-rc2
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4456 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-04-18 20:00:10 +00:00
Wouter Coekaerts
af94d52d21 update NEWS
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4455 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-04-18 17:48:55 +00:00
Wouter Coekaerts
a4cd003bd0 Removed automatic glib downloading and compiling.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4445 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-04-14 15:17:19 +00:00
Emanuele Giaquinta
ace371b2a3 Revert r4352.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4444 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-04-14 11:09:37 +00:00
Emanuele Giaquinta
1d54d999d5 Add completion for /window goto.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4429 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-02-25 18:05:53 +00:00
Emanuele Giaquinta
d78438ef1c Update.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4422 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-02-19 11:39:36 +00:00
Emanuele Giaquinta
9d72e78ccd Revert perl utf8 stuff for now.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4412 dbcabf3a-b0e7-0310-adc4-f8d773084564
2007-02-06 23:06:14 +00:00
Emanuele Giaquinta
122b872a2d Corrections.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4401 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-12-10 16:11:19 +00:00
Emanuele Giaquinta
737890d131 Clarifications and corrections.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4399 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-12-10 15:49:06 +00:00
Wouter Coekaerts
907ec46148 Oh, that patch came from exg
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4398 dbcabf3a-b0e7-0310-adc4-f8d773084564
2006-12-08 22:28:25 +00:00