diff options
author | Timo Sirainen <cras@irssi.org> | 1999-11-27 21:15:30 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 1999-11-27 21:15:30 +0000 |
commit | eb4a9f1c2a6188631c672f4698e71e06ff943206 (patch) | |
tree | cad70589c6db32643f84922bbdce5316ae7a93d4 | |
parent | 6ba8e4d3181c2adb7cf220dd5c0c1f921713ec95 (diff) | |
download | irssi-eb4a9f1c2a6188631c672f4698e71e06ff943206.zip |
Updates for 0.7.20
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@88 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | NEWS | 28 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 31 insertions, 2 deletions
@@ -1,3 +1,31 @@ +v0.7.20 1999-11-27 Timo Sirainen <cras@irccrew.org> [unstable] + + + Polish and finnish translations started + + + SQL plugin which doesn't do much, currently supports MySQL only. + Meant to be used by other plugins. + + + Botnet to bot plugin - it should already be possible to create a + big bot network with this (each bot having multiple clients + + uplink). The functionality is limited only to BCAST message for + now which sends a message to all bots. Read docs/botnet.txt for my + plans for it :) + + - If plugins failed in initialization (plugin_init()), irssi could + crash. + - Server settings (nick, realname, etc.) were saved to different + place in configuration file than where they were read from.. + So, saving them didn't really work. + - Plugin autoloading didn't work + - When trying to show channel's window from panel and you weren't + using helvetica font (itext's internal default), irssi crashed.. + - Irssi crashed if you didn't have menubar enabled and didn't + compile with gnome. + - When invalid theme was found from global directory, irssi + complained about it every time. Now the fixed theme is saved to + ~/.irssi/ directory and used thereafter. + - Deleting ircnets didn't work right + v0.7.19 1999-11-20 Timo Sirainen <cras@irccrew.org> [unstable] * Text formats changed - they should be compatible with epic/bx now. diff --git a/configure.in b/configure.in index 09fc918d..932bfd6f 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ AC_INIT(src) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(irssi, 0.7.19) +AM_INIT_AUTOMAKE(irssi, 0.7.20) AM_MAINTAINER_MODE @@ -335,7 +335,7 @@ dnl ** dnl ** internationalization support dnl ** -ALL_LINGUAS="pl" +ALL_LINGUAS="pl fi" AM_GNU_GETTEXT AC_OUTPUT( @@ -367,5 +367,6 @@ plugins/sound/Makefile plugins/proxy/Makefile plugins/external/Makefile plugins/bot/Makefile +plugins/sql/Makefile stamp.h irssi.spec) |