mirror of
https://github.com/transmission/transmission
synced 2024-12-25 01:03:01 +00:00
(1) don't build the wx client unless the user tells configure.sh to. (2) rank NEWS items by priority
This commit is contained in:
parent
00321c4eed
commit
50d488ebe2
2 changed files with 7 additions and 5 deletions
9
NEWS
9
NEWS
|
@ -1,12 +1,12 @@
|
|||
NEWS file for Transmission <http://transmission.m0k.org/>
|
||||
|
||||
0.90 (2007/xx/yy)
|
||||
- Significant rewrite of the libtransmission back-end
|
||||
- Encryption support, with option to ignore unencrypted peers
|
||||
- Improved compliance with BitTorrent spec
|
||||
- Multiscrape support
|
||||
- Ban peers that send too much bad data
|
||||
- Only report downloaded, verified good pieces in tracker `download' field
|
||||
- Improved compliance with BitTorrent spec
|
||||
- Multiscrape support
|
||||
- Significant rewrite of the libtransmission back-end
|
||||
- OS X:
|
||||
+ Per-torrent action menu
|
||||
+ Redesigned message log
|
||||
|
@ -15,7 +15,8 @@ NEWS file for Transmission <http://transmission.m0k.org/>
|
|||
+ Sort and filter by tracker
|
||||
+ Various smaller interface additions and improvements
|
||||
- GTK:
|
||||
+ Various smaller interface improvements
|
||||
+ Various interface improvements
|
||||
+ Better compliance with the Gnome interface guidelines
|
||||
|
||||
0.82 (2007/09/09)
|
||||
- Fixed bug that could limit transfer speeds
|
||||
|
|
|
@ -87,7 +87,8 @@ AM_OPTIONS_WXCONFIG
|
|||
AM_PATH_WXCONFIG($WX_MINIMUM,[have_wx=yes],[have_wx=no])
|
||||
AC_ARG_WITH(wx, AC_HELP_STRING([--with-wx], [Build wxWidgets client]),
|
||||
[want_wx=$withval],
|
||||
[want_wx=$have_wx])
|
||||
[want_wx=no])
|
||||
dnl [want_wx=$have_wx])
|
||||
use_wx=no
|
||||
if test "x$want_wx" = "xyes" ; then
|
||||
if test "x$have_wx" = "xyes"; then
|
||||
|
|
Loading…
Reference in a new issue