Feature request
Please add more selectable values to Settings > General > Split File Size.
Currently, the available options are:
The gap between 100MB and 500MB is quite large. It would be useful to add intermediate options:
Suggested change
In src/config/settings.ts, update splitFileSizes:
const splitFileSizes = [
{ value: 100 * 1024 * 1024, label: "100MB" },
{ value: 200 * 1024 * 1024, label: "200MB" },
{ value: 300 * 1024 * 1024, label: "300MB" },
{ value: 400 * 1024 * 1024, label: "400MB" },
{ value: 500 * 1024 * 1024, label: "500MB" },
{ value: 1000 * 1024 * 1024, label: "1GB" },
{ value: 2 * 1000 * 1024 * 1024, label: "2GB" },
];
Feature request
Please add more selectable values to Settings > General > Split File Size.
Currently, the available options are:
The gap between 100MB and 500MB is quite large. It would be useful to add intermediate options:
Suggested change
In
src/config/settings.ts, updatesplitFileSizes: