]> granicus.if.org Git - transmission/log
transmission
13 years ago#4683 Info window swapped view heights not constrained to screen size
Mitchell Livingston [Sun, 25 Dec 2011 22:05:18 +0000 (22:05 +0000)]
#4683 Info window swapped view heights not constrained to screen size

13 years ago(trunk libT) #4684 "tr_cpSizeWhenDone() is slow for huge torrents that we're only...
Jordan Lee [Thu, 22 Dec 2011 19:35:13 +0000 (19:35 +0000)]
(trunk libT) #4684 "tr_cpSizeWhenDone() is slow for huge torrents that we're only partially downloading" -- fixed.

There are actually two different implementations of the byte-counting in that function: a slower implementation was added prior to 2.40 in r12918 to double-check the standard implementation. This checking was added to help smoke out a bug that was fixed in r12920, but I forgot to remove that slower implementation.

13 years ago(trunk libT) #4666 "webseed downloading never gets downloaded" -- fixed.
Jordan Lee [Wed, 14 Dec 2011 05:58:23 +0000 (05:58 +0000)]
(trunk libT) #4666 "webseed downloading never gets downloaded" -- fixed.

The webseed in question is downloading from an ubuntuone.com url. We ask for piece-sized ranges in a couple of different concurrent connections, and curl hints to the server that it's okay to gzip the response, or deflate it, or leave it raw. It looks like there's a bug in the server or in libcurl (or, somehow, Transmission) that's not compressing or decompressing these responses correctly -- we never get the right number of bytes in the response from libcurl. If we ask for the contents uncompressed, the download progresses towards completion.

As an aside, when testing this I noticed that deluge is a lot faster than Transmission on this torrent. In order for Transmission to reach parity here, webseed.c needs to know when it's appropriate to have more than 4 concurrent tasks and/or be able to request ranges > the torrent's piece size.

13 years ago(trunk libT) fix a minor memory leak in the bencode regression tests.
Jordan Lee [Wed, 14 Dec 2011 05:44:15 +0000 (05:44 +0000)]
(trunk libT) fix a minor memory leak in the bencode regression tests.

Found by llvm's static analyzer. This is a minor issue since the leak is in an automated test rather than in shipping code, but it's still better to fix it.

13 years ago(trunk libT) fix warnings in fileset_get_empty_slot() found by llvm's static-build...
Jordan Lee [Wed, 14 Dec 2011 05:42:15 +0000 (05:42 +0000)]
(trunk libT) fix warnings in fileset_get_empty_slot() found by llvm's static-build analyzer.

static-build found a potential NULL pointer dereference. The circumstances where this could get triggered don't seem very likely, but doesn't hurt to fix the warning.

13 years ago(trunk web) fix warnings in tr_urlIsValidTracker() and tr_urlIsValid() found by llvm...
Jordan Lee [Wed, 14 Dec 2011 05:40:21 +0000 (05:40 +0000)]
(trunk web) fix warnings in tr_urlIsValidTracker() and tr_urlIsValid() found by llvm's scan-build.

scan-build found similar warnings in these two functions relating to allowing NULL pointers to be passed as arguments to functions that don't allow NULL. So now those NULL checks are made explicit before the function calls.

13 years agoeliminate all warnings by switching NSOpenPanel/NSSavePanels to use completion handle...
Mitchell Livingston [Sun, 11 Dec 2011 22:31:01 +0000 (22:31 +0000)]
eliminate all warnings by switching NSOpenPanel/NSSavePanels to use completion handler blocks

13 years ago(trunk libT) #4372 "make notification and system sounds configurable" -- instead...
Jordan Lee [Sat, 10 Dec 2011 19:00:50 +0000 (19:00 +0000)]
(trunk libT) #4372 "make notification and system sounds configurable" -- instead of using notify-send, use GDBus on the org.freedesktop.Notifications API. Patch by fmuellner.

13 years ago#4664 "Use completeBaseName() instead of baseName() in the 'New Torrent' dialog"...
Jordan Lee [Sat, 10 Dec 2011 18:45:21 +0000 (18:45 +0000)]
#4664 "Use completeBaseName() instead of baseName() in the 'New Torrent' dialog" -- patch contributed by cantabile

