Changeset 6187


Ignore:
Timestamp:
Jun 13, 2008, 9:39:54 PM (15 years ago)
Author:
charles
Message:

(1.2x) bump the makemeta change back to 1.30. increment version number to 1.22.

Location:
branches/1.2x
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2x/NEWS

    r6186 r6187  
    11NEWS file for Transmission <http://www.transmissionbt.com/>
    22
    3 1.22 (2008/06/xx)
     31.22 (2008/06/13)
    44http://trac.transmissionbt.com/query?group=component&milestone=1.22&order=severity
    55- All Platforms
    66  + Fix two separate BitTorrent unchoke bugs that could affect performance.
    7   + Allow torrent creation with no tracker address (required by some trackers)
    87  + Transmission now builds correctly on Sun Studio
    9   + Minor fixes to the man pages
     8  + Minor man page fixes
    109- GTK+
    1110  + Fix crash when quitting while the stats window is still up
  • branches/1.2x/configure.ac

    r5894 r6187  
    1 AC_INIT([transmission],[1.21],[http://trac.transmissionbt.com/newticket])
    2 PEERID_PREFIX="-TR1210-"
    3 USERAGENT_PREFIX="1.21"
     1AC_INIT([transmission],[1.22],[http://trac.transmissionbt.com/newticket])
     2PEERID_PREFIX="-TR1220-"
     3USERAGENT_PREFIX="1.22"
    44AC_SUBST(PEERID_PREFIX,[$PEERID_PREFIX])
    55AC_SUBST(USERAGENT_PREFIX,[$USERAGENT_PREFIX])
  • branches/1.2x/libtransmission/makemeta.c

    r6183 r6187  
    345345    int n = 5;
    346346    tr_benc top;
    347     const char * ann = builder->announce;
    348347
    349348    if ( builder->comment && *builder->comment ) ++n;
    350349    tr_bencInitDict( &top, n );
    351350
    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 ) )
    356354        builder->result = TR_MAKEMETA_URL;
    357355   
  • branches/1.2x/macosx/version.sh

    r5894 r6187  
    88#         "0" for stable, supported releases
    99# these should be the only two lines you need to change
    10 PEERID_PREFIX="-TR1210-"
    11 USERAGENT_PREFIX="1.21"
     10PEERID_PREFIX="-TR1220-"
     11USERAGENT_PREFIX="1.22"
    1212
    1313
Note: See TracChangeset for help on using the changeset viewer.