update README and [listener] extend retry intervals

This commit is contained in:
Hylke Bons 2010-10-03 22:15:24 +01:00
parent cdf92ba60a
commit 86b155159b
2 changed files with 6 additions and 4 deletions

3
README
View file

@ -73,7 +73,8 @@ To build SparkleShare you need:
You can build and install SparkleShare like this:
$ ./configure (or ./autogen if you got SparkleShare from the repository)
$ ./configure (or ./autogen if you got SparkleShare from the repository,
append --prefix=/usr if you want the Nautilus extension to work)
$ make
$ sudo make install

View file

@ -43,6 +43,7 @@ namespace SparkleLib {
Channel = channel;
Nick = nick.Replace ("@", "_at_").Replace (".", "_dot_");
// Keep the nick short
if (Nick.Length > 9)
Nick = Nick.Substring (0, 9);
@ -51,9 +52,9 @@ namespace SparkleLib {
Server = "irc.gnome.org";
Client = new IrcClient () {
PingTimeout = 60,
SocketSendTimeout = 60,
SocketReceiveTimeout = 60,
PingTimeout = 90,
SocketSendTimeout = 90,
SocketReceiveTimeout = 90,
AutoRetry = true,
AutoReconnect = true,
AutoRejoin = true