summaryrefslogtreecommitdiff
path: root/src/trg-files-tree-view.c
Commit message (Collapse)AuthorAge
* Fix memory leak of g_utf8_strdownGravatar Elia Argentieri2017-07-14
|
* Add a mid-string case insensitive search function to files tree view.Gravatar Elia Argentieri2017-07-06
| | | | Closes #46.
* Consistently include config.hGravatar Patrick Griffis2016-01-19
| | | | | This still needs some work in a few headers that depend on it
* 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.
* update year in copyright headers, fix the jumbled file lists (caused by ↵Gravatar Alan Fitton2013-02-20
| | | | unsorted files)
* add the peers/files/trackers tree view to torrent dialog in transmission styleGravatar Alan Fitton2012-08-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).
* the information in the bottom left label seemed pretty redundant now that is ↵Gravatar Alan Fitton2012-01-15
| | | | all displayed in the filter panel. I think that space is better used just for something simple like Connected: where (what).
* fix memory leak on response from first response from server (HTTP conflict ↵Gravatar Alan Fitton2012-01-12
| | | | with session id).
* fix for click on priority in main tree view toggling enabled/disabled. ↵Gravatar Alan Fitton2012-01-10
| | | | increment file parent sizes in the temporary tree instead of in the gtk model for performance.
* issue 174 - exec crash, issue 173 - files first update performance fixed.Gravatar Alan Fitton2012-01-09
|
* 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.
* hopefully a fix for tree on windowsGravatar Alan Fitton2011-12-21
|
* file trees :D may do cascading priority changes sometime, but this is a ↵Gravatar Alan Fitton2011-12-21
| | | | start. also use GTK_STOCK_FILE if mime/extension detection fails.
* 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.
* get rid of default tree view widths.. not really needed now that they're ↵Gravatar Alan Fitton2011-12-09
| | | | persistent, and they make the tree view look messy on first run.
* use an icon for file wanted/unwantedGravatar Alan Fitton2011-10-03
|
* 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.
* for issue 141Gravatar Alan Fitton2011-10-01
|
* on first use the notebook position was taking the pref get_int default of 0, ↵Gravatar Alan Fitton2011-09-30
| | | | taking up the whole window. fix.
* 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/
* 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.
* updated german translation. don't restore sort column/direction for ↵Gravatar Alan Fitton2011-06-04
| | | | trackers/files treeviews on load (the natural order seems like a better default).
* 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.
* minorGravatar Alan Fitton2011-04-24
|
* 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.
* 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.
* fix the recently-active updates, add search columns for peers/file treeviewGravatar Alan Fitton2011-04-12
|
* 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.
* 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
|
* 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.
* adding trackers now seems to work. change all tabs to whitespace.Gravatar Alan Fitton2011-02-18
|
* statistics!Gravatar Alan Fitton2011-02-14
|
* fix for low priority file selection. -1 happens to be the terminator to ↵Gravatar Alan Fitton2011-02-10
| | | | list_store_set so use set_value instead.
* another gint64/gint mismatchGravatar Alan Fitton2011-02-09
|
* indent -kr *.c *.hGravatar Alan Fitton2011-02-09
|
* big thanks to charles for the feedback and patches! fixes for building ↵Gravatar Alan Fitton2011-02-04
| | | | against older libnotify (issue 1+4), use AM_SILENT_RULES (6), compiler warning fixes (5), use GDK_Delete instead of GDK_KEY_Delete (3)
* update about dialog with new websiteGravatar Alan Fitton2011-01-30
|
* hello world!Gravatar Alan Fitton2011-01-30