summaryrefslogtreecommitdiff
path: root/src/trg-file-parser.c
Commit message (Collapse)AuthorAge
* Fix folder size displaying in new torrent windowGravatar Ilya Lukyanov2018-01-29
|
* Consistently include config.hGravatar Patrick Griffis2016-01-19
| | | | | This still needs some work in a few headers that depend on it
* hacking to support the options dialog from rss feedsGravatar Alan F2014-03-09
|
* fix for file parsed when unorderedGravatar Alan Fitton2013-02-20
|
* mini-optimization: don't check children hash for filesGravatar Alan Fitton2013-02-20
|
* update year in copyright headers, fix the jumbled file lists (caused by ↵Gravatar Alan Fitton2013-02-20
| | | | unsorted files)
* 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).
* fix memory leak on response from first response from server (HTTP conflict ↵Gravatar Alan Fitton2012-01-12
| | | | with session id).
* fix memory leaks and parse a files tree in a thread if there's over 600 ↵Gravatar Alan Fitton2012-01-11
| | | | files, to avoid UI freezes on massive torrents.
* 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.
* invalidate previous files path iterator if something doesn't match, to avoid ↵Gravatar Alan Fitton2012-01-10
| | | | unnecessary checks.
* forgot a file, reindentGravatar Alan Fitton2012-01-09
|
* issue 174 - exec crash, issue 173 - files first update performance fixed.Gravatar Alan Fitton2012-01-09
|
* 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.
* 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.
* remember the last selected destination on moving torrentsGravatar Alan Fitton2011-11-23
|
* 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}[, ]).
* (no commit message)Gravatar Alan Fitton2011-10-03
|
* use an icon for file wanted/unwantedGravatar Alan Fitton2011-10-03
|
* fix addfiles threadfunc to use g_idle_add(), missed during earlier win32 ↵Gravatar Alan Fitton2011-09-18
| | | | changes.
* fix for non-existant torrent filesGravatar Alan Fitton2011-09-18
|
* issue 111Gravatar Alan Fitton2011-09-18
|
* use GMappedFile instead of mmap. simpler and more portable.. I think an easy ↵Gravatar Alan Fitton2011-09-13
| | | | windows build should be possible using mingw now.
* plug the new dialog into filenames received from libunique, fix minor memory ↵Gravatar Alan Fitton2011-04-08
| | | | leak on the filenames passed.
* 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.