-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Persistent add and create torrent options #2728
Comments
@jevenski We are going straight to |
Copy that. This issue is going to my next task to accomplish. |
Can we go even deeper and explore possibility of adding "Presets" feature for "Add torrent" dialog? A preset will contain state of checkboxes, specific download directory, and label. Added presets will be available for choosing via drop-down menu or individual dynamic button in the dialog. Currently I'm hard-coding those "preset" buttons in personal fork and am finding it very convenient. |
We need to keep this simple for the first implementation. My suggestion is as follows:
We can explore the possibility of tracker list presets for "Create Torrent" in @jevenski Create torrent already has an |
Yeah, I saw that. I've implemented default options for add torrent using the As for the create torrent part, I'm still in the middle of figuring out a proper way to utilize the existing class to remember default options and populate the new dialog. Can we just mix the default options within the same class and |
Yes, you can rename the class and the functions to mix the settings all into the same class createTorrentSettings
{
public $hash = "rcreate.dat";
public $modified = false;
public $recentTrackers = array();
public $dialogCheckboxes = array();
public $pieceSize = "4MB";
} This example would require 2 additional request parameters to
|
@jevenski Please pollute the
Here's an example:
Here's the current settings object: Lines 134 to 193 in 830b3d6
|
Is your feature request related to a problem?
it saves time and is used by every user anyway
Describe the solution you'd like
Is there a way to make the check mark for add torrent fast resum stay permanently? The same with greate new torrent private torrent? Previously it worked by adding a line to the relevant js files. checked=''checked''. This no longer works with the new version.
Additional context
No response
The text was updated successfully, but these errors were encountered: