(trunk) very minor tweaks

This commit is contained in:
Charles Kerr 2009-05-03 19:12:22 +00:00
parent ccd02666ee
commit b2c65797e0
2 changed files with 3 additions and 3 deletions

4
NEWS
View File

@ -18,13 +18,13 @@ NEWS file for Transmission <http://www.transmissionbt.com/>
+ File filter field in the inspector
+ Option to include beta releases when auto-updating (using modified Sparkle 1.5)
+ Portuguese localization
- Qt
+ New beta Qt client!
- GTK+
+ Speed Limit: Second set of bandwidth limits that can be toggled or scheduled
+ Properties dialog now lets you edit/view multiple torrents at once
+ Allow sorting of the torrent list by size and by ETA
+ Show the file icon in the list
- Qt
+ New beta Qt client
- Daemon
+ Watch folder for auto-adding torrents
+ Many new features in the RPC/JSON interface

View File

@ -263,7 +263,7 @@ Prefs :: initDefaults( tr_benc * d )
tr_bencDictAddInt( d, keyStr(START), true );
tr_bencDictAddInt( d, keyStr(TRASH_ORIGINAL), false );
tr_bencDictAddStr( d, keyStr(SESSION_REMOTE_HOST), "localhost" );
tr_bencDictAddInt( d, keyStr(SESSION_REMOTE_PORT), 9091 );
tr_bencDictAddInt( d, keyStr(SESSION_REMOTE_PORT), atoi(TR_DEFAULT_RPC_PORT_STR) );
tr_bencDictAddBool( d, keyStr(SESSION_IS_REMOTE), false );
tr_bencDictAddBool( d, keyStr(SESSION_REMOTE_AUTH), false );
}