summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAge
...
* upgrade to extjs4Damien Churchill2011-10-05
|
* Fix typo in Windows shutdown handlerAndrew Resch2011-08-08
|
* Allow changing ownership even though the owner column is not visible.Pedro Algarvio2011-08-03
|
* Fix path for desktop fileAndrew Resch2011-07-29
|
* Fix i18n sub-dir issue in gitignoreCalum Lind2011-07-28
|
* Fix .desktop file creation on Windows by just ignoring itAndrew Resch2011-07-28
|
* Add my name to author listCalum Lind2011-07-22
|
* Update windows settingAndrew Resch2011-07-19
|
* Add intltool to dependenciesCalum Lind2011-07-13
|
* Fix torrent file and folder renaming issuesCalum Lind2011-07-13
| | | | Adds `sanitize_filepath` for use before passing to libtorrent rename_file
* Localize the Desktop fileCalum Lind2011-07-13
| | | | | | Conflicts: setup.py
* Option tab spin buttons connected to key press eventsCalum Lind2011-07-11
|
* set spinbuttons numeric onlyCalum Lind2011-07-11
|
* Remove un-needed signal handlers.Pedro Algarvio2011-07-11
|
* Update translations filesCalum Lind2011-07-11
|
* More missing(?) signal handlers. Refs #1891.Pedro Algarvio2011-07-10
|
* Fix the options tab. Refs #1891Pedro Algarvio2011-07-10
|
* Fix #1637: UnicodeDecodeError from 'deluge-console --help' with other languagesCalum Lind2011-07-10
|
* Add some more lost signal on the Glade to GtkBuild migration.Pedro Algarvio2011-07-10
|
* Tidy up location of gettext setup_translationsCalum Lind2011-07-10
|
* Fix lost signals for peers tab menu, files tab menu and options tab.Pedro Algarvio2011-07-10
|
* Fix translation string in Freespace pluginCalum Lind2011-07-10
|
* Allow compiling translations in develop mode.Pedro Algarvio2011-07-10
| | | | Translations will compiled into `deluge/i18n` instead of the build lib so that they can be used in a deluge develop mode install.
* Log from where translations are being loaded.Pedro Algarvio2011-07-10
|
* Raw attempt of fixing the GtkBuilder introduced bugs.Pedro Algarvio2011-07-10
|
* Fix #1505: Add libtorrent info to --version outputCalum Lind2011-07-09
|
* Fix #1801: ConsoleUI failed connect missing error messageCalum Lind2011-07-09
|
* Fixes keyerror with existing file priorities set to HighCalum Lind2011-07-08
|
* Add handler for drag_data_received to supress warningCalum Lind2011-07-08
|
* Do not use Ellipsis.Pedro Algarvio2011-07-08
|
* Add some "now needed" missing imports.Pedro Algarvio2011-07-08
|
* Remove some left overs.Pedro Algarvio2011-07-08
|
* Moved the MainWindow to GtkBuilder.Pedro Algarvio2011-07-07
| | | | | | This probably broke some behaviour because converting and splitting from libglade to GtkBuilder is not as perfect as it should be. What I noticed was fixed. Also, GtkBuilder only allow calling `connect_signals()` once. Some code had to change to handle this and a "handlers proxy class" was created to keep the behaviour we had, ie, connect signals from where it was needed. Then I monkey patch the main windows GtkBuilder to not allow anyone to connect signals through it since it would break behaviour. Connecting signals to the main window builder instance is now done like `component.get("MainWindow").connect_signals()`. The best solution will probably break the main window ui into the needed parts in order to not have to monkey patch main windows builder. Plugin's trying to get the main windows `main_glade` are now broken, on purpose, ie, the code they have needs to change since the calls to the builder are not the same as the calls to libglade. The plugins we ship with deluge will be fix as soon as possible.
* Start with a bigger width.Pedro Algarvio2011-07-07
|
* Make sure the tracker url is of type string and not unicode. Never had this ↵Pedro Algarvio2011-07-07
| | | | issue previously though.
* Fix httpdownloader TestsCalum Lind2011-07-07
|
* Fix httpdownloader error with existing filenameCalum Lind2011-07-07
|
* LP Bug #496265: Peers in PeersTab show non-zero download rate when seedingCalum Lind2011-07-07
|
* Moved system tray to GtkBuilder.Pedro Algarvio2011-07-06
|
* Moved queued torrents dialog to GtkBuilder.Pedro Algarvio2011-07-06
|
* Moved remove torrent dialog to GtkBuilder.Pedro Algarvio2011-07-06
|
* Moved the preferences dialog to GtkBuilder.Pedro Algarvio2011-07-06
|
* The Stats plugin should not be using the old logging system.Pedro Algarvio2011-07-06
|
* Fix some broken GtkBuilder files.Pedro Algarvio2011-07-06
|
* Forgot to rename a glade from when migrating it to GtkBuilder.Pedro Algarvio2011-07-06
|
* Add some missing `.ui` files.Pedro Algarvio2011-07-06
|
* Moved the menubar to GtkBuilder.Pedro Algarvio2011-07-06
|
* Migrated `filtertree_menu.glade` to GtkBuilder.Pedro Algarvio2011-07-06
|
* Fix #1263: GTK UI not remembering column widthCalum Lind2011-07-06
| | | | | | | Removing a column from the treeview on shutdown causes all the column widths to be zero which are saved to the state file. The workaround is to not save the state file if all columns are zero.
* Splited `dgtkpopups.glade` into `other_dialog.ui` and ↵Pedro Algarvio2011-07-06
| | | | `connect_peer_dialog.ui` which are now using GtkBuilder.