(trunk) update to 1.21

This commit is contained in:
Mitchell Livingston 2008-05-21 21:15:15 +00:00
parent 4398943230
commit 0c94c7b623
6 changed files with 30 additions and 27 deletions

15
NEWS
View File

@ -1,20 +1,27 @@
NEWS file for Transmission <http://www.transmissionbt.com/>
1.30 (2008/mm/dd)
http://trac.transmissionbt.com/query?group=component&milestone=1.30
http://trac.transmissionbt.com/query?group=component&milestone=1.30&order=severity
- Mac
+ Quick Look integration in the main window and inspector's file tab
+ Transfers can be dragged to different groups
+ Status strings are toggled from the action button (they are no longer clickable)
1.21 (2008/mm/dd)
http://trac.transmissionbt.com/query?group=component&milestone=1.21
1.21 (2008/05/21)
http://trac.transmissionbt.com/query?group=component&milestone=1.21&order=severity
- All Platforms
+ Fix rare crash-on-startup bug
+ Handle corrupt announce URLs in torrent files more gracefully
+ Fix minor memory leak when closing torrents
- Mac
+ Fix visual glitch with the pieces bar
+ Italian localization included
- GTK+
+ Updated Catalan, Danish, German, Spanish, Finnish, Hebrew, Italian, Dutch,
Polish, Romanian, Thai, Turkish, and Traditional Chinese translations
1.20 (2008/05/09)
http://trac.transmissionbt.com/query?group=component&milestone=1.20
http://trac.transmissionbt.com/query?group=component&milestone=1.20&order=severity
- All Platforms
+ Support https tracker connections
+ IP blocking using the Bluetack Level1 blocklist

View File

@ -985,7 +985,7 @@
4DDBB70A09E16B3200284745 /* GUI */,
4DDBB71509E16B3F00284745 /* Libraries */,
BE75C3570C72A0D600DBEFE0 /* libevent */,
A2AAB6C00DE0D57F00E04DDA /* shttpd */,
A2AAB6C00DE0D57F00E04DDA /* libshttpd */,
BE1183410CE15DF00002D0F3 /* libminiupnp */,
3C7A11880D0B2E6700B5701F /* libnatpmp */,
19C28FACFE9D520D11CA2CBB /* Products */,
@ -1261,7 +1261,7 @@
name = "File Outline View";
sourceTree = "<group>";
};
A2AAB6C00DE0D57F00E04DDA /* shttpd */ = {
A2AAB6C00DE0D57F00E04DDA /* libshttpd */ = {
isa = PBXGroup;
children = (
A2AAB6C10DE0D5A400E04DDA /* auth.c */,
@ -1284,7 +1284,7 @@
A2AAB6D60DE0D5A400E04DDA /* shttpd.h */,
A2AAB6DA0DE0D5A400E04DDA /* string.c */,
);
name = shttpd;
name = libshttpd;
sourceTree = "<group>";
};
BE1183410CE15DF00002D0F3 /* libminiupnp */ = {

View File

@ -6,34 +6,31 @@
<description>Most recent version available.</description>
<language>en</language>
<pubDate>Fri, 9 May 2008 14:50:00 -0400</pubDate>
<lastBuildDate>Fri, 9 May 2008 14:50:00 -0400</lastBuildDate>
<lastBuildDate>Wed, 21 May 2008 17:01:00 -0400</lastBuildDate>
<item>
<title>Transmission 1.20 Released</title>
<title>Transmission 1.21 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>Support https tracker connections</li>
<li>IP blocking using the Bluetack Level1 blocklist</li>
<li>Better support of multitracker torrents</li>
<li>Faster UPnP port mapping on startup</li>
<li>Ability to reset global statistics</li>
<li>Various bugfixes</li>
<li>Fix rare crash-on-startup bug</li>
<li>Handle corrupt announce URLs in torrent files more gracefully</li>
<li>Fix minor memory leak when closing torrents</li>
</ul>
<h4>Mac-specific Changes:</h4>
<ul>
<li>Display of decimal numbers matches system international settings</li>
<li>Updated Dock badge images</li>
<li>Fix visual glitch with the pieces bar</li>
<li>Italian localization included</li>
</ul>
<p>For a full list of changes, <a href="http://trac.transmissionbt.com/query?group=component&milestone=1.20">click here</a>.</p>
<p>For a full list of changes, <a href="http://trac.transmissionbt.com/query?group=component&milestone=1.21&order=severity">click here</a>.</p>
Transmission 0.72 and earlier: Complete your downloads before upgrading or you will lose data!]]></description>
<pubDate>Fri, 9 May 2008 14:50:00 -0400</pubDate>
<enclosure sparkle:version="5786" sparkle:shortVersionString="1.20" url="http://mirrors.m0k.org/transmission/files/Transmission-1.20.dmg" length="2522401" type="application/octet-stream"/>
<pubDate>Wed, 21 May 2008 17:01:00 -0400</pubDate>
<enclosure sparkle:version="5890" sparkle:shortVersionString="1.21" url="http://mirrors.m0k.org/transmission/files/Transmission-1.21.dmg" length="2983745" type="application/octet-stream"/>
</item>
</channel>

View File

@ -1,6 +1,6 @@
AC_INIT([transmission],[1.20Z],[http://trac.transmissionbt.com/newticket])
PEERID_PREFIX="-TR120Z-"
USERAGENT_PREFIX="1.20+"
AC_INIT([transmission],[1.21Z],[http://trac.transmissionbt.com/newticket])
PEERID_PREFIX="-TR121Z-"
USERAGENT_PREFIX="1.21+"
AC_SUBST(PEERID_PREFIX,[$PEERID_PREFIX])
AC_SUBST(USERAGENT_PREFIX,[$USERAGENT_PREFIX])

View File

@ -4083,9 +4083,8 @@ static void sleepCallback(void * controller, io_service_t y, natural_t messageTy
NSString * fullPath = [url path];
NSRange visibleRows = [fTableView rowsInRect: [fTableView bounds]];
//do in reverse to find torrent before group
int row;
for (row = NSMaxRange(visibleRows) - 1; row >= (int)visibleRows.location; row--)
for (row = 0; row < NSMaxRange(visibleRows); row++)
{
id item = [fTableView itemAtRow: row];
if ([item isKindOfClass: [Torrent class]] && [[(Torrent *)item dataLocation] isEqualToString: fullPath])

View File

@ -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="-TR120Z-"
USERAGENT_PREFIX="1.20+"
PEERID_PREFIX="-TR121Z-"
USERAGENT_PREFIX="1.21+"
SVN_REVISION=`find ./ -name "*\.[chmp]" -o -name "*\.cpp" -o -name "*\.po" -o -name "*\.sh" | \