mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-15 03:12:58 +00:00
cleanups
This commit is contained in:
parent
940e4d9ea6
commit
efb38000c7
8
debian/changelog.Debian
vendored
8
debian/changelog.Debian
vendored
@ -1,5 +1,13 @@
|
||||
pve-manager (2.0-20) unstable; urgency=low
|
||||
|
||||
* improve user management
|
||||
|
||||
* implement permission checks
|
||||
|
||||
* improve backup GUI (allow to select lzo/gzip)
|
||||
|
||||
* add pools to resource list
|
||||
|
||||
* fix bug #85: allow root@pam to generate tickets for other users
|
||||
|
||||
* fix bug #86: correctly decode cookie
|
||||
|
@ -1,14 +1,25 @@
|
||||
Ext.define('PVE.form.CompressionSelector', {
|
||||
Ext.define('PVE.form.CPUModelSelector', {
|
||||
extend: 'PVE.form.KVComboBox',
|
||||
alias: ['widget.pveCompressionSelector'],
|
||||
alias: ['widget.CPUModelSelector'],
|
||||
|
||||
initComponent: function() {
|
||||
var me = this;
|
||||
|
||||
me.data = [
|
||||
['', 'none'],
|
||||
['lzo', 'LZO (fast)'],
|
||||
['gzip', 'GZIP (good)'],
|
||||
['', 'Default (qemu64)'],
|
||||
['486', '486'],
|
||||
['athlon', 'athlon'],
|
||||
['core2duo', 'core2duo'],
|
||||
['coreduo', 'coreduo'],
|
||||
['kvm32', 'kvm32'],
|
||||
['kvm64', 'kvm64'],
|
||||
['pentium', 'pentium'],
|
||||
['pentium2', 'pentium2'],
|
||||
['pentium3', 'pentium3'],
|
||||
['phenom', 'phenom'],
|
||||
['qemu32', 'qemu32'],
|
||||
['qemu64', 'qemu64'],
|
||||
['host', 'host']
|
||||
];
|
||||
|
||||
me.callParent();
|
||||
|
Loading…
Reference in New Issue
Block a user