13 years ago(trunk libT) #4644 "Transmission can't download big files from webseed." -- fix overf...
Jordan Lee [Sat, 10 Dec 2011 18:42:52 +0000 (18:42 +0000)]
(trunk libT) #4644 "Transmission can't download big files from webseed." -- fix overflow error with a patch based on one from and_cesbo. (Modified by Jordan to add random bugs.)

13 years ago(trunk daemon) #4648 "Transmission-Remote With Full URL Specified Broken" -- fixed...
Jordan Lee [Sat, 10 Dec 2011 18:34:36 +0000 (18:34 +0000)]
(trunk daemon) #4648 "Transmission-Remote With Full URL Specified Broken" -- fixed with patch from niol

13 years ago#4654 Make Mist notifications an optional setting configured through Preferences
Mitchell Livingston [Sat, 3 Dec 2011 02:50:21 +0000 (02:50 +0000)]
#4654 Make Mist notifications an optional setting configured through Preferences

13 years agoalphabetize the sorting options. with "queue order" at the top
Mitchell Livingston [Mon, 28 Nov 2011 12:37:14 +0000 (12:37 +0000)]
alphabetize the sorting options. with "queue order" at the top

13 years ago(trunk web) #4637 "sorting by size in the web ui" -- patch added.
Jordan Lee [Mon, 28 Nov 2011 03:35:33 +0000 (03:35 +0000)]
(trunk web) #4637 "sorting by size in the web ui" -- patch added.

13 years agoupdate Growl framework to 1.3.1
Mitchell Livingston [Sun, 27 Nov 2011 14:40:00 +0000 (14:40 +0000)]
update Growl framework to 1.3.1

13 years agowhoops typo
Mitchell Livingston [Tue, 22 Nov 2011 03:30:37 +0000 (03:30 +0000)]
whoops typo

13 years agoupdate jQuery to 1.7.1
Mitchell Livingston [Tue, 22 Nov 2011 03:19:34 +0000 (03:19 +0000)]
update jQuery to 1.7.1

13 years ago#4643 Support µTorrent's long-version-number peer id
Mitchell Livingston [Tue, 22 Nov 2011 03:02:18 +0000 (03:02 +0000)]
#4643 Support µTorrent's long-version-number peer id

13 years ago#3948 avoid a crash when closing magnet link windows
Mitchell Livingston [Sat, 19 Nov 2011 16:14:16 +0000 (16:14 +0000)]
#3948 avoid a crash when closing magnet link windows

13 years ago(trunk web) #4635 "favicon.ico is not transparent" -- fixed.
Jordan Lee [Wed, 16 Nov 2011 13:53:38 +0000 (13:53 +0000)]
(trunk web) #4635 "favicon.ico is not transparent" -- fixed.

13 years ago#3948 Fix crash with command-option-w
Mitchell Livingston [Tue, 15 Nov 2011 00:09:17 +0000 (00:09 +0000)]
#3948 Fix crash with command-option-w

13 years ago(trunk web) tweak the filterbar's display of the torrent count
Jordan Lee [Mon, 14 Nov 2011 05:22:27 +0000 (05:22 +0000)]
(trunk web) tweak the filterbar's display of the torrent count

13 years ago(trunk web) tweak the filterbar's look again, this time to give a better appearance...
Jordan Lee [Mon, 14 Nov 2011 01:50:30 +0000 (01:50 +0000)]
(trunk web) tweak the filterbar's look again, this time to give a better appearance on FF and Chrome

13 years ago(trunk web) followup to r13087 that makes the filterbar grouping a little nicer....
Jordan Lee [Mon, 14 Nov 2011 01:44:11 +0000 (01:44 +0000)]
(trunk web) followup to r13087 that makes the filterbar grouping a little nicer. Also use livings124's suggestion of always showing the up/down speeds even when they are zero

