diff --git a/debian/changelog.Debian b/debian/changelog.Debian index d0c6eaf7..64510e4c 100644 --- a/debian/changelog.Debian +++ b/debian/changelog.Debian @@ -3,6 +3,8 @@ pve-manager (2.2-22) unstable; urgency=low * vzdump: also run 'backup-start' hook in snapshot mode * update openvz appliance list + + * add win8 to OS type selector -- Proxmox Support Team Fri, 12 Oct 2012 06:07:12 +0200 diff --git a/www/manager/Utils.js b/www/manager/Utils.js index ef593862..c54c7f8b 100644 --- a/www/manager/Utils.js +++ b/www/manager/Utils.js @@ -113,6 +113,7 @@ Ext.define('PVE.Utils', { statics: { w2k: 'Microsoft Windows 2000', w2k8: 'Microsoft Windows Vista/2008', win7: 'Microsoft Windows 7/2008r2', + win8: 'Microsoft Windows 8/2012', l24: 'Linux 2.4 Kernel', l26: 'Linux 3.X/2.6 Kernel' }, diff --git a/www/manager/qemu/OSTypeEdit.js b/www/manager/qemu/OSTypeEdit.js index 1b880baf..d29ea1ed 100644 --- a/www/manager/qemu/OSTypeEdit.js +++ b/www/manager/qemu/OSTypeEdit.js @@ -11,6 +11,11 @@ Ext.define('PVE.qemu.OSTypeInputPanel', { html: 'Microsoft Windows', cls:'x-form-check-group-label' }, + { + xtype: 'radiofield', + name: 'ostype', + inputValue: 'win8' + }, { xtype: 'radiofield', name: 'ostype',