From 35482e453f2f1cf1d88f8bbd7dc0667252a5297c Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Fri, 25 Apr 2008 20:05:24 +0000 Subject: [PATCH] update NEWS --- NEWS | 2 ++ gtk/tr-prefs.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 6a159e813..f05af32bb 100644 --- a/NEWS +++ b/NEWS @@ -2,8 +2,10 @@ NEWS file for Transmission 1.20 (2008/mm/dd) - All Platforms + + Support https tracker connections + IP blocking using the Bluetack Level1 blocklist + Ability to reset global statistics + + Various bugfixes - Mac + Display of decimal numbers matches system international settings + Updated Dock badge images diff --git a/gtk/tr-prefs.c b/gtk/tr-prefs.c index a0161c5bf..472709ebe 100644 --- a/gtk/tr-prefs.c +++ b/gtk/tr-prefs.c @@ -205,7 +205,6 @@ testing_port_begin( gpointer gdata ) const int port = gtk_spin_button_get_value_as_int( spin ); char url[256]; snprintf( url, sizeof(url), "http://portcheck.transmissionbt.com/%d", port ); - gtk_label_set_markup( GTK_LABEL( data->label ), _( "Testing port..." ) ); tr_webRun( handle, url, testing_port_done, data ); } return FALSE; @@ -214,6 +213,7 @@ testing_port_begin( gpointer gdata ) static void testing_port_cb( GtkWidget * unused UNUSED, gpointer l ) { + gtk_label_set_markup( GTK_LABEL( l ), _( "Testing port..." ) ); /* wait three seconds to give the port forwarding time to kick in */ struct test_port_data * data = g_new0( struct test_port_data, 1 ); data->label = l; -- 2.40.0