summaryrefslogtreecommitdiff
path: root/src/trg-torrent-add-dialog.c
Commit message (Collapse)AuthorAge
* Consistently include config.hGravatar Patrick Griffis2016-01-19
| | | | | This still needs some work in a few headers that depend on it
* Fix numerous warnings/errorsGravatar Patrick Griffis2016-01-19
|
* issue 260 - present (bring to front) the torrent add options dialog to the ↵Gravatar Alan F2014-04-25
| | | | user when it is opened.
* don't include directory nodes in the n_files count when populating the ↵Gravatar Alan F2014-04-08
| | | | upload options treeview. this causes extra indexes to be sent to Transmission on upload, crashing it in some cases or failing the request.
* sync hig.c from transmission-gtk to use GtkGrid instead of deprecated ↵Gravatar Alan F2014-03-12
| | | | GtkTable, and remove most other usage of GtkTable.
* hacking to support the options dialog from rss feedsGravatar Alan F2014-03-09
|
* refactor the torrent upload code (it's called from a few places so is ↵Gravatar Alan F2014-02-19
| | | | probably worth it), and make it easier to use a HTTP response as the input.
* remove all support for gtk2Gravatar Alan F2014-01-07
|
* add the peers/files/trackers tree view to torrent dialog in transmission styleGravatar Alan Fitton2012-08-26
|
* reindent all the things! with indent -nut -kr.Gravatar Alan Fitton2012-08-26
|
* use literal row/column numbers in trg-torrent-add-dialog.c, because ↵Gravatar Alan Fitton2012-08-19
| | | | clang-analyzer and gcc -Wall doesn't like them being reset.
* truncate magnet links to 75 chars in add dialog, these can easily make the ↵Gravatar Alan Fitton2012-06-20
| | | | dialog oversized.
* issue 186 - apply to all combo box in torrent add dialogGravatar Alan Fitton2012-06-10
|
* issue 175. make some (incomplete) changes as per the GTK+ best practices ↵Gravatar Alan Fitton2012-01-25
| | | | document - mainly using a pointer in the public class to access the private object (on a few important classes for now) for performance, and don't use C99 (C99 comments or mixed declarations/statements).
* issue 158Gravatar Alan Fitton2012-01-23
|
* fix memory leaks and parse a files tree in a thread if there's over 600 ↵Gravatar Alan Fitton2012-01-11
| | | | files, to avoid UI freezes on massive torrents.
* fix for click on priority in main tree view toggling enabled/disabled. ↵Gravatar Alan Fitton2012-01-10
| | | | increment file parent sizes in the temporary tree instead of in the gtk model for performance.
* issue 174 - exec crash, issue 173 - files first update performance fixed.Gravatar Alan Fitton2012-01-09
|
* fix the performance problems with the torrent add dialog on torrents with ↵Gravatar Alan Fitton2012-01-08
| | | | many files/dirs. the parent size updates just walks up parents rather than a full foreach, and the inserts try to use the previous update to speed up finding/creating the directories. I'll probably do something similar to the main files treeview.
* reindent with gnu indent. add keyboard accelerators for view menu, fix ↵Gravatar Alan Fitton2012-01-04
| | | | toggle filter widget also connected to toggle graph cb. add Lithuanian translation thanks to Algimantas Margevičius via launchpad.
* make the torrent add tree view and the files tree view fairly consistent, ↵Gravatar Alan Fitton2012-01-04
| | | | sharing code where possible. this allows changing priority and enabled using a directory. expand/collapse all buttons. the one taken from Transmission for torrent add dialog now has menus and the mime icons. may be bugs here, I know there's one with directories appearing as mixed and not updating upwards properly, but it's a start.
* hopefully a fix for tree on windowsGravatar Alan Fitton2011-12-21
|
* oops, no tabs. (indent -kr -nut)Gravatar Alan Fitton2011-12-11
|
* run GNU indent everything. not done this for a while because it was ↵Gravatar Alan Fitton2011-12-11
| | | | producing weird results. seems ok now.
* remember the last selected destination on moving torrentsGravatar Alan Fitton2011-11-23
|
* closer to gtk3 support, I think just the graph needs doing now.Gravatar Alan Fitton2011-10-26
|
* make the execute command tree view in preferences a generic widget, the ↵Gravatar Alan Fitton2011-10-21
| | | | "persistent tree view"
* issue 84Gravatar Alan Fitton2011-10-04
|
* (no commit message)Gravatar Alan Fitton2011-10-03
|
* use an icon for file wanted/unwantedGravatar Alan Fitton2011-10-03
|
* issue 145 - fix my broken regex which was causing filenames to be treated as ↵Gravatar Alan Fitton2011-10-03
| | | | URLs. issue 141 - patch for showing mime type icons in file list.
* issue 84Gravatar Alan Fitton2011-09-19
|
* fix addfiles threadfunc to use g_idle_add(), missed during earlier win32 ↵Gravatar Alan Fitton2011-09-18
| | | | changes.
* fix for non-existant torrent filesGravatar Alan Fitton2011-09-18
|
* Big changeset, may break stuff. Unfortunately you can't magically jump into ↵Gravatar Alan Fitton2011-09-18
| | | | the UI thread using gdk_threads_enter/leave() on Windows, the only way is to schedule a callback using g_idle_add. This required a lot of reworking. Good news, Windows support actually works now \o/
* use glib message functions instead of g_printf(). make view state ↵Gravatar Alan Fitton2011-09-08
| | | | selector/notebook a persistent setting. add toggling of tracker/dir filters to view menu. I might add more from preferences another time.
* issue 58Gravatar Alan Fitton2011-08-27
|
* Profile support! Please test and report bugs, as the config system is ↵Gravatar Alan Fitton2011-08-27
| | | | totally rewritten and may not be perfect. No more GConf (trying to implement profiles with this was UGLY), settings now (for most) live in JSON at $HOME/.config/transmission-remote-gtk/config.json. Hopefully windows support will be easier without GConf.
* issue 41 - remember sort column and type. also move all these stores from ↵Gravatar Alan Fitton2011-05-13
| | | | delete-event to destroy function so it works when the quit buttons are used, as well as from window manager.
* put the destination combo into its own class, changing from the deprecated ↵Gravatar Alan Fitton2011-05-11
| | | | combo_box_entry_new_text or whatever it is and using it in torrent move dialog also.
* bind ip column in peers treeview to correct column, fix for panel updatesGravatar Alan Fitton2011-04-30
|
* reindent. remote prefs was sending the active encryption preference, lower ↵Gravatar Alan Fitton2011-04-23
| | | | cased, which won't work with i18n - fixed.
* support for remembering column positions and widths.. seems to work, may ↵Gravatar Alan Fitton2011-04-22
| | | | need work.
* handle multiple files via libunique, also use the more reliable get_uris() ↵Gravatar Alan Fitton2011-04-22
| | | | in libunique
* fix crash on stats dialogGravatar Alan Fitton2011-04-20
|
* updating a torrents file or trackers doesn't make it recently active, so ↵Gravatar Alan Fitton2011-04-16
| | | | these changes could get missed if doing active only updates. for these: send the torrent id as the request tag, which Transmission passes back, then we request an update just for that torrent.
* fix two fairly minor memory leaksGravatar Alan Fitton2011-04-16
|
* show speed limits in status bar, thanks to jdhore for the patch.Gravatar Alan Fitton2011-04-14
|
* handle broken torrent files properlyGravatar Alan Fitton2011-04-13
|
* fix for total number of torrents countGravatar Alan Fitton2011-04-12
|