mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-05 07:06:01 +00:00

This patch adds the zstd to the compression selection for backup on the GUI and add .zst to the backup file filter. Including zstd as package install dependency. Signed-off-by: Alwin Antreich <a.antreich@proxmox.com>
11 lines
385 B
JavaScript
11 lines
385 B
JavaScript
Ext.define('PVE.form.CompressionSelector', {
|
|
extend: 'Proxmox.form.KVComboBox',
|
|
alias: ['widget.pveCompressionSelector'],
|
|
comboItems: [
|
|
['0', Proxmox.Utils.noneText],
|
|
['lzo', 'LZO (' + gettext('fast') + ')'],
|
|
['gzip', 'GZIP (' + gettext('good') + ')'],
|
|
['zstd', 'ZSTD (' + gettext('better') + ')'],
|
|
]
|
|
});
|