13 years ago(trunk web) the filter mode is preserved between sessions, so on startup initialize...
Jordan Lee [Sun, 13 Nov 2011 23:08:49 +0000 (23:08 +0000)]
(trunk web) the filter mode is preserved between sessions, so on startup initialize the filter mode selector properly.

13 years agotweak the filter entry field's look on FF
Jordan Lee [Sun, 13 Nov 2011 22:13:47 +0000 (22:13 +0000)]
tweak the filter entry field's look on FF

13 years ago(trunk web) fix a startup timing issue by deferring the Transmission object's instant...
Jordan Lee [Sun, 13 Nov 2011 20:13:25 +0000 (20:13 +0000)]
(trunk web) fix a startup timing issue by deferring the Transmission object's instantiation to the end of our $(document).ready() function.

13 years ago(trunk web) experiment with making the filterbar more phone-friendly
Jordan Lee [Sun, 13 Nov 2011 18:04:29 +0000 (18:04 +0000)]
(trunk web) experiment with making the filterbar more phone-friendly

13 years ago(trunk web) fix minor pluralization issues
Jordan Lee [Sun, 13 Nov 2011 16:51:05 +0000 (16:51 +0000)]
(trunk web) fix minor pluralization issues

13 years agodon't use the word 'template' as a variable name, since it's a reserved word in C++
Jordan Lee [Sat, 12 Nov 2011 00:16:04 +0000 (00:16 +0000)]
don't use the word 'template' as a variable name, since it's a reserved word in C++

13 years ago(trunk web) #4606 "make selected torrents in webui more discernible" -- fixed.
Jordan Lee [Fri, 11 Nov 2011 05:58:51 +0000 (05:58 +0000)]
(trunk web) #4606 "make selected torrents in webui more discernible" -- fixed.

13 years ago(trunk web) #4621 "seeding progressbars aren't shown in Web UI" -- fixed.
Jordan Lee [Fri, 11 Nov 2011 04:58:00 +0000 (04:58 +0000)]
(trunk web) #4621 "seeding progressbars aren't shown in Web UI" -- fixed.

13 years ago(trunk web) #4168 "web client in r13075 not working in IE8" -- fixed, sort of.
Jordan Lee [Fri, 11 Nov 2011 04:44:49 +0000 (04:44 +0000)]
(trunk web) #4168 "web client in r13075 not working in IE8" -- fixed, sort of.

IE8 can't handle the W3C method of stacking an image on a linear gradient. Since all supported browsers have other ways besides the W3C method of doing this, we can 'fix' this by removing the W3C method. At some point in the future when browsers all use the W3C method, we can look for a different solution, or drop IE8 support ;)

13 years ago(trunk libT) #4625 "Transmission 2.42 fails to build on Solaris 10: Undefined symbol...
Jordan Lee [Thu, 10 Nov 2011 03:31:43 +0000 (03:31 +0000)]
(trunk libT) #4625 "Transmission 2.42 fails to build on Solaris 10: Undefined symbol 'mkdtemp'" -- fixed.

13 years ago#4622 'misleading error message in configure script' -- fixed.
Jordan Lee [Tue, 8 Nov 2011 20:49:20 +0000 (20:49 +0000)]
#4622 'misleading error message in configure script' -- fixed.

13 years agoremove unused variables
Jordan Lee [Sun, 6 Nov 2011 16:06:48 +0000 (16:06 +0000)]
remove unused variables

13 years agoadd fallback implementation of Date.now for IE8
Jordan Lee [Sun, 6 Nov 2011 14:42:52 +0000 (14:42 +0000)]
add fallback implementation of Date.now for IE8

13 years ago(trunk qt) fix minor bugs in the torrent details dialog's info tab.
Jordan Lee [Sat, 5 Nov 2011 15:45:38 +0000 (15:45 +0000)]
(trunk qt) fix minor bugs in the torrent details dialog's info tab.

13 years ago#4616 update makefile for update jQuery
Mitchell Livingston [Fri, 4 Nov 2011 23:26:09 +0000 (23:26 +0000)]
#4616 update makefile for update jQuery

