head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.12 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.10 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.8 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.6 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.4 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.4.0.2 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.3.0.4 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.2 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.2.0.8 pkgsrc-2008Q2-base:1.2 cwrapper:1.2.0.6 pkgsrc-2008Q1:1.2.0.4 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.2 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.1.0.4 pkgsrc-2007Q3-base:1.1 pkgsrc-2007Q2:1.1.0.2 pkgsrc-2007Q2-base:1.1; locks; strict; comment @# @; 1.4 date 2008.11.03.12.52.39; author adam; state dead; branches; next 1.3; 1.3 date 2008.08.20.10.03.32; author adam; state Exp; branches; next 1.2; 1.2 date 2007.10.14.08.32.20; author adam; state Exp; branches; next 1.1; 1.1 date 2007.06.15.14.26.23; author darcy; state Exp; branches; next ; desc @@ 1.4 log @Removed unused (PROP_TYPE_STRING) patches @ text @$NetBSD: patch-ai,v 1.3 2008/08/20 10:03:32 adam Exp $ --- src/ui/gtk/settings.c.orig 2008-04-02 01:19:57.000000000 +0200 +++ src/ui/gtk/settings.c @@@@ -103,7 +103,7 @@@@ typedef struct prop_map { /* * Automatic field filled in by settings_gui_init_prop_map */ - prop_type_t type; /**< property type */ + gg_prop_type_t type; /**< property type */ prop_set_stub_t *stub; /**< property set stub */ gint *init_list; /**< init_list for reverse lookup */ } prop_map_t; @ 1.3 log @Changes 0.96.5: Bug Fixes: - 1870957: Wrong sign could cause out-of-bounds read and potentially a crash. - Firewalled status was not re-verified after a port change if the previously used port was open. - Fixed issue that caused the local peer cache to degenerate. Improvements: - Client-side support for tigertree hashes (TTH/THEX). - Replaced navigation tree by tabs. - Redesigned download user-interface to make it more accessible. - Added some selectable pre-defined search filters. - Bitzi tickets are displayed in full raw indented XML. - Display Bitzi and ShareMonkey URLs as search result details. - Topless mode is available at run-time via command-line switch. - Added default shared filename extensions: .7z, .bittorrent, .oga, .ogv, .spx, .tbz2 - Removed default shared filename extensions: .doc - Updated translations: Japanese, Norwegian Bokmal, French. Under the hood: - Changed default to dual use of IPv4 and IPv6 instead of IPv4-only. - Support the "as" (Alternate Source) key in magnet links. - Eszett is finally normalized to "ss" in search queries. - Avoid display updates for elements not currently visible. - Take full advantage of persistent HTTP connections to fetch multiple files from the same peer through over the same connection if scheduling permits. - Improved TLS support and blocking detection. - Updated list of hostile IP adress ranges, bogons, Geo-IP data, spam patterns and spam samples. @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Changes 0.96.4: Bug Fixes: - The download overlap checking was incorrectly detecting mismatches. - A bug in the network queue caused frequent crashes. - A bug in the event timing caused failures after 25 days uptime. - A stalling issue with TLS connections. - The search retry timeouts weren't accepted. - The order of items in the search history was wrong. - The quick-connect limit wasn't respected causing too frequent connection attempts during startup. - Removed incorrect use of SF_NODISKIO flag for sendfile() on FreeBSD. - Fixed crash that could be triggered by changing the listening port temporarily to zero. - iconv() was not used correctly which could cause wrong conversions for longer strings. - Generated filenames weren't properly restricted in length which could cause crashes. - There was a compile issue on NetBSD caused by namespace pollution. - Added workaround for the issue that on Solaris only the file descriptors 0..255 can be used for stdio. Improvements: - Finished downloads are now seeded for the whole session or until they are manually purged, if partial file-sharing is enabled. - Server-side support for Tigertree hashes and THEX thanks to patches provided by Martijn van Oosterhout. - Improved spam filters. @ text @d3 1 a3 1 --- src/ui/gtk/settings.c.orig 2007-07-07 06:21:48.000000000 +0200 d5 1 a5 1 @@@@ -104,7 +104,7 @@@@ typedef struct prop_map { a13 9 @@@@ -173,7 +173,7 @@@@ static gchar *prop_to_string(property_t gm_snprintf(s, sizeof(s), "%u", val); break; } - case PROP_TYPE_STRING: { + case gg_PROP_TYPE_STRING: { gchar *buf = stub->string.get(prop, NULL, 0); gm_snprintf(s, sizeof(s), "%s", buf); g_free(buf); @ 1.1 log @Prepend two tokens with "gg_" to avoid conflicts with our system. A little klugey but I doubt that we will be changing our proplib.h anytime soon. @ text @d3 1 a3 1 --- src/ui/gtk/settings.c.orig 2007-06-14 12:07:07.000000000 -0400 d5 1 a5 1 @@@@ -105,7 +105,7 @@@@ typedef struct prop_map { d14 1 a14 1 @@@@ -174,7 +174,7 @@@@ static gchar *prop_to_string(property_t @