summaryrefslogtreecommitdiff
path: root/src/trg-main-window.c
Commit message (Collapse)AuthorAge
* issue 70 - new statuses in RPC version >= 14. still need to add ↵Gravatar Alan Fitton2011-09-04
| | | | stateselector entries for queued items.
* issue 76 - as stated in the documentation gtk_window_get_size() isn't always ↵Gravatar Alan Fitton2011-09-03
| | | | up to date. I'm sure it worked when I implemented this on GNOME, so as the docs suggest I think behavior could vary on other window managers. I'm on XFCE now and it doesn't work. use the configure-event to save the size instead.
* implement seed/download queues in Transmission >= 2.40Gravatar Alan Fitton2011-08-30
|
* issue 60 - a seperate update interval setting for if the application is ↵Gravatar Alan Fitton2011-08-30
| | | | minimised
* 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 54 - sorted destination combo and trackers/dirs in filterGravatar Alan Fitton2011-07-16
|
* 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.
* 0.5.1Gravatar Alan Fitton2011-05-06
|
* fix a leak in the last commitGravatar Alan Fitton2011-05-03
|
* hopefully fix issue 38Gravatar Alan Fitton2011-05-03
|
* fix small list memory leak when a torrent is removed in active-only modeGravatar Alan Fitton2011-05-02
|
* bind ip column in peers treeview to correct column, fix for panel updatesGravatar Alan Fitton2011-04-30
|
* earlier versions of the libproxy header were in /usr/include/libproxy ↵Gravatar Alan Fitton2011-04-29
| | | | instead of /usr/include, so including the cflags from pkgconfig should fix this.
* reindent. remote prefs was sending the active encryption preference, lower ↵Gravatar Alan Fitton2011-04-23
| | | | cased, which won't work with i18n - fixed.
* header right click menu to show/hideGravatar Alan Fitton2011-04-23
|
* 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
* (no commit message)Gravatar Alan Fitton2011-04-21
|
* only lookup the selected torrent id when it changes, remember it until ↵Gravatar Alan Fitton2011-04-21
| | | | checking every update, use the hash table instead. also fix a crash on multiple consecutive deletes caused by gtktreemodel weirdness.
* 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.
* show speed limits in status bar, thanks to jdhore for the patch.Gravatar Alan Fitton2011-04-14
|
* spawn requests from a thread poolGravatar Alan Fitton2011-04-13
|
* fix for total number of torrents countGravatar Alan Fitton2011-04-12
|
* fix the recently-active updates, add search columns for peers/file treeviewGravatar Alan Fitton2011-04-12
|
* tidy sources with GNU indent after recent changes. on seconds thoughts, ↵Gravatar Alan Fitton2011-04-12
| | | | don't install docs with autotools, leave it to the package manager.
* minor stuffGravatar Alan Fitton2011-04-12
|
* introduce a 0.35 second sleep between acknowledgement of an interactive ↵Gravatar Alan Fitton2011-04-12
| | | | action and requesting a full update. Transmission seems to have a small lag before a pause takes effect.
* some quite significant changes to only receive/update recently-active ↵Gravatar Alan Fitton2011-04-12
| | | | torrents, if enabled. also use a hash table and tree row references for lookup. hopefully performance will be much better for people with large number of torrents.
* for gconf integers, fallback to our own defaultsGravatar Alan Fitton2011-04-11
|
* plug the new dialog into filenames received from libunique, fix minor memory ↵Gravatar Alan Fitton2011-04-08
| | | | leak on the filenames passed.
* a torrent add dialog based off Transmission GTK (different bencode+action ↵Gravatar Alan Fitton2011-04-08
| | | | implementation) which allows you to set file priorities, torrent priority, directory in advance. probably needs a little more work.
* #define our own log2() function for FreeBSD (issue 22), hopefully fix a ↵Gravatar Alan Fitton2011-03-20
| | | | reported libnotify crash due to no notify_init (issue 21)
* fix a crash if disconnecting with the graph disabled, disabling tracker/dir ↵Gravatar Alan Fitton2011-03-16
| | | | filters while disconnected. change possible -NaN for ratio to N/A in general panel.
* show/hide the state selectors scrolled window not the child widgetGravatar Alan Fitton2011-03-12
|
* filter by directory and some filter fixesGravatar Alan Fitton2011-03-11
|
* Korean support, thanks Youn! Also filter by tracker. Adding/removing ↵Gravatar Alan Fitton2011-03-10
| | | | trackers from the state selector every update seems like a waste of cycles, so only refresh when a torrent is added.
* increase general panel spacings a little, fix backwards comparasin on ↵Gravatar Alan Fitton2011-03-08
| | | | filter, give error/location value labels full length
* use a gtktable for general panel, fixed layout is no good for a localised ↵Gravatar Alan Fitton2011-03-08
| | | | app. add JDM's freebsd port.
* issue 19: case insensitive filteringGravatar Alan Fitton2011-03-08
|
* support proxy configuration using libproxy (optional). might add a getenv() ↵Gravatar Alan Fitton2011-03-07
| | | | fallback sometime.
* Make the presence of the graph configurable, and prevent ":" showing ↵Gravatar Alan Fitton2011-03-07
| | | | (introduced by gettext changes) for empty labels like errors (usually).
* all (I hope) strings in _(string) macro for localisationGravatar Alan Fitton2011-03-06
|
* TRG_NOUNIQUE environment env for starting more than one instance. fix start ↵Gravatar Alan Fitton2011-03-06
| | | | url paused. stop timers being activated by interactive actions. and... experimental speed graph!
* a much better system for suspending tracker/file updates until a change has ↵Gravatar Alan Fitton2011-02-27
| | | | been acknowledged. fix for issue 17 (bandwidth priorities). use transmission-remote-gtk icon in .desktop instead of transmission.
* no idea why I put a 5 pixel border on the main window, looks wrong on a ↵Gravatar Alan Fitton2011-02-25
| | | | darker theme like ubuntu has. (issue 16).
* missing free for selection list elementsGravatar Alan Fitton2011-02-22
|
* set minimum dependency versions in RPM spec and configure.ac. gtk 2.16, glib ↵Gravatar Alan Fitton2011-02-22
| | | | 2.22 (for GResolver), json-glib 0.8.