13 years ago(trunk web) sync the web client's inspector's info tab with the one in the GTK+ and...
Jordan Lee [Fri, 4 Nov 2011 21:05:24 +0000 (21:05 +0000)]
(trunk web) sync the web client's inspector's info tab with the one in the GTK+ and Qt clients. This fixes #4609 and #4608.

13 years agoupdate JQuery to 1.7 and jQuery form to 2.87
Mitchell Livingston [Fri, 4 Nov 2011 02:42:22 +0000 (02:42 +0000)]
update JQuery to 1.7 and jQuery form to 2.87

13 years ago(trunk gtk) remove dead assignment
Jordan Lee [Thu, 3 Nov 2011 04:57:45 +0000 (04:57 +0000)]
(trunk gtk) remove dead assignment

13 years ago#4611 Update Growl framework to 1.3
Mitchell Livingston [Wed, 2 Nov 2011 23:13:02 +0000 (23:13 +0000)]
#4611 Update Growl framework to 1.3

13 years agoadd a log message if setting the quarantine attribute fails
Mitchell Livingston [Wed, 2 Nov 2011 03:19:44 +0000 (03:19 +0000)]
add a log message if setting the quarantine attribute fails

13 years ago#2009 Quarantine files when downloading finishes
Mitchell Livingston [Tue, 1 Nov 2011 23:45:26 +0000 (23:45 +0000)]
#2009 Quarantine files when downloading finishes

13 years agomove the prefs button in the footer bar
Jordan Lee [Tue, 1 Nov 2011 00:33:24 +0000 (00:33 +0000)]
move the prefs button in the footer bar

13 years ago(trunk gtk) #4605 "'--minimized' switch not working any more" -- fixed.
Jordan Lee [Sun, 30 Oct 2011 18:27:45 +0000 (18:27 +0000)]
(trunk gtk) #4605 "'--minimized' switch not working any more" -- fixed.

13 years ago#4587 update the main window when a transfer changes stalled-ness
Mitchell Livingston [Sun, 30 Oct 2011 03:13:20 +0000 (03:13 +0000)]
#4587 update the main window when a transfer changes stalled-ness

13 years agocapitalize "Priority" in "Transfer Priority"
Mitchell Livingston [Sun, 30 Oct 2011 01:37:13 +0000 (01:37 +0000)]
capitalize "Priority" in "Transfer Priority"

13 years ago(trunk web) #4549 "Favicon in trackerlist makes filter popup slow and unresponsive...
Jordan Lee [Sun, 30 Oct 2011 00:08:27 +0000 (00:08 +0000)]
(trunk web) #4549 "Favicon in trackerlist makes filter popup slow and unresponsive in webui" -- fixed.

13 years ago(trunk web) #4601 -- move preferences button to the left-hand side of the footer
Jordan Lee [Sat, 29 Oct 2011 05:26:28 +0000 (05:26 +0000)]
(trunk web) #4601 -- move preferences button to the left-hand side of the footer

13 years ago#4600 'missing .png files in web ui' -- fixed.
Jordan Lee [Fri, 28 Oct 2011 15:26:03 +0000 (15:26 +0000)]
#4600 'missing .png files in web ui' -- fixed.

13 years agooops, missed a file in the previous commit
Jordan Lee [Fri, 28 Oct 2011 03:45:36 +0000 (03:45 +0000)]
oops, missed a file in the previous commit

13 years agomove preferences button to the footer
Jordan Lee [Fri, 28 Oct 2011 02:11:10 +0000 (02:11 +0000)]
move preferences button to the footer

13 years ago(trunk web) continue removing unnecessary diffs between common.scss and mobile.scss
Jordan Lee [Thu, 27 Oct 2011 15:36:30 +0000 (15:36 +0000)]
(trunk web) continue removing unnecessary diffs between common.scss and mobile.scss

13 years ago(trunk web) experiment with a very light white/red for button & torrent selection
Jordan Lee [Thu, 27 Oct 2011 05:18:54 +0000 (05:18 +0000)]
(trunk web) experiment with a very light white/red for button & torrent selection

