fix bug #177: allow memory up to 512GB
This commit is contained in:
parent
e1957ced9a
commit
ccb7d4baa4
5
debian/changelog.Debian
vendored
5
debian/changelog.Debian
vendored
@ -1,6 +1,9 @@
|
||||
pve-manager (2.0-64) unstable; urgency=low
|
||||
|
||||
* fix bug #179: set default button 'no' for dangerous actions
|
||||
* fix bug #179: set default button 'no' for dangerous actions, use
|
||||
warning icon for such actions
|
||||
|
||||
* fix bug #177: allow memory up to 512GB
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Tue, 24 Apr 2012 08:09:23 +0200
|
||||
|
||||
|
@ -14,7 +14,7 @@ Ext.define('PVE.openvz.RessourceInputPanel', {
|
||||
xtype: 'numberfield',
|
||||
name: 'memory',
|
||||
minValue: 32,
|
||||
maxValue: 128*1024,
|
||||
maxValue: 512*1024,
|
||||
value: '512',
|
||||
step: 32,
|
||||
fieldLabel: gettext('Memory') + ' (MB)',
|
||||
|
@ -13,7 +13,7 @@ Ext.define('PVE.qemu.MemoryInputPanel', {
|
||||
xtype: 'numberfield',
|
||||
name: 'memory',
|
||||
minValue: 32,
|
||||
maxValue: 128*1024,
|
||||
maxValue: 512*1024,
|
||||
value: '512',
|
||||
step: 32,
|
||||
fieldLabel: gettext('Memory') + ' (MB)',
|
||||
|
Loading…
Reference in New Issue
Block a user