merge 0.95 commit to trunk

This commit is contained in:
Mitchell Livingston 2007-12-05 03:48:25 +00:00
parent 481a210e82
commit 6776413a19
5 changed files with 22 additions and 19 deletions

3
NEWS
View File

@ -5,6 +5,7 @@ NEWS file for Transmission <http://transmission.m0k.org/>
+ UPnP now performed by MiniUPnP + UPnP now performed by MiniUPnP
+ Option to prefer not using encryption + Option to prefer not using encryption
+ Restore `scrape' feature in the command-line interface client + Restore `scrape' feature in the command-line interface client
+ Updated icon
- OS X: - OS X:
+ Statistics window + Statistics window
+ Pieces Bar (return of Advanced Bar) + Pieces Bar (return of Advanced Bar)
@ -16,7 +17,7 @@ NEWS file for Transmission <http://transmission.m0k.org/>
- GTK+: - GTK+:
+ Statistics window + Statistics window
0.95 (2007/12/xx) 0.95 (2007/12/04)
- All Platforms: - All Platforms:
+ Fix router errors caused by sending too many tracker requests at once + Fix router errors caused by sending too many tracker requests at once
+ Fix bug that let speed-limited torrents upload too quickly + Fix bug that let speed-limited torrents upload too quickly

View File

@ -6,26 +6,28 @@
<description>Most recent version available.</description> <description>Most recent version available.</description>
<language>en</language> <language>en</language>
<pubDate>Tue, 23 Oct 2007 23:20:00 -0400</pubDate> <pubDate>Tue, 23 Oct 2007 23:20:00 -0400</pubDate>
<lastBuildDate>Sun, 25 Nov 2007 19:05:00 -0400</lastBuildDate> <lastBuildDate>Tue, 4 Dec 2007 22:45:00 -0400</lastBuildDate>
<item> <item>
<title>Transmission 0.94 Released</title> <title>Transmission 0.95 Released</title>
<description><![CDATA[ <description><![CDATA[
<h4>Transmission Changes:</h4> <h4>Core Changes:</h4>
<ul> <ul>
<li>Faster average download speeds</li> <li>Fix router errors caused by sending too many tracker requests at once</li>
<li>Automatically ban peers that send us too many corrupt pieces</li> <li>Fix bug that let speed-limited torrents upload too quickly</li>
<li>Fix a crash that occurred if a peer sent us an incomplete message</li> <li>Faster average upload speedse</li>
<li>Fix portmapping crash</li> <li>Faster connection to peers after starting a torrent</li>
<li>Fix bug that left files open after their torrents were stopped</li> <li>Fix memory corruption error</li>
<li>Fix 0.93 file permissions bug</li> <li>Disable SWIFT for ratio-based trackers</li>
<li>Fix tracker redirect error</li> </ul>
<li>Fix LTEP PEX bug</li> <h4>Mac Changes:</h4>
<ul>
<li>Leopard: Fix for NAT-PMP port mapping</li>
</ul> </ul>
<h4>TRANSMISSION 0.72 AND EARLIER: COMPLETE YOUR DOWNLOADS BEFORE UPGRADING OR YOU WILL LOSE DATA!</h4>]]></description> <h4>TRANSMISSION 0.72 AND EARLIER: COMPLETE YOUR DOWNLOADS BEFORE UPGRADING OR YOU WILL LOSE DATA!</h4>]]></description>
<pubDate>Sun, 25 Nov 2007 19:05:00 -0400</pubDate> <pubDate>Tue, 4 Dec 2007 22:45:00 -0400</pubDate>
<enclosure sparkle:version="3959" sparkle:shortVersionString="0.94" url="http://mirrors.m0k.org/transmission/files/Transmission-0.94.dmg" length="2405004" type="application/octet-stream"/> <enclosure sparkle:version="4067" sparkle:shortVersionString="0.95" url="http://mirrors.m0k.org/transmission/files/Transmission-0.95.dmg" length="2406867" type="application/octet-stream"/>
</item> </item>
</channel> </channel>

View File

@ -1,6 +1,6 @@
AC_INIT([transmission],[0.94Z],[http://transmission.m0k.org/trac/newticket]) AC_INIT([transmission],[0.95Z],[http://transmission.m0k.org/trac/newticket])
PEERID_PREFIX="-TR094Z-" PEERID_PREFIX="-TR095Z-"
USERAGENT_PREFIX="0.94+" USERAGENT_PREFIX="0.95+"
AC_SUBST(PEERID_PREFIX,[$PEERID_PREFIX]) AC_SUBST(PEERID_PREFIX,[$PEERID_PREFIX])
AC_SUBST(USERAGENT_PREFIX,[$USERAGENT_PREFIX]) AC_SUBST(USERAGENT_PREFIX,[$USERAGENT_PREFIX])

View File

@ -7,8 +7,8 @@
# "Z" for unsupported trunk builds, # "Z" for unsupported trunk builds,
# "0" for stable, supported releases # "0" for stable, supported releases
# these should be the only two lines you need to change # these should be the only two lines you need to change
PEERID_PREFIX="-TR094Z-" PEERID_PREFIX="-TR095Z-"
USERAGENT_PREFIX="0.94+" USERAGENT_PREFIX="0.95+"
SVN_REVISION=`find ./ -name "*\.[chmp]" -o -name "*\.cpp" -o -name "*\.po" -o -name "*\.sh" | \ SVN_REVISION=`find ./ -name "*\.[chmp]" -o -name "*\.cpp" -o -name "*\.po" -o -name "*\.sh" | \