13 years ago(trunk web) tweak the filter bar and footer bar's gradient again
Jordan Lee [Thu, 27 Oct 2011 03:57:39 +0000 (03:57 +0000)]
(trunk web) tweak the filter bar and footer bar's gradient again

13 years ago(trunk web) tweak the filter bar and footer bar's gradient again
Jordan Lee [Thu, 27 Oct 2011 03:49:10 +0000 (03:49 +0000)]
(trunk web) tweak the filter bar and footer bar's gradient again

13 years ago(trunk web) make the filter bar and footer bar's gradients a little softer.
Jordan Lee [Thu, 27 Oct 2011 03:41:16 +0000 (03:41 +0000)]
(trunk web) make the filter bar and footer bar's gradients a little softer.

13 years ago(trunk web) continue merging the two stylesheets' contents.
Jordan Lee [Thu, 27 Oct 2011 03:00:47 +0000 (03:00 +0000)]
(trunk web) continue merging the two stylesheets' contents.

The endgame for this merge is to extract the common parts into a shared css file. Judging from common.css' filename, that was probably the original intention when Clutch was first written.

13 years ago(trunk web) give the filter bar a gradient background like the bottom bar's. continue...
Jordan Lee [Thu, 27 Oct 2011 02:31:58 +0000 (02:31 +0000)]
(trunk web) give the filter bar a gradient background like the bottom bar's. continue resolving the diffs between common.scss and mobile.scss.

13 years ago(trunk web) try increasing the toolbar height by 10px
Jordan Lee [Thu, 27 Oct 2011 02:03:21 +0000 (02:03 +0000)]
(trunk web) try increasing the toolbar height by 10px

13 years ago(trunk web) use the website's red texture for the toolbar's background
Jordan Lee [Thu, 27 Oct 2011 01:44:49 +0000 (01:44 +0000)]
(trunk web) use the website's red texture for the toolbar's background

13 years agomeh, last commit was too ugly
Jordan Lee [Thu, 27 Oct 2011 00:43:51 +0000 (00:43 +0000)]
meh, last commit was too ugly

13 years ago(trunk web) some (very) experimental changes to the color scheme. I'm not sure what...
Jordan Lee [Wed, 26 Oct 2011 23:28:39 +0000 (23:28 +0000)]
(trunk web) some (very) experimental changes to the color scheme. I'm not sure what the Right Thing is here, but I do know the previous approach was too grey.

13 years ago(trunk web) the preferences dialog is now activated from a toolbar button.
Jordan Lee [Wed, 26 Oct 2011 23:19:38 +0000 (23:19 +0000)]
(trunk web) the preferences dialog is now activated from a toolbar button.

This is in preparation for merging about 80% of the scss code between the default and mobile versions of Clutch. Previously the mobile client had the prefs button in the footer and the default client had it in the popup menu. Now both have it in the toolbar instead.

13 years ago(trunk cli) #4595 "transmission-cli does not stop on SIGINT" -- fixed with patch...
Jordan Lee [Wed, 26 Oct 2011 17:44:28 +0000 (17:44 +0000)]
(trunk cli) #4595 "transmission-cli does not stop on SIGINT" -- fixed with patch from dyogene

13 years ago(trunk) run all our pngs through "pngout.exe" and "optipng -zc1-9 -zm1-9 -zs0-3 ...
Jordan Lee [Wed, 26 Oct 2011 16:11:21 +0000 (16:11 +0000)]
(trunk) run all our pngs through "pngout.exe" and "optipng -zc1-9 -zm1-9 -zs0-3 -f0-5"

13 years ago(trunk web) the inspector tabs' icons have resizing artifacts. fix these by resyncing...
Jordan Lee [Wed, 26 Oct 2011 16:10:40 +0000 (16:10 +0000)]
(trunk web) the inspector tabs' icons have resizing artifacts. fix these by resyncing with the mac client's icons.

13 years ago(trunk web) remove dangling </div> that was introduced in the last commit
Jordan Lee [Wed, 26 Oct 2011 15:53:58 +0000 (15:53 +0000)]
(trunk web) remove dangling </div> that was introduced in the last commit

