Commit Graph

12231 Commits

Author SHA1 Message Date
Mitchell Livingston 90b042f789 the PiecesView will use target/action instead of notification center for mouse-down events 2013-03-12 02:56:35 +00:00
Mitchell Livingston 92db464093 update Brazilian Portuguese localization for 2.8 2013-03-12 02:13:42 +00:00
Mitchell Livingston ef1346b144 update Spanish localization for 2.8 2013-03-11 12:16:15 +00:00
Mitchell Livingston 005d5284e5 update German localization for 2.8 2013-03-09 17:06:41 +00:00
Mitchell Livingston 137ba2dee8 update localized strings file 2013-03-09 17:01:26 +00:00
Mitchell Livingston 0323c7531a Simplify betterComponentsSeparatedByCharactersInSet: 2013-03-07 23:55:31 +00:00
Mitchell Livingston 6573789b66 r14044 Use OSAtomicIncrement32(&value) instead of OSAtomicAdd32(1, &value) 2013-03-07 04:27:31 +00:00
Mitchell Livingston 9bbf4b3899 #5319 potential race condition when counting torrents 2013-03-07 04:21:26 +00:00
Mitchell Livingston 0a5024adc9 combine the two rpc delete data methods 2013-03-04 04:18:21 +00:00
Mitchell Livingston b5be6e86b6 stop when we find the torrent 2013-03-04 04:14:11 +00:00
Mitchell Livingston 7f03e04538 a tiny bit more safety by assigning the torrent directly, instead of getting the index 2013-03-04 04:12:54 +00:00
Mitchell Livingston ac7b2ee6a7 cleanup and GCD-ing of the rpc methods 2013-03-04 04:01:38 +00:00
Jordan Lee 03cbce7b2e (qt) #5307 'Error in prefs.cc' -- fixed with patch from rb07. 2013-02-26 04:53:35 +00:00
Mitchell Livingston 6330b49112 fix path bug from r14034 2013-02-19 02:04:42 +00:00
Mitchell Livingston 9ee681355d make the children in a FileListNode a property 2013-02-19 01:29:25 +00:00
Mitchell Livingston 1de3ddfbc9 retain/autorelease the dictionary when seeding completes, instead of creating a new dictionary 2013-02-19 01:17:53 +00:00
Mitchell Livingston 539aeb2edd remove redundant code when creating a torrent's file list 2013-02-19 00:54:55 +00:00
Jordan Lee de6d57af43 (qt) freespace fixes by rb07 from https://trac.transmissionbt.com/ticket/4076#comment:40 2013-02-18 14:45:44 +00:00
Mitchell Livingston bb0b5e139a sync mainline NEWS and version with 2.7x branch 2013-02-18 14:43:24 +00:00
Jordan Lee c32e4cdde1 (libT) #5293 'Wrong error codes used in upnp.c': second patch from rb07 to handle older versions of miniupnpc 2013-02-18 00:36:20 +00:00
Jordan Lee a2ce709d8c (web) #5290 'Use HTML5's FileReader to upload .torrent files': done 2013-02-18 00:12:51 +00:00
Jordan Lee b24a550459 (libT) fix memory leak regression in the nightlies reported by x190 2013-02-17 23:00:11 +00:00
Jordan Lee fcdec9a8bc (libT) don't start the web thread until we have a task to feed to curl 2013-02-15 01:52:47 +00:00
Jordan Lee 58862d0fc4 (libT) remove code to migrate config files from pre-2008 2013-02-15 01:51:49 +00:00
Jordan Lee bb05b943e9 (libT) #5293 'Wrong error codes used in upnp.c': patch by rb07 2013-02-14 23:45:13 +00:00
Jordan Lee 303353e55a (qt) #5278 'Something strange with the color of progress bars' -- patch by rb07 2013-02-14 23:32:37 +00:00
Jordan Lee d1571bda02 (gtk) use replace strcmp() with g_strcmp0() everywhere 2013-02-14 15:17:42 +00:00
Mitchell Livingston 313fe8ae94 perform the rename callback in the main thread 2013-02-11 01:47:51 +00:00
Mitchell Livingston 196bbafadb #5286 Files renamed in Mac Inspector are not re-sorted 2013-02-11 01:39:44 +00:00
Mitchell Livingston 88f49eb55d update QuickLook copyright string as well. 2013-02-11 00:45:27 +00:00
Mitchell Livingston 3c490b1666 (Mac trunk) bump copyright year to 2013 2013-02-11 00:43:47 +00:00
Jordan Lee 0be5e8deef (libT) #5291 'increase scrape buffer sizes to accomodate for multiscrape': done with patch by reardon 2013-02-10 23:21:58 +00:00
Jordan Lee 76a3b116f0 use g_strcmp0() instead of strcmp() to guard against corrupt settings in the config file 2013-02-10 23:06:05 +00:00
Jordan Lee b91014ba1e (qt) #5280 'show options dialog in more cases': fix verify button issue reported by lucke 2013-02-10 22:44:25 +00:00
Jordan Lee 5040778a92 (libT) restore the RPC download-dir-free-space argument to avoid unscheduled breakage. Document the timetable for its removal in rpc-spec.txt. 2013-02-10 19:36:13 +00:00
Jordan Lee a7b3ec4d92 (qt) fix nightly regression by zeroing out the myFileDialogOptionsCheck pointer in mainwin's constructor 2013-02-10 18:49:15 +00:00
Jordan Lee 8ed90f00cf (web) remove vim tmpfiles 2013-02-10 18:46:56 +00:00
Jordan Lee a7c6e78985 In Web Client, use jQuery.ajax() to upload files
If we use FormData and jQuery.ajax() calls to upload a torrent,
we can stop bundling the jquery.form.js module. In addition, this
simplifies passing arguments in the headers s.t. rpc-server.c doesn't
have to look for the CSRF token as one of the multiparts.

