summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2000-04-26updatesTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@176 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-26fixesTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@175 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-26fixedTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@174 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-26rest of the ~rewrite?Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@172 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-26..adding new files..Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-26..still removing..Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@170 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-14section can be NULL - which is same as "". Fixed several functions to allowTimo Sirainen
it. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@164 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-14Sorry for a big update - I still don't have internet connection at homeTimo Sirainen
and this is what I've been doing a few weeks now.. :) You really shouldn't upgrade to this version without keeping a backup of the working one, since this will break everything and at least notify list is broken - probably something else too. * On the way to 0.8.0 .. Major rewriting/rearranging code. There's some changes in behaviour because I'm trying to make Irssi a bit more compatible with EPIC. * libPropList isn't needed anymore - I'm using my own configuration library. This is mostly because different proplists worked a bit differently everywhere and several people had problems with it. It's also yet another extra library that you needed to compile Irssi. New configuration library has several advantages: You can add comments to configuration file and they also stay there when it's saved. It's not nearly as vulnerable as proplist. If some error occurs, instead of just not reading anything it will try to continue if possible. Also the error messages are written to irssi's text window instead of stdout. It can be managed more easily than proplist - setting/getting the configuration is a lot more easier. * Coding style changes - I'm not using gint, gchar etc. anymore, they're just extra pain when moving code to non-glib projects and syntax hilighting doesn't work by default with most editors ;) Indentation style was also changed to K&R because of some political reasons ;) And I'm already starting to like it.. :) It forces me to split code to different functions more often and the result is that the code gets more readable. And finally I'm also using nst' all over the place. + /EVAL <commands> - Expand all the special variables from string and run it. Commands can be split with ; character. See docs/SPECIAL_VARS for more info. + Aliases are parsed just like /EVAL - arguments are in $0..$9. + Text formats are also parsed like /EVAL, arguments used to be in $1..$9, now they're in $0..$8 so it messes up existing themes.. + /SET [key [value]] - no more the '=' character. Boolean values also need to be changed with ON/OFF/TOGGLE values (not yes/no). Settings aren't saved to disk until you use /SAVE. + /TOGGLE <key> [ON/OFF] - same as /SET <key> TOGGLE git-svn-id: http://svn.irssi.org/repos/irssi/trunk@163 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-19Moved all server connection information to SERVER_CONNECT_REC fromTimo Sirainen
SERVER_REC and RECONNECT_REC. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@160 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-19Several GLists moved to GSLists.Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@159 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-19Removed as many warnings as possible when compiling with -ansi -pedanticTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@158 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-19Server reconnection tries always the first server in the list whereTimo Sirainen
connection hasn't failed for the last half an hour. If all have failed, just try connecting to any of them. +several code cleanups. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@157 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-18Merged line-split from i2k. Several other cleanups.Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@156 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-18Merged in i2k's networking codeTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@155 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-18Merged some of i2k's signal handling code. All signals are now linkedTimo Sirainen
to some module, so plugin_bind() was removed as useless. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@154 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-18Remove gui_timeout_add/remove, gui_input_add/remove and lib-nongui, useTimo Sirainen
Glib instead. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@151 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-01- fix perl related problemswiget
- use libtool to build helping libraries git-svn-id: http://svn.irssi.org/repos/irssi/trunk@131 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-02-25Irssi 0.7.27 released.Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@130 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-02-24Perl documentation and updatesTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@129 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-02-24Updated perl supportTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@128 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-02-18Don't allow any setup file changes or log writing if another irssiTimo Sirainen
session is running. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@121 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-01-12updates for new version:Timo Sirainen
+ configure displays a summary of things to compile + /set toggle_use_colors = yes|no, sets colors on/off in irssi-text - Some kB/s messages displayed wrong values when resuming DCC transfers. Also, kB/s is now displayed with two decimals - "Day changed to 00-10-2000" .. month was wrong. No Y2K bugs however ;) - List of ircnets was displyed wrong in server dialog. - Userhost replies didn't handle ircops right.. - Doesn't quit when receives SIGHUP - some window managers send it when restarting itself (Afterstep) - Specifying "source host IP" didn't work (vhosts). - Using ctrl-b etc. didn't move the cursor forward.. - Don't try to compile GTK parts of plugins if we don't even want build GTK irssi - Doesn't crash when trying to create DCC dialog after being disconnected from IRC server git-svn-id: http://svn.irssi.org/repos/irssi/trunk@104 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-12-19IRC Network specific settings: nick, username, realname,Timo Sirainen
max. kicks/modes/msgs per command. Keeps track of "wanted nick", ie. the nick you specified in the setup or to /server or /nick. When reconnecting to server it always tries the wanted nick before falling back to alternate nicks. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@98 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-11-20Last changes for 0.7.19Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@77 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-11-07Automatic text replaces, useful for things like :9 -> :) .. ThisTimo Sirainen
is actually almost same as completions, except they are activated with different keys.. Nicklist popup menu is now configurable. It's now in the automation setup dialog which is a bit wrong.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@74 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-11-06Keyboard configuration worksTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@73 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-11-06"window server changed" -> "channel server changed"Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@72 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-11-03NLS support should work without gnome now.Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@71 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-26Changed setting code behaviour. setup_get_str(), setup_get_int() andTimo Sirainen
setup_get_bool() should be used instead of directly accessing setup variables. This has the advantage of not requiring to build the whole irssi every time when adding new configuration variable. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@64 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-20Autoaccept dcc chat from given nick/addressTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@62 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-20Autoget DCC if nick/mask is found from listTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@61 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-19str2list() updates - added separator argument and you'll need to free onlyTimo Sirainen
the first item on the list instead of all of them. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@59 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-16Fix for building with objdirTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@57 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-16Use command_bind() and command_unbind() for binding commands, theyTimo Sirainen
automatically update /help git-svn-id: http://svn.irssi.org/repos/irssi/trunk@56 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-12"nick gone changed" signal is sent when gone status changes instead ofTimo Sirainen
"nicklist changed" .. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@46 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-10Each window can have it's own command history bufferTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@44 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-10Lag detection displayed in statusbar, can also automatically disconnectTimo Sirainen
if too much lagged. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@43 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-09moved the strerror() implementation if it doesn't existTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@41 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-09Fixes to make irssi to work properly with several different irc servers/nets.Timo Sirainen
Some servers didn't allow WHO #a,#b,.., undernet servers reply with only one End of WHO message, some servers that don't understand MODE #a,#b,.. reply with "you're not on that channel". Also checking if irc server understands channel excepition/invites is done at server connect from event 004. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@40 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-09popt-gnome.h isn't used anymoreTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@39 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-09config_section() and config_list_section() changedTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@38 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-06libpopt is now distributed with irssi since it's small enough and I gotTimo Sirainen
tired of installing it to every computer when I tried to run irssi.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@37 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-03Command line argument handling works.Timo Sirainen
-c server [-p port] : connects to server at startup -n : don't autoconnect to any servers git-svn-id: http://svn.irssi.org/repos/irssi/trunk@33 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-02Moved background pixmap settings to theme specific.Timo Sirainen
Fixed some memory leaks. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@31 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-02--without-bot to configure doesn't build irssi-botTimo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@30 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-27More GtkIText changes. Most of the ZVT things are removed.Timo Sirainen
You can now change font and background. Background pixmaps also work, they can be scrollable, shaded and scaled/tiled. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@28 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-21Removed the "multichannel query" thing since it wasn't actually needed :)Timo Sirainen
Replaced it with server specific timeout between sending commands, after raising it to 3 seconds all servers worked just fine. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@27 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-18New server specific option: "Send queries for all channels at once". It'sTimo Sirainen
faster to use it but some servers (I've found only one so far..) hang the connection with this. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@26 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-17You can specify what port to use with DCC.Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@25 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-15Related to channel query changes..Timo Sirainen
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@24 dbcabf3a-b0e7-0310-adc4-f8d773084564