diff --git a/debian/changelog.Debian b/debian/changelog.Debian index 2552abae..d8192acc 100644 --- a/debian/changelog.Debian +++ b/debian/changelog.Debian @@ -8,6 +8,8 @@ pve-manager (2.3-7) unstable; urgency=low * Allow to set tablet option on the GUI + * use qcow2 format as default for directory and NFS storage + * cleanup RDB GUI (remove authsupported) -- Proxmox Support Team Thu, 31 Jan 2013 07:16:13 +0100 diff --git a/www/manager/qemu/HDEdit.js b/www/manager/qemu/HDEdit.js index b12184f0..66a823c5 100644 --- a/www/manager/qemu/HDEdit.js +++ b/www/manager/qemu/HDEdit.js @@ -147,7 +147,7 @@ Ext.define('PVE.qemu.HDInputPanel', { me.formatsel = Ext.create('PVE.form.DiskFormatSelector', { name: 'diskformat', fieldLabel: gettext('Format'), - value: 'raw', + value: 'qcow2', allowBlank: false }); @@ -192,8 +192,7 @@ Ext.define('PVE.qemu.HDInputPanel', { } else if (rec.data.type === 'lvm' || rec.data.type === 'rbd' || rec.data.type === 'sheepdog' || - rec.data.type === 'nexenta' - ) { + rec.data.type === 'nexenta') { me.hdfilesel.setDisabled(true); me.hdfilesel.setVisible(false); me.formatsel.setValue('raw'); @@ -203,6 +202,7 @@ Ext.define('PVE.qemu.HDInputPanel', { } else { me.hdfilesel.setDisabled(true); me.hdfilesel.setVisible(false); + me.formatsel.setValue('qcow2'); me.formatsel.setDisabled(false); me.hdsizesel.setDisabled(false); me.hdsizesel.setVisible(true);