get ready for 1.31
This commit is contained in:
parent
c6026a3b66
commit
9ded5a11e0
8
NEWS
8
NEWS
|
@ -1,5 +1,10 @@
|
|||
NEWS file for Transmission <http://www.transmissionbt.com/>
|
||||
|
||||
1.31 (2008/08/06)
|
||||
http://trac.transmissionbt.com/query?group=component&milestone=1.31
|
||||
- All Platforms
|
||||
+ Fix a crash caused by certain torrent files
|
||||
|
||||
1.30 (2008/08/05)
|
||||
http://trac.transmissionbt.com/query?group=component&milestone=1.30
|
||||
- All Platforms
|
||||
|
@ -23,8 +28,7 @@ http://trac.transmissionbt.com/query?group=component&milestone=1.30
|
|||
+ Turkish localization
|
||||
- GTK+
|
||||
+ Add options to inhibit hibernation and to toggle the tray icon
|
||||
+ Lots of small bug fixes and usability improvements
|
||||
+ Dozens of updated translations
|
||||
+ Various bug fixes and usability improvements
|
||||
|
||||
1.22 (2008/06/13)
|
||||
http://trac.transmissionbt.com/query?group=component&milestone=1.22
|
||||
|
|
|
@ -6,15 +6,16 @@
|
|||
<description>Most recent version available.</description>
|
||||
<language>en</language>
|
||||
<pubDate>Tues, 5 Aug 2008 20:43:00 -0400</pubDate>
|
||||
<lastBuildDate>Tues, 5 Aug 2008 20:43:00 -0400</lastBuildDate>
|
||||
<lastBuildDate>Wed, 6 Aug 2008 17:55:00 -0400</lastBuildDate>
|
||||
|
||||
<item>
|
||||
<title>Transmission 1.30 Released</title>
|
||||
<title>Transmission 1.31 Released</title>
|
||||
<description><![CDATA[
|
||||
<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>
|
||||
|
||||
<h4>Core Changes:</h4>
|
||||
<ul>
|
||||
<li><b>1.31:</b> Fix a crash caused by certain torrent files</li>
|
||||
<li>The "Clutch" web interface is now bundled with Transmission (as a beta)</li>
|
||||
<li>Ability to add and remove tracker addresses</li>
|
||||
<li>Added support for HTTP/FTP Seeding (GetRight style)</li>
|
||||
|
@ -38,8 +39,8 @@
|
|||
<p>For a full list of changes, <a href="http://trac.transmissionbt.com/query?group=component&milestone=1.30&order=severity">click here</a>.</p>
|
||||
|
||||
Transmission 0.72 and earlier: Complete your downloads before upgrading or you will lose data!]]></description>
|
||||
<pubDate>Tues, 5 Aug 2008 20:43:00 -0400</pubDate>
|
||||
<enclosure sparkle:version="6430" sparkle:shortVersionString="1.30" sparkle:minimumSystemVersion="10.4.11" url="http://mirrors.m0k.org/transmission/files/Transmission-1.30.dmg" length="3657897" type="application/octet-stream"/>
|
||||
<pubDate>Wed, 6 Aug 2008 17:55:00 -0400</pubDate>
|
||||
<enclosure sparkle:version="6430" sparkle:shortVersionString="1.31" sparkle:minimumSystemVersion="10.4.11" url="http://mirrors.m0k.org/transmission/files/Transmission-1.31.dmg" length="3657897" type="application/octet-stream"/>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AC_INIT([transmission],[1.30],[http://trac.transmissionbt.com/newticket])
|
||||
PEERID_PREFIX="-TR1300-"
|
||||
USERAGENT_PREFIX="1.30"
|
||||
AC_INIT([transmission],[1.31],[http://trac.transmissionbt.com/newticket])
|
||||
PEERID_PREFIX="-TR1310-"
|
||||
USERAGENT_PREFIX="1.31"
|
||||
AC_SUBST(PEERID_PREFIX,[$PEERID_PREFIX])
|
||||
AC_SUBST(USERAGENT_PREFIX,[$USERAGENT_PREFIX])
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
# "Z" for unsupported trunk builds,
|
||||
# "0" for stable, supported releases
|
||||
# these should be the only two lines you need to change
|
||||
PEERID_PREFIX="-TR1300-"
|
||||
USERAGENT_PREFIX="1.30"
|
||||
PEERID_PREFIX="-TR1310-"
|
||||
USERAGENT_PREFIX="1.31"
|
||||
|
||||
|
||||
SVN_REVISION=`find ./ -name "*\.[chmp]" -o -name "*\.cpp" -o -name "*\.po" -o -name "*\.sh" | \
|
||||
|
|
Loading…
Reference in New Issue