summaryrefslogtreecommitdiff
path: root/src/main.c
Commit message (Collapse)AuthorAge
* Start modernizing GObject usageGravatar Patrick Griffis2016-01-19
| | | | Long way to go...
* Fix numerous warnings/errorsGravatar Patrick Griffis2016-01-19
|
* don't use g_type_init on glib >= 2.36 as it's deprecatedGravatar Alan F2014-02-05
|
* deprecation fixes: change to GtkStock to themed icons for all cell renderersGravatar Alan F2014-01-08
|
* remove all support for gtk2Gravatar Alan F2014-01-07
|
* update year in copyright headers, fix the jumbled file lists (caused by ↵Gravatar Alan Fitton2013-02-20
| | | | unsorted files)
* fix a possible and rare NULL ptr dereference in an abrt crash report I got, ↵Gravatar Alan Fitton2012-08-13
| | | | run GTK init before converting command line arguments to hopefully avoid GTK/glib debugging flags being passed as torrent filenames.
* update win32 installer to gtk3 and my new mingw32 environment.Gravatar Alan Fitton2012-06-21
|
* issue 185 - change .desktop to add magnet uri handlerGravatar Alan Fitton2012-02-26
|
* 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).
* try to suspend sorting while model is updatedGravatar Alan Fitton2012-01-24
|
* fix a crash when enabling/disabling status icon and a fix for the new ↵Gravatar Alan Fitton2012-01-22
| | | | GtkApplication impl
* fix that min/max problem reported by reardoniaGravatar Alan Fitton2012-01-21
|
* gtk3 off again - apparently it has issues. hopefully fix gtk2 build issue.Gravatar Alan Fitton2012-01-19
|
* re-enable gtk3 by default, should be picking the right libappindicator now.Gravatar Alan Fitton2012-01-19
|
* 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.
* 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
* allow remote session variables to be used in actionsGravatar Alan Fitton2011-11-17
|
* issue 161Gravatar Alan Fitton2011-10-31
|
* When implementing labels in TrgDestinationCombo, I somehow overlooked the ↵Gravatar Alan Fitton2011-10-25
| | | | fact that I made it no longer editable and some work would be needed to make it actually send the directory and not the label. Fixed, I have some more ideas for this widget though.
* add a manpage, fix a potential crash, icon cache fix in spec fileGravatar Alan Fitton2011-10-24
|
* remove a randomly placed 'b' character breaking main.cGravatar Alan Fitton2011-10-17
|
* prevent -m /m --minimized being picked up as torrent file argumentsGravatar Alan Fitton2011-10-17
|
* win32 Gravatar Alan Fitton2011-10-17
|
* win32 second instance crashes seem to be in json parser with empty lists, ↵Gravatar Alan Fitton2011-10-17
| | | | not sure why though. changed what's passed to an object and it now works. change window title to "Transmission Remote" (nicer, especially on Windows).
* fix license display on win32 in about dialogGravatar Alan Fitton2011-10-16
|
* fix indenting style on main.c (no tabs), present window when second instance ↵Gravatar Alan Fitton2011-10-15
| | | | is started.
* use mailslots from the win32 api to implement file handler on windowsGravatar Alan Fitton2011-10-15
|
* fix locales and system tray in win32Gravatar Alan Fitton2011-10-09
|
* issue 84Gravatar Alan Fitton2011-10-04
|
* 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.
* found a better way to do the win32 gtkrc so remove some stuff I added beforeGravatar Alan Fitton2011-09-21
|
* on win32, set a GTK theme called win32-gtkrc.rc in the directory of the ↵Gravatar Alan Fitton2011-09-21
| | | | executable. the default GTK theme is *ugly* on windows, the MS-Windows one is less ugly..
* some win32 build stuffGravatar Alan Fitton2011-09-18
|
* 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/
* more windows portabilityGravatar Alan Fitton2011-09-13
|
* use thread local storage to keep one curl client per thread (by default 3) ↵Gravatar Alan Fitton2011-09-11
| | | | in the thread pool
* another buttonGravatar Alan Fitton2011-09-08
|
* s/minimise/minimized/ (I'll use the American spelling. minimised is more ↵Gravatar Alan Fitton2011-09-08
| | | | common here in Britain I think.)
* issue 42 - start in tray argument. fix state selector persisting of ↵Gravatar Alan Fitton2011-09-08
| | | | selection (was out by 1).
* 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.
* use #ifdef HAVE_LIBUNIQUE in main.c to make libunique more optional, will be ↵Gravatar Alan Fitton2011-09-07
| | | | useful for windows support.
* 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 53 - no need to #include curl/types.h, plus it's been removed in the ↵Gravatar Alan Fitton2011-07-13
| | | | latest curl.
* handle undefined epoch (< 1) rendererGravatar 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