Changeset 6187
- Timestamp:
- Jun 13, 2008, 9:39:54 PM (15 years ago)
- Location:
- branches/1.2x
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2x/NEWS
r6186 r6187 1 1 NEWS file for Transmission <http://www.transmissionbt.com/> 2 2 3 1.22 (2008/06/ xx)3 1.22 (2008/06/13) 4 4 http://trac.transmissionbt.com/query?group=component&milestone=1.22&order=severity 5 5 - All Platforms 6 6 + Fix two separate BitTorrent unchoke bugs that could affect performance. 7 + Allow torrent creation with no tracker address (required by some trackers)8 7 + Transmission now builds correctly on Sun Studio 9 + Minor fixes to the man pages8 + Minor man page fixes 10 9 - GTK+ 11 10 + Fix crash when quitting while the stats window is still up -
branches/1.2x/configure.ac
r5894 r6187 1 AC_INIT([transmission],[1.2 1],[http://trac.transmissionbt.com/newticket])2 PEERID_PREFIX="-TR12 10-"3 USERAGENT_PREFIX="1.2 1"1 AC_INIT([transmission],[1.22],[http://trac.transmissionbt.com/newticket]) 2 PEERID_PREFIX="-TR1220-" 3 USERAGENT_PREFIX="1.22" 4 4 AC_SUBST(PEERID_PREFIX,[$PEERID_PREFIX]) 5 5 AC_SUBST(USERAGENT_PREFIX,[$USERAGENT_PREFIX]) -
branches/1.2x/libtransmission/makemeta.c
r6183 r6187 345 345 int n = 5; 346 346 tr_benc top; 347 const char * ann = builder->announce;348 347 349 348 if ( builder->comment && *builder->comment ) ++n; 350 349 tr_bencInitDict( &top, n ); 351 350 352 tr_bencDictAddStr( &top, "announce", ann ); 353 354 /* if a URL was entered but it's invalid, don't allow it. #814, #971 */ 355 if( ann && *ann && !tr_httpIsValidURL( ann ) ) 351 tr_bencDictAddStr( &top, "announce", builder->announce ); 352 353 if( tr_httpParseURL( builder->announce, -1, NULL, NULL, NULL ) ) 356 354 builder->result = TR_MAKEMETA_URL; 357 355 -
branches/1.2x/macosx/version.sh
r5894 r6187 8 8 # "0" for stable, supported releases 9 9 # these should be the only two lines you need to change 10 PEERID_PREFIX="-TR12 10-"11 USERAGENT_PREFIX="1.2 1"10 PEERID_PREFIX="-TR1220-" 11 USERAGENT_PREFIX="1.22" 12 12 13 13
Note: See TracChangeset
for help on using the changeset viewer.