mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
- Update to 2.4.0
This commit is contained in:
parent
a4324f8259
commit
ee45b2ed8b
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=116441
@ -6,10 +6,9 @@
|
||||
#
|
||||
|
||||
PORTNAME= xchat2
|
||||
PORTVERSION= 2.0.10
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 2.4.0
|
||||
CATEGORIES= irc gnome ipv6
|
||||
MASTER_SITES= http://xchat.org/files/source/2.0/
|
||||
MASTER_SITES= http://xchat.org/files/source/2.4/
|
||||
DISTNAME= xchat-${PORTVERSION}
|
||||
|
||||
MAINTAINER= gnome@FreeBSD.org
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (xchat-2.0.10.tar.bz2) = 968bc5f074fd7c202a8d63758bd5b62d
|
||||
SIZE (xchat-2.0.10.tar.bz2) = 1113265
|
||||
MD5 (xchat-2.4.0.tar.bz2) = 084585b765509d5da355155189b16ecd
|
||||
SIZE (xchat-2.4.0.tar.bz2) = 1159266
|
||||
|
@ -1,9 +1,9 @@
|
||||
# Fixes two tab-nick-completion bugs:
|
||||
# 1. Crash when you type space-tab
|
||||
# 2. Critical glib warning when completion in a dialog-tab.
|
||||
--- src/fe-gtk/fkeys.c 2004-07-01 18:28:43.000000000 +0200
|
||||
+++ src/fe-gtk/fkeys.c 2004-07-05 12:19:56.000000000 +0200
|
||||
@@ -1394,7 +1394,7 @@
|
||||
--- src/fe-gtk/fkeys.c.orig Thu Aug 5 07:49:06 2004
|
||||
+++ src/fe-gtk/fkeys.c Mon Aug 16 22:54:58 2004
|
||||
@@ -1427,7 +1427,7 @@
|
||||
skip_len++;
|
||||
}
|
||||
else
|
||||
@ -12,13 +12,13 @@
|
||||
}
|
||||
|
||||
comp = skip_len;
|
||||
@@ -1599,7 +1599,8 @@
|
||||
gtk_entry_set_text (GTK_ENTRY (t), buf);
|
||||
gtk_editable_set_position (GTK_EDITABLE (t), g_utf8_pointer_to_offset(buf, buf + cursor_pos));
|
||||
}
|
||||
- g_completion_free(gcomp);
|
||||
+ if (gcomp)
|
||||
+ g_completion_free(gcomp);
|
||||
return 2;
|
||||
}
|
||||
#undef COMP_BUF
|
||||
@@ -1608,7 +1608,8 @@
|
||||
list = list->next;
|
||||
}
|
||||
PrintText (sess, buf);
|
||||
- g_completion_free(gcomp);
|
||||
+ if (gcomp)
|
||||
+ g_completion_free(gcomp);
|
||||
return 2;
|
||||
}
|
||||
/* Only one matching entry */
|
||||
|
@ -17,7 +17,9 @@ share/locale/et/LC_MESSAGES/xchat.mo
|
||||
share/locale/eu/LC_MESSAGES/xchat.mo
|
||||
share/locale/fi/LC_MESSAGES/xchat.mo
|
||||
share/locale/fr/LC_MESSAGES/xchat.mo
|
||||
share/locale/it/LC_MESSAGES/xchat.mo
|
||||
share/locale/ja/LC_MESSAGES/xchat.mo
|
||||
share/locale/ko/LC_MESSAGES/xchat.mo
|
||||
share/locale/lt/LC_MESSAGES/xchat.mo
|
||||
share/locale/lv/LC_MESSAGES/xchat.mo
|
||||
share/locale/mk/LC_MESSAGES/xchat.mo
|
||||
|
Loading…
Reference in New Issue
Block a user