Update to 2.8.6.
This commit is contained in:
parent
d0323fcfe5
commit
4339d2d670
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=214842
7 changed files with 5 additions and 102 deletions
|
@ -7,8 +7,7 @@
|
|||
#
|
||||
|
||||
PORTNAME= xchat
|
||||
PORTVERSION= 2.8.4
|
||||
PORTREVISION= 6
|
||||
PORTVERSION= 2.8.6
|
||||
CATEGORIES= irc gnome ipv6
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
||||
http://xchat.org/files/source/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}/
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
MD5 (xchat-2.8.4.tar.bz2) = 66d60febc62a01bafac9bb3a35fb37ae
|
||||
SHA256 (xchat-2.8.4.tar.bz2) = f95a9a9e477128aae536669dedd79f4e7b4d469072565695289e4bbb5b36dd63
|
||||
SIZE (xchat-2.8.4.tar.bz2) = 1370883
|
||||
MD5 (xchat-2.8.6.tar.bz2) = 1f2670865d43a23a9abc596dde999aca
|
||||
SHA256 (xchat-2.8.6.tar.bz2) = 8c89dbf36304b99363a7f090d695447653102b4528ca2aa367a2abe5cff1746d
|
||||
SIZE (xchat-2.8.6.tar.bz2) = 1423645
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
--- src/fe-gtk/fe-gtk.c.orig 2008-03-07 13:04:07.000000000 -0600
|
||||
+++ src/fe-gtk/fe-gtk.c 2008-03-07 13:05:24.000000000 -0600
|
||||
@@ -660,7 +660,7 @@
|
||||
session *sess;
|
||||
gdouble per;
|
||||
char lagtext[64];
|
||||
- char lagtip[64];
|
||||
+ char lagtip[128];
|
||||
unsigned long nowtim;
|
||||
|
||||
if (lag == -1)
|
||||
@@ -716,8 +716,8 @@
|
||||
GSList *list = sess_list;
|
||||
struct session *sess;
|
||||
float per;
|
||||
- char tbuf[64];
|
||||
- char tip[64];
|
||||
+ char tbuf[96];
|
||||
+ char tip[160];
|
||||
|
||||
per = (float) serv->sendq_len / 1024.0;
|
||||
if (per > 1.0)
|
|
@ -1,14 +0,0 @@
|
|||
#
|
||||
# Scrollback shrinking code forgets to close().
|
||||
#
|
||||
--- src/common/text.c 2007-06-13 19:59:56.000000000 +1000
|
||||
+++ src/common/text.c 2007-11-02 23:52:57.000000000 +1100
|
||||
@@ -141,6 +146,7 @@
|
||||
}
|
||||
|
||||
*len = st.st_size;
|
||||
+ close (fh);
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
#
|
||||
# 1) Stops scrollback files growing too large by fixing the file-shrink code.
|
||||
# 2) Puts a "Display scrollback from previous session" into the Setup GUI
|
||||
# (logging section) so people can turn this off without typing commands.
|
||||
#
|
||||
--- src/common/text.c 29 Jul 2007 05:02:36 -0000 1.90
|
||||
+++ src/common/text.c 26 Sep 2007 07:29:55 -0000
|
||||
@@ -285,6 +285,8 @@
|
||||
}
|
||||
}
|
||||
|
||||
+ sess->scrollwritten = lines;
|
||||
+
|
||||
if (lines)
|
||||
{
|
||||
text = ctime (&stamp);
|
||||
--- src/fe-gtk/setup.c 9 Sep 2007 04:57:07 -0000 1.100
|
||||
+++ src/fe-gtk/setup.c 26 Sep 2007 07:29:57 -0000
|
||||
@@ -382,7 +382,8 @@
|
||||
static const setting logging_settings[] =
|
||||
{
|
||||
{ST_HEADER, N_("Logging"),0,0,0},
|
||||
- {ST_TOGGLE, N_("Enable logging of conversations"), P_OFFINTNL(logging), 0, 0, 2},
|
||||
+ {ST_TOGGLE, N_("Display scrollback from previous session"), P_OFFINTNL(text_replay), 0, 0, 0},
|
||||
+ {ST_TOGGLE, N_("Enable logging of conversations"), P_OFFINTNL(logging), 0, 0, 2},
|
||||
{ST_ENTRY, N_("Log filename:"), P_OFFSETNL(logmask), 0, 0, sizeof prefs.logmask},
|
||||
{ST_LABEL, N_("%s=Server %c=Channel %n=Network.")},
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
#
|
||||
# Fix creation of ~/.xchat2/scrollback/ paths.
|
||||
#
|
||||
--- src/common/text.c 15 Jun 2007 03:53:42 -0000 1.89
|
||||
+++ src/common/text.c 8 Jul 2007 08:59:02 -0000
|
||||
@@ -49,20 +49,25 @@
|
||||
|
||||
|
||||
static void mkdir_p (char *dir);
|
||||
+static char *log_create_filename (char *channame);
|
||||
|
||||
|
||||
static char *
|
||||
scrollback_get_filename (session *sess, char *buf, int max)
|
||||
{
|
||||
- char *net;
|
||||
+ char *net, *chan;
|
||||
|
||||
net = server_get_network (sess->server, FALSE);
|
||||
if (!net)
|
||||
return NULL;
|
||||
|
||||
- snprintf (buf, max, "%s/scrollback/%s/%s.txt", get_xdir_fs (), net, sess->channel);
|
||||
+ snprintf (buf, max, "%s/scrollback/%s/%s.txt", get_xdir_fs (), net, "");
|
||||
mkdir_p (buf);
|
||||
|
||||
+ chan = log_create_filename (sess->channel);
|
||||
+ snprintf (buf, max, "%s/scrollback/%s/%s.txt", get_xdir_fs (), net, chan);
|
||||
+ free (chan);
|
||||
+
|
||||
return buf;
|
||||
}
|
||||
|
|
@ -29,6 +29,7 @@ share/locale/ru/LC_MESSAGES/xchat.mo
|
|||
share/locale/sq/LC_MESSAGES/xchat.mo
|
||||
share/locale/sr/LC_MESSAGES/xchat.mo
|
||||
share/locale/sv/LC_MESSAGES/xchat.mo
|
||||
share/locale/th/LC_MESSAGES/xchat.mo
|
||||
share/locale/uk/LC_MESSAGES/xchat.mo
|
||||
share/locale/vi/LC_MESSAGES/xchat.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/xchat.mo
|
||||
|
|
Loading…
Reference in a new issue