fix bug #177: allow memory up to 512GB

This commit is contained in:
Dietmar Maurer 2012-04-24 09:15:19 +02:00
parent e1957ced9a
commit ccb7d4baa4
3 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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)',

View File

@ -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)',