summaryrefslogtreecommitdiff
path: root/src/trg-client.c
Commit message (Collapse)AuthorAge
* translation update thanks to Y3AVD33Gravatar Alan Fitton2012-01-28
|
* statusbar fix: connection fail messages should be replaced by the connected ↵Gravatar Alan Fitton2012-01-26
| | | | message if a subsequent attempt succeeds
* 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).
* parse the version out of the version string using locale agnostic ↵Gravatar Alan Fitton2012-01-15
| | | | g_ascii_strtod instead of sscanf, which would only pick up the integer component with a locale which used a different radix character.
* fix memory leak on response from first response from server (HTTP conflict ↵Gravatar Alan Fitton2012-01-12
| | | | with session id).
* 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.
* timeout and retries settingsGravatar Alan Fitton2012-01-02
|
* keyboard acceleratorsGravatar Alan Fitton2012-01-02
|
* put the general panel in a scroll windowGravatar Alan Fitton2012-01-02
|
* change units to the IEC standard (and the Ubuntu units policy) for base2 ↵Gravatar Alan Fitton2012-01-02
| | | | (/1024) - KiB/GiB etc. this is instead of KB/s etc which Windows and many other apps use for base2. I've tried to fix up the translations as best as I can.
* 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.
* add some comments at the top of some files, also add a timeout of 20 seconds ↵Gravatar Alan Fitton2011-11-30
| | | | for curl requests
* make the execute command tree view in preferences a generic widget, the ↵Gravatar Alan Fitton2011-10-21
| | | | "persistent tree view"
* use previous change to remove some unnecessary code and so intervals are ↵Gravatar Alan Fitton2011-10-19
| | | | taken from the current connection, not selected profile
* implement a TRG_PREFS_CONNECTION flag which gets prefs for the connected profileGravatar Alan Fitton2011-10-19
|
* issue 155Gravatar Alan Fitton2011-10-19
|
* add libproxy/libmodman to win32 installerGravatar Alan Fitton2011-10-11
|
* restore status icon tooltipsGravatar Alan Fitton2011-10-09
|
* makes more sense to increment the connection id just before a connection ↵Gravatar Alan Fitton2011-10-07
| | | | attempt, not after.
* fix small memory leak and make connection id atomicGravatar Alan Fitton2011-10-07
|
* make connect button a menu button with other profiles, also add a connection ↵Gravatar Alan Fitton2011-10-07
| | | | serial used to discard requests issued before a disconnect which get their callback invoked after a new one is established. add an experimental "repeater" flag on exec commands (eg. %{name}[, ]).
* issue 78 - contributed patch for drag'n'drop supportGravatar Alan Fitton2011-09-20
|
* some stuff to dispatch strings instead of JsonNode, but nothing uses it yet.Gravatar Alan Fitton2011-09-19
|
* 118Gravatar Alan Fitton2011-09-19
|
* add a null check in trg_response_freeGravatar Alan Fitton2011-09-19
|
* changes to make memory profiling easierGravatar 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/
* issue 85Gravatar Alan Fitton2011-09-16
|
* issue 85Gravatar Alan Fitton2011-09-16
|
* issue 106Gravatar Alan Fitton2011-09-16
|
* fix potential config mutex deadlockGravatar Alan Fitton2011-09-16
|
* more windows portabilityGravatar Alan Fitton2011-09-13
|
* for view menu check items, set their active in an expose event so they're ↵Gravatar Alan Fitton2011-09-11
| | | | synced with preferences. add move up/down queue buttons (only in torrent menu for now).
* use thread local storage to keep one curl client per thread (by default 3) ↵Gravatar Alan Fitton2011-09-11
| | | | in the thread pool
* issue 89Gravatar Alan Fitton2011-09-09
|
* update the free space indicator using a signal from TrgClientGravatar Alan Fitton2011-09-06
|
* issue 40 - a free space indicator. also split stuff out on the statusbar to ↵Gravatar Alan Fitton2011-09-05
| | | | the right side. I never liked that statusbar :o now use GtkLabels inside a HBox instead of 1 GtkStatusBar.
* 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.
* issue 69 - use rpc-version instead of version to show/hide tracker changing ↵Gravatar Alan Fitton2011-09-01
| | | | features
* switch from using the trackers struct to trackerstats - and add some of the ↵Gravatar Alan Fitton2011-08-31
| | | | new columns into the trackers model and treeview
* 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
* 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.
* fix crash on stats dialogGravatar Alan Fitton2011-04-20
|
* oops.. json_array_get_elements() returns a newly allocated list, not the one ↵Gravatar Alan Fitton2011-04-16
| | | | owned by the array. fix a few memory leaks.
* fix two fairly minor memory leaksGravatar Alan Fitton2011-04-16
|
* handle broken torrent files properlyGravatar Alan Fitton2011-04-13
|