13 years ago(trunk web) changes to clutch's file priority UI:
Jordan Lee [Wed, 26 Oct 2011 15:50:31 +0000 (15:50 +0000)]
(trunk web) changes to clutch's file priority UI:
1. use form checkboxes for the 'file wanted' toggle
2. remove unused file_wanted_buttons.png
3. narrow the priority buttons a little
4. narrow the priority buttons' gradient range by about 2/3 so that the colors don't look harsh when there is row after row of priority buttons

13 years ago(trunk web) buttons/cancel.png isn't used anymore.
Jordan Lee [Wed, 26 Oct 2011 07:30:40 +0000 (07:30 +0000)]
(trunk web) buttons/cancel.png isn't used anymore.

13 years ago(trunk web) run the new icons through optipng and pngout
Jordan Lee [Wed, 26 Oct 2011 07:20:16 +0000 (07:20 +0000)]
(trunk web) run the new icons through optipng and pngout

13 years ago(trunk web) reuse the old gear icon for the settings popup menu
Jordan Lee [Wed, 26 Oct 2011 07:09:14 +0000 (07:09 +0000)]
(trunk web) reuse the old gear icon for the settings popup menu

13 years ago(trunk web) make the button image/gradient code more modular
Jordan Lee [Wed, 26 Oct 2011 04:46:22 +0000 (04:46 +0000)]
(trunk web) make the button image/gradient code more modular

13 years ago(trunk web) modify the statusbar's speed display a bit.
Jordan Lee [Wed, 26 Oct 2011 04:14:39 +0000 (04:14 +0000)]
(trunk web) modify the statusbar's speed display a bit.

13 years ago(trunk web) more changes to the look & feel of the buttons. This is a work in progress.
Jordan Lee [Tue, 25 Oct 2011 23:36:47 +0000 (23:36 +0000)]
(trunk web) more changes to the look & feel of the buttons. This is a work in progress.
1. sync the toolbar buttons' appearance to match the footer & inspector buttons' new look from r13016
2. make the buttons a little easier to tap as per ticket #3862
3. try new toolbar icons from the 'wireframe mono icons' (CC attribution/noncommerical 3.0) by gentleface.com, found at iconfinder.com.

13 years ago(trunk libT) bandwidth.c: minor phaseOne() improvements suggested by livings
Jordan Lee [Tue, 25 Oct 2011 21:54:51 +0000 (21:54 +0000)]
(trunk libT) bandwidth.c: minor phaseOne() improvements suggested by livings

13 years ago(trunk daemon) #4594 "corrupted status string" -- fixed.
Jordan Lee [Tue, 25 Oct 2011 20:48:39 +0000 (20:48 +0000)]
(trunk daemon) #4594 "corrupted status string" -- fixed.

13 years ago(trunk libT) #4592 "Algorithm bug in bandwidth allocation" -- apply patch from Algori...
Jordan Lee [Tue, 25 Oct 2011 16:56:19 +0000 (16:56 +0000)]
(trunk libT) #4592 "Algorithm bug in bandwidth allocation" -- apply patch from Algorithmus

13 years ago(trunk) #4588 "Manual selection of gtk version at configure time" -- fixed.
Jordan Lee [Tue, 25 Oct 2011 16:37:13 +0000 (16:37 +0000)]
(trunk) #4588 "Manual selection of gtk version at configure time" -- fixed.

13 years ago(trunk cli) #4585 "use full path when download directory is specified" -- fix with...
Jordan Lee [Tue, 25 Oct 2011 16:07:56 +0000 (16:07 +0000)]
(trunk cli) #4585 "use full path when download directory is specified" -- fix with patch by dyogene

13 years agoutils.h's public function tr_realpath() function relies on the private constant TR_MA...
Jordan Lee [Tue, 25 Oct 2011 15:57:10 +0000 (15:57 +0000)]
utils.h's public function tr_realpath() function relies on the private constant TR_MAX_PATH. Make TR_MAX_PATH public.

