Maksim Derbasov
597444c527
Make GeoIPDatabase interface safer
...
PR #17899 .
2 years ago
Chocobo1
1c2dc79f51
Introduce color palettes for both dark, light themes
...
This commit introduce color palettes from Primer and make use of it in various widgets.
Primer system is chosen due to well designed and is highly rated on Github (in terms of
Github stars).
https://primer.style/
PR #17798 .
2 years ago
Chocobo1
106adf135c
Handle all types of alerts on shutdown
...
There might be alerts already queued in buffer waiting to be handled at
the time of pausing the session, so don't skip over them.
2 years ago
Chocobo1
dcfd367ff8
Merge pull request #17885 from Chocobo1/shutdown
...
Revise "save resume data" handling on shutdown
2 years ago
Chocobo1
67ee43fac1
Merge pull request #17878 from Chocobo1/webui
...
WebUI: handle drag and drop events
2 years ago
Chocobo1
a325ab8d6e
Delay saving session statistics
...
Pausing the libtorrent session should be scheduled before this.
2 years ago
Chocobo1
c94152c47c
Reuse alert dispatcher
...
Instead of using a specific alert handler in `SessionImpl::saveResumeData()`, reuse the generic
one.
2 years ago
Chocobo1
a44bca3f07
Revise "save resume data" handling on shutdown
...
When shutting down, instead of waiting for all types of alert from
libtorrent, now it only waits for specific alert types. This potentially
help shorten the shutdown waiting time.
2 years ago
thalieht
698284f00e
Allow to set torrent stop condition in WebUI
...
PR #17876 .
2 years ago
Chocobo1
3b9d68f344
WebUI: handle drag and drop events
...
This allows user to drag and drop .torrent files and URL links onto the
main window and will open the respective dialog.
Dropping folders are not supported due to technical reasons.
Closes #6038 .
2 years ago
tristanleboss
e028d8085b
Add a "Moving" status filter
...
Because sometime (when your save and download path are on different drives, when your disk drive is super busy, ...) move operations can stack up, I add this "Moving" status filter so you can see in a blink of the eye which torrents are in a move state.
PR #17810 .
2 years ago
Chocobo1
af1c97e2ea
WebUI: filter file selection to bittorrent files
...
Note that the user can still overwrite the selection filter and select
other files.
2 years ago
Chocobo1
b95d97d07b
WebUI: simplify attribute usage
...
The `multiple` attribute is a boolean value and its presence equals to
`true`.
2 years ago
schnurlos
17a5bd03c5
NSIS: update German translation
...
Adding Windows 10 requirement.
PR #17860 .
2 years ago
Ícaro
ada594faf3
NSIS: update Portuguese BR translation
...
PR #17857 .
2 years ago
Vladimir Golovnev
4f0990dc29
Use 'fail if exist' strategy on automatic move
...
Prevent existing files overwriting when torrent is moved automatically (e.g. when moved from incomplete to final save path).
PR #17855 .
2 years ago
Chocobo1
f66ec4430d
Merge pull request #17858 from Chocobo1/infohash
...
Show N/A when there is no hash
2 years ago
Vladimir Golovnev
67357e9964
Allow to set torrent stop condition
...
PR #17814 .
Closes #17792 .
Closes #929 .
(Actually it should close all issues about lack of ability to stop torrent after metadata downloaded or after files are initially checked.)
Also makes explicit the temporary start of the torrent in the case when recheck of the stopped torrent is performed.
2 years ago
Chocobo1
7eb97348de
GHA CI: add missing Qt module
2 years ago
Chocobo1
0279b80b46
Don't use hardcoded URL scheme list
...
This is to avoid the list being outdated.
2 years ago
Chocobo1
d3936c07c7
Capitalize header title
...
This is the only one not properly capitalized.
2 years ago
Chocobo1
aa022400f7
Use Path internal representation for internal value in model
...
The internal value is used for sorting comparisons and not displayed
to the user, so make a shortcut.
2 years ago
Chocobo1
66795d533a
Show 'N/A' when there is no hash
...
This is to follow 'General' tab which show 'N/A' when there is no hash.
2 years ago
Chocobo1
ce7d8dee28
Merge pull request #17829 from Chocobo1/focus
...
Set proper focus on widget
2 years ago
Chocobo1
1f799689ed
Support 'file exists' situation
...
The lt::status_t::file_exist is returned when lt::move_flags_t::fail_if_exist is used, which means the whole move operation failed. So hanlde this condition correctly (even if the fail_if_exist isn't used in the code base currently).
PR #17853 .
2 years ago
sledgehammer999
3463442631
Merge pull request #17835 from RockyTDR/patch-1
...
NSIS: Update Dutch translation
2 years ago
sledgehammer999
c35ca52b00
Merge pull request #17834 from maboroshin/master
...
NSIS: Update Japanese translation
2 years ago
sledgehammer999
6d501c2e6e
Merge pull request #17828 from PriitUring/NSIS-Estonian
...
NSIS: Update Estonian translation
2 years ago
tristanleboss
a71d7e6557
Add infohash and download path columns
...
PR #17799 .
2 years ago
Chocobo1
30c2f9d9f3
Merge pull request #17830 from Chocobo1/trackers
...
Fix wrong 'tracker error' count
2 years ago
Andrei Stepanov
544f9675c6
NSIS: Update Russian translation
...
PR #17827 .
2 years ago
Thomas De Rocker
0c76321a6a
Update dutch.nsi
...
Translate new strings and polish existing strings
2 years ago
maboroshin
10349b84d6
Update japanese.nsi
2 years ago
Chocobo1
6fa4305aba
Fix wrong 'tracker error' count
...
This happens when a torrent contains some tracker URLs that share the same domain.
Closes #17808 .
2 years ago
Chocobo1
d9af207a11
GHA CI: add missing cmake flag for Qt6
2 years ago
vlakoff
ad59eb4dfc
Revert "Consider brackets within wildcard as regular characters"
...
The implementation appeared to be broken.
This reverts #16965 .
PR #17820 .
2 years ago
Priit Uring
874b015b20
NSIS: Update Estonian translation
2 years ago
Chocobo1
21aabfdcb5
Clean up code
2 years ago
Vladimir Golovnev
e7370d1a0f
Don't pollute move queue by torrents w/o metadata
...
There's really nothing to move if the torrent still doesn't have metadata.
Additionally, such torrents in the queue can lead to unexpected behavior
when reloading the torrent after metadata is received.
PR #17823 .
2 years ago
Chocobo1
855f727451
Set proper focus on widget
...
And also allow keyboard tabbing to the Browse button.
Fix up 6ab35512da
.
2 years ago
Chocobo1
3b0ac0962e
Merge pull request #17817 from Chocobo1/modules
...
GHA CI: only install required Qt components
2 years ago
sledgehammer999
617dedc464
Merge pull request #17812 from sledgehammer999/nsis_refactor
...
NSIS refactoring
2 years ago
Chocobo1
8b4a0da235
GHA CI: bump Qt version to 6.4.0
2 years ago
Chocobo1
dcc5206e3d
GHA CI: only install required Qt components
...
So it won't waste time download/install unused Qt components.
2 years ago
Chocobo1
9a81cbf4c0
Improve column updates granularity
...
PR #17806 .
2 years ago
xavier2k6
d96ed5f4a4
GHA CI: Bump Windows/macOS `Qt6` version to `6.4.0`
...
Suppressed gnu-zero-variadic-macro-arguments warning on macOS (Qt6 only).
PR #17801 .
2 years ago
sledgehammer999
102b6c32eb
NSIS: Refactor configuration to ease installer creation via scripting
2 years ago
sledgehammer999
2af1e1874e
NSIS: Require Windows 10 1809 for Qt6 builds
...
Also refactor the config.nsi with more defines that control the build.
Closes #17783
2 years ago
sledgehammer999
680455a21b
NSIS: Drop hardcoded qt's translation filenames
2 years ago
Vladimir Golovnev
b568cdb1aa
Correctly load state of use download folder
...
PR #17807 .
Closes #17793 .
2 years ago