mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
commit
b837751b2d
3
AUTHORS
3
AUTHORS
@ -77,7 +77,7 @@ Other patches (grep for "patch" in ChangeLog) by:
|
|||||||
Jon Mayo
|
Jon Mayo
|
||||||
Johan Kiviniemi
|
Johan Kiviniemi
|
||||||
JasonX
|
JasonX
|
||||||
Lukas Mai
|
Lukas Mai (mauke)
|
||||||
Ismael Luceno
|
Ismael Luceno
|
||||||
Thomas Karpiniec
|
Thomas Karpiniec
|
||||||
Svante Kvarnström
|
Svante Kvarnström
|
||||||
@ -95,6 +95,5 @@ Other patches (grep for "patch" in ChangeLog) by:
|
|||||||
Adam-
|
Adam-
|
||||||
Robert C Jensen
|
Robert C Jensen
|
||||||
Paul Johnson
|
Paul Johnson
|
||||||
mauke
|
|
||||||
KindOne
|
KindOne
|
||||||
Fabian Kurz
|
Fabian Kurz
|
||||||
|
3
INSTALL
3
INSTALL
@ -11,8 +11,7 @@ To compile irssi you need:
|
|||||||
|
|
||||||
For most people, this should work just fine:
|
For most people, this should work just fine:
|
||||||
|
|
||||||
./autogen.sh (for people who just cloned the repository)
|
./configure
|
||||||
./configure (if this script already exists, skip ./autogen.sh)
|
|
||||||
make
|
make
|
||||||
su
|
su
|
||||||
make install (not _really_ required except for perl support)
|
make install (not _really_ required except for perl support)
|
||||||
|
8
NEWS
8
NEWS
@ -1,4 +1,8 @@
|
|||||||
v0.8.18-head 2016-xx-xx The Irssi team <staff@irssi.org>
|
v0.8.18-beta2 2016-01-13 The Irssi team <staff@irssi.org>
|
||||||
|
* Modules will now require to define a
|
||||||
|
void MODULENAME ## _abicheck(int *version)
|
||||||
|
method to ensure that they are compiled against the correct Irssi
|
||||||
|
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
|
||||||
@ -22,6 +26,7 @@ v0.8.18-head 2016-xx-xx The Irssi team <staff@irssi.org>
|
|||||||
+ 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.
|
||||||
|
+ Command history can be cleared with /window history -clear
|
||||||
+ /hilight -mask -line is now supported (FS#275).
|
+ /hilight -mask -line is now supported (FS#275).
|
||||||
+ CHANTYPES are now supported.
|
+ CHANTYPES are now supported.
|
||||||
+ Improved reload speed of ignores.
|
+ Improved reload speed of ignores.
|
||||||
@ -32,6 +37,7 @@ v0.8.18-head 2016-xx-xx The Irssi team <staff@irssi.org>
|
|||||||
+ Disable SSLv3 due to the POODLE vulnerability.
|
+ Disable SSLv3 due to the POODLE vulnerability.
|
||||||
+ SSL ciphers can now be specified per server.
|
+ SSL ciphers can now be specified per server.
|
||||||
+ Added SNI support for SSL.
|
+ Added SNI support for SSL.
|
||||||
|
- /ignore now respects -pattern on merge (#78).
|
||||||
- irssiproxy (BNC) module now uses correct line endings.
|
- irssiproxy (BNC) module now uses correct line endings.
|
||||||
- Fix missing lines on large pastes (FS#905).
|
- Fix missing lines on large pastes (FS#905).
|
||||||
- Correctly preserve STATUSMSG prefixes (#291).
|
- Correctly preserve STATUSMSG prefixes (#291).
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
AC_INIT(irssi, 0.8.18-head)
|
AC_INIT(irssi, 0.8.18-beta2)
|
||||||
AC_CONFIG_SRCDIR([src])
|
AC_CONFIG_SRCDIR([src])
|
||||||
AC_CONFIG_AUX_DIR(build-aux)
|
AC_CONFIG_AUX_DIR(build-aux)
|
||||||
AC_PREREQ(2.50)
|
AC_PREREQ(2.50)
|
||||||
|
Loading…
Reference in New Issue
Block a user