13 years agoremove an unneeded (and unimplemented) method from TorrentCell.h
Mitchell Livingston [Mon, 24 Oct 2011 02:14:57 +0000 (02:14 +0000)]
remove an unneeded (and unimplemented) method from TorrentCell.h

13 years ago#4591 Don't have the inspector float above other windows
Mitchell Livingston [Mon, 24 Oct 2011 02:02:19 +0000 (02:02 +0000)]
#4591 Don't have the inspector float above other windows

13 years agofix typo in web/style/transmission/images/Makefile.am -- I think this is what's makin...
Jordan Lee [Sun, 23 Oct 2011 19:05:07 +0000 (19:05 +0000)]
fix typo in web/style/transmission/images/Makefile.am -- I think this is what's making hudson-t unhappy

13 years agoadd compact.png to the default stylesheet
Jordan Lee [Sun, 23 Oct 2011 18:43:16 +0000 (18:43 +0000)]
add compact.png to the default stylesheet

13 years agoFix the priority images in the 10.6 torrent action menu
Mitchell Livingston [Sun, 23 Oct 2011 17:51:37 +0000 (17:51 +0000)]
Fix the priority images in the 10.6 torrent action menu

13 years ago#4356 Extend tooltip support to torrent names in the main window
Mitchell Livingston [Sun, 23 Oct 2011 17:45:05 +0000 (17:45 +0000)]
#4356 Extend tooltip support to torrent names in the main window

13 years ago(trunk web) convert the inspector tab & bottom bar's buttons to use the same css...
Jordan Lee [Sun, 23 Oct 2011 17:10:44 +0000 (17:10 +0000)]
(trunk web) convert the inspector tab & bottom bar's buttons to use the same css as the inspector's file priority buttons. This is a work in progress & is being checked in for apple testing

13 years agoexperimented with updated priority images
Mitchell Livingston [Sat, 22 Oct 2011 20:45:20 +0000 (20:45 +0000)]
experimented with updated priority images

13 years agofix torrent-list placement error when the inspector is visible
Jordan Lee [Sat, 22 Oct 2011 06:27:07 +0000 (06:27 +0000)]
fix torrent-list placement error when the inspector is visible

13 years ago#4581 Change the multiple sessions confirmation button from "Quit" to "OK"
Mitchell Livingston [Fri, 21 Oct 2011 11:19:32 +0000 (11:19 +0000)]
#4581 Change the multiple sessions confirmation button from "Quit" to "OK"

13 years ago(trunk web) since the inspector tab icons aren't hardcoded in javascript anymore...
Jordan Lee [Fri, 21 Oct 2011 03:29:18 +0000 (03:29 +0000)]
(trunk web) since the inspector tab icons aren't hardcoded in javascript anymore, we need to make sure & load them in css

13 years agomake the file priority buttons slightly narrower in the mobile css
Jordan Lee [Fri, 21 Oct 2011 03:04:49 +0000 (03:04 +0000)]
make the file priority buttons slightly narrower in the mobile css

13 years ago(trunk web) #3862 "on iPhone web ui, some buttons are too small to tap" -- fix file...
Jordan Lee [Fri, 21 Oct 2011 02:58:19 +0000 (02:58 +0000)]
(trunk web) #3862 "on iPhone web ui, some buttons are too small to tap" -- fix file priority buttons.

13 years agofix 2.40 error changing file priorities in the web client.
Jordan Lee [Fri, 21 Oct 2011 02:41:53 +0000 (02:41 +0000)]
fix 2.40 error changing file priorities in the web client.

13 years ago(trunk) update NEWS
Mitchell Livingston [Thu, 20 Oct 2011 02:08:30 +0000 (02:08 +0000)]
(trunk) update NEWS

13 years ago(trunk) whoops
Mitchell Livingston [Thu, 20 Oct 2011 01:35:09 +0000 (01:35 +0000)]
(trunk) whoops

13 years ago(trunk) bump to 2.42+
Mitchell Livingston [Thu, 20 Oct 2011 01:34:06 +0000 (01:34 +0000)]
(trunk) bump to 2.42+