Changed the version. Added announcement.

git-svn-id: http://svn.code.sf.net/p/xqf/code/trunk@37 d2ac09be-c843-0410-8b1f-f8a84130e0ec
This commit is contained in:
Bill Adams 2001-01-14 06:01:31 +00:00 committed by evilbill
parent dbe7e26ad0
commit 06f9183fc9
5 changed files with 7 additions and 3 deletions

View File

@ -2,4 +2,4 @@
- Multiple Favorites
- More general server filters so one can filter based on any server var.
- Redial feature to connect to your favorite busy server.
- Fix the server core dumps!

View File

@ -5,7 +5,7 @@
AC_INIT( src/xqf.c)
AM_INIT_AUTOMAKE( xqf, 0.9.6e-beta)
AM_INIT_AUTOMAKE( xqf, 0.9.7)
AC_PROG_CC
AC_ISC_POSIX

View File

@ -351,11 +351,14 @@ void server_clist_sync_selection (void) {
int server_clist_refresh_server (struct server *s) {
int row;
debug (6, "server_clist_refresh_server() -- Server %lx", s );
apply_filters (cur_filter | FILTER_PLAYER_MASK, s);
row = gtk_clist_find_row_from_data (server_clist, s);
if (row >= 0) {
debug (6, "server_clist_refresh_server() -- Server %lx is at row %d", s, row );
if (default_refresh_sorts && (s->filters & cur_filter) != cur_filter) {
gtk_clist_remove (server_clist, row);

View File

@ -1245,7 +1245,7 @@ static void stat_next (struct stat_job *job) {
for (list = job->hosts; list; list = list->next) {
h = (struct host *) list->data;
dns_lookup (inet_ntoa (h->ip));
if (h) dns_lookup (inet_ntoa (h->ip));
}
return;
}

View File

@ -429,6 +429,7 @@ static int stat_lists_refresh (struct stat_job *job) {
int items;
int freeze;
debug (6, "sta_lists_refresh() -- Job %lx", job);
items = g_slist_length (job->delayed.queued_servers) +
g_slist_length (job->delayed.queued_hosts);
if (items) {