]> granicus.if.org Git - transmission/commitdiff
update NEWS
authorCharles Kerr <charles@transmissionbt.com>
Fri, 25 Apr 2008 20:05:24 +0000 (20:05 +0000)
committerCharles Kerr <charles@transmissionbt.com>
Fri, 25 Apr 2008 20:05:24 +0000 (20:05 +0000)
NEWS
gtk/tr-prefs.c

diff --git a/NEWS b/NEWS
index 6a159e813cfbd7b9fc2757c095cce8c31585766f..f05af32bb9ff321f45a68f7f8de2904089104bde 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,8 +2,10 @@ NEWS file for Transmission <http://www.transmissionbt.com/>
 
 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
index a0161c5bf31901f4e10fb2f2b443b34fa1158f07..472709ebe3b5a3852a59556713e3be701529a947 100644 (file)
@@ -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 ), _( "<i>Testing port...</i>" ) );
         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 ), _( "<i>Testing port...</i>" ) );
     /* 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;