This changes the upload POST behavior, so give it a new name (upload2).
The old function (upload) will be deprecated but kept until 2.90 so
that third-party web clients using the old POST semantics will have
time to update.

Bug #5290 <https://trac.transmissionbt.com/ticket/5290>
2013-02-10 18:33:04 +00:00
Jordan Lee 32fc85641a Make accidentally-public function names private
inspector.js' functions, beginning with addSubtreeToView(), are leaked
into the DOM due to a missing comma at the end of the previous func.
Bug #5289 <https://trac.transmissionbt.com/ticket/5289>
2013-02-10 18:32:40 +00:00
Jordan Lee f70c4d88c7 (web) remove the freespace-info label from the web client.
As discussed at https://trac.transmissionbt.com/ticket/4076#comment:25
the freespace indicator is being moved out of the statusbar to another
place.
2013-02-10 18:32:15 +00:00
Jordan Lee dbb742f667 (qt) merge together the two 'add url/magnet link' dialogs. 2013-02-09 23:11:17 +00:00
Jordan Lee 2942f85740 (qt) copyediting: whitespace/indentation 2013-02-09 21:47:42 +00:00
Jordan Lee 4c3a869a88 (qt) #5285 'Qt client's file tree should have a size column like the GTK+ client's': done. 2013-02-09 20:51:17 +00:00
Jordan Lee 90b95697e0 (gtk) #5284 'file tree should show the wanted size of the subtree, not the entire size': done. 2013-02-09 19:28:38 +00:00
Jordan Lee d03de26e13 (qt) #5284 'file tree should show the wanted size of the subtree, not the entire size': done. 2013-02-09 19:16:16 +00:00
Mitchell Livingston c2bde75718 resize the rename dialogue buttons for different localizations 2013-02-09 19:13:26 +00:00
Jordan Lee 00a5e86939 (qt) #5282 "Formatter's sizeToString() and memToString() return wrong text for 0 bytes": fixed. 2013-02-09 18:59:05 +00:00
Mitchell Livingston 6304bef11b (trunk) #5244 Dutch Translation error nl.proj 2013-02-09 04:44:22 +00:00
Jordan Lee d1da0204c7 (qt) #4076 'free space indicator': better user feedback when updating the freespace indicator in remote mode 2013-02-09 04:42:07 +00:00
Jordan Lee cd09204a6e (trunk) first draft of changing the FreeSpace API to behave as https://trac.transmissionbt.com/ticket/4076#comment:25 -- libT, rpc, qt, and gtk implementations. 2013-02-09 04:05:03 +00:00