summaryrefslogtreecommitdiff
path: root/src/trg-client.c
Commit message (Collapse)AuthorAge
* fix deprecations on g_private_new and g_thread_new, by making them ↵Gravatar Alan F2014-03-12
| | | | statically initialised inside the TrgClientPrivate
* support uTorrent style cookies on the end of the RSS feed URLGravatar Alan F2014-03-11
|
* refactor TrgClient, also allowing cookies to be set on requestsGravatar Alan F2014-03-11
|
* hacking to support the options dialog from rss feedsGravatar Alan F2014-03-09
|
* put rss tree view in a scroll window, display HTTP error codes on error ↵Gravatar Alan F2014-02-25
| | | | (only use curl_strerror for communications error, != CURLE_OK)
* plug the RSS feeds into the preferences dialog and put ifdefs so it should ↵Gravatar Alan F2014-02-24
| | | | compile without rss-glib
* 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.
* RSS viewer now gets feed URLS from the config JSON, and displays the item ↵Gravatar Alan F2014-02-10
| | | | titles in a treeview.
* refactor the TrgClient, so the thread pool and CURL clients are available ↵Gravatar Alan F2014-02-09
| | | | for making general HTTP GET, so don't send our username, password, and session.
* issue 235 - optional validation of SSL certificatesGravatar Alan F2013-12-20
|
* update year in copyright headers, fix the jumbled file lists (caused by ↵Gravatar Alan Fitton2013-02-20
| | | | unsorted files)
* issue 221 - configurable rpc urlGravatar Alan Fitton2013-01-02
|
* 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
|
* fix gtk2 support for new cell renderer and fix error reportingGravatar Alan Fitton2012-08-25
|
* consider seed ratios in the new cell renderer like Transmisson does, as well ↵Gravatar Alan2012-08-24
| | | | as some other scenarios so it behaves almost like the Transmission. lots of new fields added to the model for this.
* issue 186 - apply to all combo box in torrent add dialogGravatar Alan Fitton2012-06-10
|
* Swedish translation. Thanks Åke SvenssonGravatar Alan Fitton2012-05-22
|
* issue 188Gravatar Alan Fitton2012-03-17
|
* issue 185 - change .desktop to add magnet uri handlerGravatar Alan Fitton2012-02-26
|
* fix drag and dropGravatar Alan Fitton2012-02-07
|
* issue 180 - reordering actions/directoriesGravatar Alan Fitton2012-02-01
|
* 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
|