Changeset 6454
- Timestamp:
- Aug 9, 2008, 2:26:36 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r6449 r6454 1 1 NEWS file for Transmission <http://www.transmissionbt.com/> 2 2 3 1.3 1 (2008/MM/DD)3 1.32 (2008/08/DD) 4 4 http://trac.transmissionbt.com/query?group=component&milestone=1.32 5 - All Platforms 6 + Fix a bug introduced in 1.30 that caused problems establishing tracker communication 7 + Creating torrent files for files >= 2 GB will result in 2 MB pieces 5 8 - Mac 6 9 + Fix bug where the proxy type was changed from SOCKS5 to SOCKS4 on launch -
trunk/appcast.xml
r6437 r6454 7 7 <language>en</language> 8 8 <pubDate>Tues, 5 Aug 2008 20:43:00 -0400</pubDate> 9 <lastBuildDate> Wed, 6 Aug 2008 17:55:00 -0400</lastBuildDate>9 <lastBuildDate>Fri, 8 Aug 2008 21:27:00 -0400</lastBuildDate> 10 10 11 11 <item> 12 <title>Transmission 1.3 1Released</title>12 <title>Transmission 1.32 Released</title> 13 13 <description><![CDATA[ 14 14 <h4>Transmission now requires Mac OS X 10.4.11 with Security Update 2008-002. Mac OS X 10.5 or greater is recommended.</h4> … … 16 16 <h4>Core Changes:</h4> 17 17 <ul> 18 <li><b>1.31:</b> Fix a crash caused by certain torrent files</li> 19 <li>The "Clutch" web interface is now bundled with Transmission (as a beta)</li> 20 <li>Ability to add and remove tracker addresses</li> 21 <li>Added support for HTTP/FTP Seeding (GetRight style)</li> 22 <li>Added proxy support for communicating with trackers</li> 23 <li>Allow torrent creation with no tracker address (required by some trackers)</li> 24 <li>New JSON-RPC protocol for clients to interact with the backend 25 - Daemon</li> 18 <li>Fix a bug introduced in 1.30 that caused problems establishing tracker communication</li> 19 <li>Creating torrent files for files >= 2 GB will result in 2 MB pieces</li> 26 20 </ul> 27 21 <h4>Mac-specific Changes:</h4> 28 22 <ul> 29 <li>Quick Look integration in the main window and inspector's file tab</li> 30 <li>Transfers can be dragged to different groups</li> 31 <li>Option to only show the add window when manually adding transfers</li> 32 <li>Status strings are toggled from the action button (they are no longer clickable)</li> 33 <li>Colors in pieces bar and pieces box more accurately reflect their corresponding values</li> 34 <li>The port checker now uses our own portcheck.transmissionbt.com</li> 35 <li>Turkish localization</li> 23 <li>Fix bug where the proxy type was changed from SOCKS5 to SOCKS4 on launch</li> 36 24 </ul> 37 25 … … 40 28 41 29 Transmission 0.72 and earlier: Complete your downloads before upgrading or you will lose data!]]></description> 42 <pubDate> Wed, 6 Aug 2008 17:55:00 -0400</pubDate>43 <enclosure sparkle:version="6435" sparkle:shortVersionString="1.3 1" sparkle:minimumSystemVersion="10.4.11" url="http://mirrors.m0k.org/transmission/files/Transmission-1.31.dmg" length="3666906" type="application/octet-stream"/>30 <pubDate>Fri, 8 Aug 2008 21:27:00 -0400</pubDate> 31 <enclosure sparkle:version="6435" sparkle:shortVersionString="1.32" sparkle:minimumSystemVersion="10.4.11" url="http://mirrors.m0k.org/transmission/files/Transmission-1.32.dmg" length="3666906" type="application/octet-stream"/> 44 32 </item> 45 33 -
trunk/configure.ac
r6449 r6454 1 AC_INIT([transmission],[1.3 1+],[http://trac.transmissionbt.com/newticket])2 PEERID_PREFIX="-TR13 1Z-"3 USERAGENT_PREFIX="1.3 1+"1 AC_INIT([transmission],[1.32],[http://trac.transmissionbt.com/newticket]) 2 PEERID_PREFIX="-TR1320-" 3 USERAGENT_PREFIX="1.32" 4 4 AC_SUBST(PEERID_PREFIX,[$PEERID_PREFIX]) 5 5 AC_SUBST(USERAGENT_PREFIX,[$USERAGENT_PREFIX]) -
trunk/macosx/version.sh
r6449 r6454 8 8 # "0" for stable, supported releases 9 9 # these should be the only two lines you need to change 10 PEERID_PREFIX="-TR13 1Z-"11 USERAGENT_PREFIX="1.3 1+"10 PEERID_PREFIX="-TR1320-" 11 USERAGENT_PREFIX="1.32" 12 12 13 13
Note: See TracChangeset
for help on using the changeset viewer.