]> git.proxmox.com Git - pve-manager-legacy.git/commitdiff
ui: switch backup default compression selection to ZSTD
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 6 May 2020 18:16:39 +0000 (20:16 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 6 May 2020 18:16:39 +0000 (20:16 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
www/manager6/dc/Backup.js
www/manager6/form/CompressionSelector.js
www/manager6/window/Backup.js

index 28275f01f1cc3ff05f658863b7339aed80f75710..862c070188cb40d9e11e3177a2f7ca16b7b39d76 100644 (file)
@@ -207,7 +207,7 @@ Ext.define('PVE.dc.BackupEdit', {
                fieldLabel: gettext('Compression'),
                name: 'compress',
                deleteEmpty: me.isCreate ? false : true,
-               value: 'lzo'
+               value: 'zstd'
            },
            {
                xtype: 'pveBackupModeSelector',
index 842b7710574ba95dd2deac42e0173391190644b1..497641244cd24a45011edccadaf757a07178dc64 100644 (file)
@@ -5,6 +5,6 @@ Ext.define('PVE.form.CompressionSelector', {
                 ['0', Proxmox.Utils.noneText],
                 ['lzo', 'LZO (' + gettext('fast') + ')'],
                 ['gzip', 'GZIP (' + gettext('good') + ')'],
-                ['zstd', 'ZSTD (' + gettext('better') + ')'],
+                ['zstd', 'ZSTD (' + gettext('fast and good') + ')'],
     ]
 });
index bb694ba80549d0485c119358177fee3144d0490f..847a56bd99235f390dc957fb22c6ea9242202ed6 100644 (file)
@@ -45,7 +45,7 @@ Ext.define('PVE.window.Backup', {
                {
                    xtype: 'pveCompressionSelector',
                    name: 'compress',
-                   value: 'lzo',
+                   value: 'zstd',
                    fieldLabel: gettext('Compression')
                },
                {