Calum Lind
5cc5d2e811
Fix overzealous changes to setup.py
2014-09-20 18:55:21 +01:00
Calum Lind
a4edb0080b
Fix for building sphinx docs
2014-09-20 18:43:09 +01:00
Calum Lind
fc9017cfb1
Update with new license header
2014-09-19 19:21:42 +01:00
Calum Lind
30a0f3c9ed
Flake8 pass of entire codebase
...
* Use the inline '# NOQA' to supress N802 lower-case warnings
2014-09-19 19:10:14 +01:00
Calum Lind
d0b8e17873
Add workarounds for isort
...
* Add workaround for unicodedata issue
* Change line length to 120
* Skip gtkui.py to stop it moving local imports above the install reactor line
2014-09-19 15:58:43 +01:00
Calum Lind
b8ab6e4083
[Tests] Replace module import with sys.modules
2014-09-19 13:40:39 +01:00
Calum Lind
09c6e0cb5c
Remove gtkui specific func from path_chooser_common
2014-09-19 13:39:50 +01:00
Calum Lind
6e0e01225e
[Plugins] Fix relative imports to use dot notation
2014-09-19 13:39:50 +01:00
Calum Lind
268c8d608c
[WebUI] Add reduce import for Py3 compat
2014-09-19 13:39:50 +01:00
Calum Lind
fbcddff6ea
[WebUI] Replace func_globals with __globals__ for Py3 compat
2014-09-19 13:39:50 +01:00
Calum Lind
08b61eb50b
Change imports to use absolute paths
2014-09-19 13:39:41 +01:00
Calum Lind
45ef6ac56d
[Console] Flake8 all files
2014-09-18 17:23:52 +01:00
bendikro
a68c3140af
[GTKUI] Fixed incorrect column for searching in treeview
2014-09-10 12:50:45 +01:00
Calum Lind
91943ba7e3
[WebUI] Small fixes to text labels
2014-09-04 10:41:48 +01:00
Calum Lind
403fdb31a1
[WebUI] Fix isort error in auth
2014-09-04 10:40:57 +01:00
Calum Lind
20b05ae595
Remove unneeded ez_setup and 'isort' imports
2014-09-04 00:37:57 +01:00
Calum Lind
5167e93d12
Flake8 core and common files
...
* Added N802 to flake8 ignore as certain inherited funcs cannot be changed
to lowercase and this unresolved warning hides other errors/warnings.
* Include new header
2014-09-03 23:48:34 +01:00
Calum Lind
5d88504c34
[GTKUI] Fix isort error in gtkui
2014-09-03 23:30:14 +01:00
Calum Lind
3315768b27
[GTKUI] All files Flake8'd and use new header
2014-09-03 23:30:14 +01:00
Calum Lind
b5dcfc6f9e
Sort/prettify imports with isort
2014-09-03 18:27:32 +01:00
Calum Lind
1ca08ccf95
[Python-Modernize] Replace im_self with __self__
2014-09-03 17:22:39 +01:00
Calum Lind
fc7a136c70
[Python-Modernize] lib2to3.fixes.fix_numliterals
2014-09-03 17:22:39 +01:00
Calum Lind
e24e5916e0
[Console] Replace set with list
2014-09-03 17:22:39 +01:00
Calum Lind
4afd2513fa
[Console] Fix typo in info
2014-09-03 17:22:39 +01:00
Calum Lind
7cdedbea1f
[Python-Modernize] libmodernize.fixes.fix_raise
2014-09-03 17:22:39 +01:00
Calum Lind
38bc5d07f0
[Python-Modernize] lib2to3.fixes.fix_ws_comma
...
* Fixer that changes 'a ,b' into 'a, b'.
2014-09-03 17:22:38 +01:00
Calum Lind
3a53f4002a
[Python-Modernize] libmodernize.fixes.fix_print
...
* Replaces print with print()
2014-09-03 17:22:38 +01:00
Calum Lind
1e6c811768
[Python-Modernize] lib2to3.fixes.fix_except
...
* Use 'ex' instead of 'e' to conform with pylint
* Minimal Flake8 on some files
2014-09-03 17:22:38 +01:00
Calum Lind
95f859673e
[Python-Modernize] lib2to3.fixes.fix_has_key
2014-09-03 17:22:38 +01:00
Calum Lind
682acc11ec
[Tests] Update ubuntu icon
2014-09-03 17:22:21 +01:00
Calum Lind
ec8d48f4fd
[GTKUI] Tweaking layout of Status and Details Tabs
2014-09-02 12:48:02 +01:00
Calum Lind
4f3fcac2bf
[GTKUI] Add padding to count in sidebar
2014-09-01 22:24:19 +01:00
Calum Lind
430f9c01d7
[ #2472 ] [GTKUI] [WebUI] Add anonymous_mode UI prefs
2014-09-01 22:08:48 +01:00
Doadin
184d6be98d
[ #2472 ] Add support for anonymous_mode
2014-09-01 21:57:09 +01:00
Alex Knaust
2a50159978
[ #2497 ] [GTKUI] Fix the queue 'Clear' button not properly clearing.
2014-09-01 21:31:17 +01:00
Calum Lind
5a6f202cf1
[GTKUI] Rework the sidebar layout
...
* Changed variable names to be less confusing.
* Flake8'd.
* Move the 'count' to a separate render cell.
* Reduced size of expander icon to make it less intrusive.
* Enabled ellipsis on labels so count is still visible.
* Used pango markup on cell labels and count.
* No longer set a fixed colour to fix #1193 .
2014-09-01 19:25:44 +01:00
Calum Lind
e97140cbde
[GTKUI] Reduce status tab border to 1px
2014-09-01 19:06:02 +01:00
Calum Lind
ecb4f0e9da
[ #2496 ] [GTKUI] Fix updating core_config before setting default options
...
* Remove duplicate entry in init.
* Call update if empty config and prevent potential loop in update method.
* Ensure that the queue Add button is sensitive, even when automatically adding.
2014-08-31 14:50:55 +01:00
Calum Lind
57b594041a
[ #2493 ] [GTKUI] Fix TypeError if active workspace is None
2014-08-25 16:30:19 +01:00
Calum Lind
2df2f882e0
Use list comprehension in get_file_progress
...
Should be slightly quicker with large numbers of files.
Also moved socket import to the top as it will always be imported.
2014-08-24 11:01:37 +01:00
Calum Lind
4ad45b2d4a
No need to use get_status in Torrent class
2014-08-23 22:22:09 +01:00
Calum Lind
a9293285a0
Flake8 rencode
...
Fixes a function declared twice and a few indentation issues
2014-08-23 22:22:09 +01:00
Calum Lind
b4b58380b6
Refactor Torrent _get_pieces_info method
...
Code is now easier to read and should be a bit faster
2014-08-23 22:22:09 +01:00
Calum Lind
48f79dbfca
[GTKUI] Move 'Add Dialog' prefs to Download tab
...
Also includes more tweaks to layout for consistency and creating space.
2014-08-22 22:02:09 +01:00
Calum Lind
5c82c144cf
[GTKUI] Convert the appindicator option into a radio button
2014-08-22 22:01:23 +01:00
Calum Lind
849101950f
[GTKUI] Tidyup Preferences Dialog
...
* Remove unnessary page headers to save space
* Reordered pages to be lightly grouped
* Other changes to utilise space better
* Fixed the plugin info panel collapsing on startup
2014-08-22 17:41:19 +01:00
Calum Lind
210acf68c1
[GTKUI] Change tabs from top to left side
2014-08-22 17:41:13 +01:00
Calum Lind
6bbb9832e9
[GTKUI] Remove icons from Tabs
2014-08-22 17:40:57 +01:00
Calum Lind
1bc92ed3e3
[GTKUI] Move Piece colour chooser below checkbox
2014-08-22 17:40:25 +01:00
Calum Lind
6496383e82
[GTKUI] Reorganise layout of tab items and add Tracker tab
...
* Changed layout of Status, Details and Options tabs.
* Moved the Tracker translations to ui.common.
* Created a new Trackers tab.
* Added State to progressbar.
* Translate State in piecesbar.
2014-08-22 14:43:37 +01:00