Thomas Piccirello
a7f4ea8b18
Fix javascript errors and follow best practices
7 years ago
Thomas Piccirello
cd5a55d711
Skip username/password check for active sessions ( closes #6860 )
7 years ago
thalieht
91f528bc96
Fix coding style for several files
...
trackerlist
autoexpandabledialog
previewselect
shutdownconfirmdlg
torrentcontentfiltermodel
torrentcontenttreeview
peerlistsortmodel.h
7 years ago
Vladimir Golovnev
4d28f8f48d
Fix RSS with normal links do not work ( #7016 )
...
Fix regression of RSS code redesign.
Closes #7003 .
7 years ago
Tony Gregerson
467e516801
Add a Tags (multi-label) feature to the GUI. Closes #13 .
...
See https://github.com/qbittorrent/qBittorrent/issues/13 for details.
7 years ago
sledgehammer999
70ae05c3de
Pad shorter python versions. Closes #6877 .
7 years ago
sledgehammer999
7d030b4cd9
Drop python2 support.
7 years ago
sledgehammer999
a77e1c9f36
Use qt5 connect style for searchengine, pluginselectdlg and searchwidget.
8 years ago
sledgehammer999
dee0b63cc5
Aggregate installed/updated plugin names and use a single messagebox to inform the user.
8 years ago
sledgehammer999
c2a2d306da
Use alternative method for plugin favicon validity. Drop unnecessary code.
8 years ago
sledgehammer999
34c29b78f9
Update the backend when a new plugin favicon is downloaded.
8 years ago
sledgehammer999
8c98c8cb3f
Put copyright warning message to the search plugin dialog.
8 years ago
sledgehammer999
fc543b9db6
Display instructions when no search plugin is installed.
8 years ago
sledgehammer999
793ed7148f
Remove code that expects bundled search plugins.
8 years ago
sledgehammer999
de74f9298f
Remove all search plugins from repo.
8 years ago
sledgehammer999
4ab117d946
Remove possible double check of the same thing.
8 years ago
Eugene Shalygin
574fed04fc
Add visual feedback for wrong paths in FileSystemPathEdit
8 years ago
Vladimir Golovnev (Glassez)
66aeafdc63
Fix crash in ArticleListWidget
...
ArticleListWidget::handleArticleList() can be called inside
ArticleListWidget::handleArticleAboutToBeRemoved() and list widget
item can be removed at this point. Now we checking for it existence.
Closes #6896 .
8 years ago
Chocobo1
8419ca87f9
Fix KEEP_ALIVE_DURATION value
...
I intended to specify 7 seconds, which should be 7000 milliseconds
8 years ago
Chocobo1
45c21f62f9
[WebAPI] Convert all header name constants to lowercase
...
This save us another transition when some day we implements HTTP/2
(which all headers are in lowercase).
8 years ago
Chocobo1
cdb8f4bc61
[WebUI] relax CSRF defense. Closes #6882 .
...
Allow HTTP request which has neither Origin nor Referer header included
8 years ago
Chocobo1
087856d3d8
[WebUI]: Implement CSRF defense
...
Bump API version
8 years ago
Vladimir Golovnev (Glassez)
4021bf68f7
Use constants for article field names in RSS::Feed
8 years ago
Vladimir Golovnev (Glassez)
02f77a05dc
Improve RSS article parsing
...
Use QLatin1String for string literals.
Use predefined constants for article hash table keys.
8 years ago
Vladimir Golovnev (Glassez)
080dd79875
Store all RSS Article data in auto downloading job
8 years ago
Vladimir Golovnev (Glassez)
475348595c
Improve RSS::Article class
...
Store more RSS article fields.
Don't use legacy article field names in Parser code.
8 years ago
Eugene Shalygin
72cb868224
cmake: disable warnings for bundled QtSingleApplication
8 years ago
sledgehammer999
d3ccbe4f86
Fix format-truncation warning.
8 years ago
KingLucius
1b9882b3a3
Fetch Favicons via google
8 years ago
Chocobo1
4a4e3a13e6
Fix focusing on the previously opened dialog didn't work
...
Placing modeless dialog A on top of modeless dialog B, then open dialog B again,
the expected behavior is B on top of A.
8 years ago
Vladimir Golovnev (Glassez)
a8bcc2ee52
Fix empty statusbar showed after app restarted
8 years ago
Eugene Shalygin
74cecb1b6c
Replace C-style casts with C++ ones
8 years ago
Chocobo1
1ac7d779a7
Set expiration date for newly added cookie to +2 years from now, instead
...
of +99 years.
This fixes the ambiguity that users could assume the date was in the
past, but in fact it's in the future.
Ex. now date is 5/28/17, +99 years = 5/28/16, +2 years = 5/28/19
8 years ago
Chocobo1
a585b02e76
Enable alternatingRowColors for "Manage Cookie" dialog
...
Set editTriggers property to AllEditTriggers for easier editing.
Now a single mouse click can initiate item editing instead of double
clicking.
8 years ago
Chocobo1
d8083dd985
Allow to select & delete multiple entries in "Manage Cookies" dialog
8 years ago
Noam Gal
bd90614413
Get more RSS article data
8 years ago
KingLucius
dedd31ada5
Fix crash when delete RSS feed
8 years ago
Chocobo1
c618214061
[TorrentCreator] Show number of pieces. Closes #6774 .
8 years ago
Eugene Shalygin
6d9eec0e71
Fix crash in download piece bar
...
When torrent size is smaller than the image width, bytes per pixel was
set to zero and code was crashing. Set it to -1 instead, as we do when
image is empty. This will disable highliting, but our algorithm does not
work in this case anyway.
8 years ago
Vladimir Golovnev (Glassez)
c456b9a42c
Refactor and improve StatusBar
8 years ago
Chocobo1
3933790bda
Add new webUI API. Closes #6457 .
...
Now getting piece information for a specific torrent is possible via:
* Returns an array of states (integers) of pieces in order. Defined as:
"0=not downloaded", "1=downloading", "2=downloaded".
GET /query/getPieceStates/<torrent_hash>
* Returns an array of hashes (strings) of pieces in order:
GET /query/getPieceHashes/<torrent_hash>
8 years ago
takiz
0940a8a764
Add show/hide statusbar option
8 years ago
Chocobo1
f35a5c8085
[WebUI] Make cookie parsing robust
...
Previously cookie name such as "<any string>SID" will be mistakenly
accepted as "SID" session ID, this commit fixes it.
Use QString::isEmpty()
8 years ago
Chocobo1
712e6a0e5c
Refactor out helper function Utils::String::unquote
...
Remove redundant include
8 years ago
Chocobo1
7eed1a108e
Rename variables
...
Add myself to authors list
8 years ago
Chocobo1
7e87eeb2d4
Use QThread::requestInterruption() instead of m_abort flag
8 years ago
Chocobo1
60524348f0
Enlarge combobox to fix its contents
8 years ago
Chocobo1
9f2fe2b678
Move CachedSettingValue instances to header file
8 years ago
Chocobo1
a4141fd151
Simplify m_creatorThread initialization
8 years ago
Chocobo1
7de1aba092
Switch to modeless dialog
...
Don't close dialog after creating torrent
Show progress bar all the time
8 years ago