mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-07 16:47:46 +00:00
use qcow2 as default format
This commit is contained in:
parent
23f92e9457
commit
58d462efee
2
debian/changelog.Debian
vendored
2
debian/changelog.Debian
vendored
@ -8,6 +8,8 @@ pve-manager (2.3-7) unstable; urgency=low
|
|||||||
|
|
||||||
* Allow to set tablet option on the GUI
|
* Allow to set tablet option on the GUI
|
||||||
|
|
||||||
|
* use qcow2 format as default for directory and NFS storage
|
||||||
|
|
||||||
* cleanup RDB GUI (remove authsupported)
|
* cleanup RDB GUI (remove authsupported)
|
||||||
|
|
||||||
-- Proxmox Support Team <support@proxmox.com> Thu, 31 Jan 2013 07:16:13 +0100
|
-- Proxmox Support Team <support@proxmox.com> Thu, 31 Jan 2013 07:16:13 +0100
|
||||||
|
@ -147,7 +147,7 @@ Ext.define('PVE.qemu.HDInputPanel', {
|
|||||||
me.formatsel = Ext.create('PVE.form.DiskFormatSelector', {
|
me.formatsel = Ext.create('PVE.form.DiskFormatSelector', {
|
||||||
name: 'diskformat',
|
name: 'diskformat',
|
||||||
fieldLabel: gettext('Format'),
|
fieldLabel: gettext('Format'),
|
||||||
value: 'raw',
|
value: 'qcow2',
|
||||||
allowBlank: false
|
allowBlank: false
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -192,8 +192,7 @@ Ext.define('PVE.qemu.HDInputPanel', {
|
|||||||
} else if (rec.data.type === 'lvm' ||
|
} else if (rec.data.type === 'lvm' ||
|
||||||
rec.data.type === 'rbd' ||
|
rec.data.type === 'rbd' ||
|
||||||
rec.data.type === 'sheepdog' ||
|
rec.data.type === 'sheepdog' ||
|
||||||
rec.data.type === 'nexenta'
|
rec.data.type === 'nexenta') {
|
||||||
) {
|
|
||||||
me.hdfilesel.setDisabled(true);
|
me.hdfilesel.setDisabled(true);
|
||||||
me.hdfilesel.setVisible(false);
|
me.hdfilesel.setVisible(false);
|
||||||
me.formatsel.setValue('raw');
|
me.formatsel.setValue('raw');
|
||||||
@ -203,6 +202,7 @@ Ext.define('PVE.qemu.HDInputPanel', {
|
|||||||
} else {
|
} else {
|
||||||
me.hdfilesel.setDisabled(true);
|
me.hdfilesel.setDisabled(true);
|
||||||
me.hdfilesel.setVisible(false);
|
me.hdfilesel.setVisible(false);
|
||||||
|
me.formatsel.setValue('qcow2');
|
||||||
me.formatsel.setDisabled(false);
|
me.formatsel.setDisabled(false);
|
||||||
me.hdsizesel.setDisabled(false);
|
me.hdsizesel.setDisabled(false);
|
||||||
me.hdsizesel.setVisible(true);
|
me.hdsizesel.setVisible(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user