summaryrefslogtreecommitdiff
path: root/src/trg-torrent-graph.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
* update year in copyright headers, fix the jumbled file lists (caused by ↵Gravatar Alan Fitton2013-02-20
| | | | unsorted files)
* Revert "gtk3 60 second graphing - this is a seperate source for now, could ↵Gravatar Alan Fitton2012-07-09
| | | | | | be easily merged it seems." This reverts commit d4711b4c9e9ae88ed75829371f184b6f7b387a27.
* gtk3 60 second graphing - this is a seperate source for now, could be easily ↵Gravatar Alan Fitton2012-07-08
| | | | merged it seems.
* 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).
* full and default gtk3 support, almost. the graph is disabled as the drawing ↵Gravatar Alan Fitton2012-01-18
| | | | api has changed quite a bit. yet another implementation to pass arguments, which made a cleanup of main.c necessary.
* 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.
* 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.
* add some comments at the top of some files, also add a timeout of 20 seconds ↵Gravatar Alan Fitton2011-11-30
| | | | for curl requests
* use mailslots from the win32 api to implement file handler on windowsGravatar Alan Fitton2011-10-15
|
* 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/
* 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.
* ugh, C99 undefines M_LN2 in math.h (for log2). define it ourselves.Gravatar Alan Fitton2011-04-10
|
* 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)
* support proxy configuration using libproxy (optional). might add a getenv() ↵Gravatar Alan Fitton2011-03-07
| | | | fallback sometime.
* all (I hope) strings in _(string) macro for localisationGravatar Alan Fitton2011-03-06
|
* s/outgoing/uploading/ s/incoming/downloading/ in graph, remove glinegraph ↵Gravatar Alan Fitton2011-03-06
| | | | based attempt
* 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!