1
0
mirror of https://github.com/irssi/irssi.git synced 2025-02-02 15:08:01 -05:00

24 Commits

Author SHA1 Message Date
Timo Sirainen
d3dc9a1307 .. lots of changes ..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@197 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-05-04 10:32:42 +00:00
Timo Sirainen
d29ca0b107 rest of the ~rewrite?
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@172 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-04-26 08:10:09 +00:00
Timo Sirainen
53b248f6de Sorry for a big update - I still don't have internet connection at home
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-04-14 11:27:14 +00:00
Timo Sirainen
7f4eac0dd4 Moved all server connection information to SERVER_CONNECT_REC from
SERVER_REC and RECONNECT_REC.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@160 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-19 22:35:56 +00:00
Timo Sirainen
6275dd69ad Several GLists moved to GSLists.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@159 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-19 17:57:32 +00:00
Timo Sirainen
c701648ab3 Server reconnection tries always the first server in the list where
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-19 00:46:41 +00:00
Timo Sirainen
6b96becc79 Merged line-split from i2k. Several other cleanups.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@156 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-18 21:50:38 +00:00
Timo Sirainen
cc01075295 Merged in i2k's networking code
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@155 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-03-18 19:46:12 +00:00
Timo Sirainen
962e6fea11 Don't allow any setup file changes or log writing if another irssi
session is running.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@121 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-02-18 22:50:21 +00:00
Timo Sirainen
b36b88af1b IRC Network specific settings: nick, username, realname,
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-12-19 19:00:11 +00:00
Timo Sirainen
2b16677044 Automatic text replaces, useful for things like :9 -> :) .. This
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-07 01:18:15 +00:00
Timo Sirainen
260c792804 Changed setting code behaviour. setup_get_str(), setup_get_int() and
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-26 21:34:58 +00:00
Timo Sirainen
e14fef979c Autoaccept dcc chat from given nick/address
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@62 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-20 21:09:48 +00:00
Timo Sirainen
04828d0a21 Autoget DCC if nick/mask is found from list
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@61 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-20 18:57:52 +00:00
Timo Sirainen
3603846e7c Each window can have it's own command history buffer
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@44 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-10 09:01:08 +00:00
Timo Sirainen
6ef49200e2 Lag detection displayed in statusbar, can also automatically disconnect
if too much lagged.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@43 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-10 08:26:47 +00:00
Timo Sirainen
85d0af725c Fixes to make irssi to work properly with several different irc servers/nets.
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-09 18:14:52 +00:00
Timo Sirainen
25d7d58da9 Moved background pixmap settings to theme specific.
Fixed some memory leaks.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@31 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-10-02 13:56:16 +00:00
Timo Sirainen
0d12891b58 More GtkIText changes. Most of the ZVT things are removed.
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-27 16:54:39 +00:00
Timo Sirainen
8936bd1c88 Removed the "multichannel query" thing since it wasn't actually needed :)
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-21 14:31:28 +00:00
Timo Sirainen
74d81cf7c7 New server specific option: "Send queries for all channels at once". It's
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-18 16:22:32 +00:00
Timo Sirainen
313c44eb2e You can specify what port to use with DCC.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@25 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-17 14:42:29 +00:00
Timo Sirainen
afee6cfa8f Autojoining to channels work with irssi-text too
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@15 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-04 20:06:53 +00:00
Timo Sirainen
770ae4596d Initial revision
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3 dbcabf3a-b0e7-0310-adc4-f8d773084564
1999-09-03 14:27:29 +00:00