Skip to content

[FEATURE] Add more options for multipart upload split file size #37

Description

@minhhungtsbd

Feature request

Please add more selectable values to Settings > General > Split File Size.

Currently, the available options are:

  • 100MB
  • 500MB
  • 1GB
  • 2GB

The gap between 100MB and 500MB is quite large. It would be useful to add intermediate options:

  • 200MB
  • 300MB
  • 400MB

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" },
];

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions