mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-15 07:19:39 +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
|
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 #85: allow root@pam to generate tickets for other users
|
||||||
|
|
||||||
* fix bug #86: correctly decode cookie
|
* fix bug #86: correctly decode cookie
|
||||||
|
@ -1,14 +1,25 @@
|
|||||||
Ext.define('PVE.form.CompressionSelector', {
|
Ext.define('PVE.form.CPUModelSelector', {
|
||||||
extend: 'PVE.form.KVComboBox',
|
extend: 'PVE.form.KVComboBox',
|
||||||
alias: ['widget.pveCompressionSelector'],
|
alias: ['widget.CPUModelSelector'],
|
||||||
|
|
||||||
initComponent: function() {
|
initComponent: function() {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
me.data = [
|
me.data = [
|
||||||
['', 'none'],
|
['', 'Default (qemu64)'],
|
||||||
['lzo', 'LZO (fast)'],
|
['486', '486'],
|
||||||
['gzip', 'GZIP (good)'],
|
['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();
|
me.callParent();
|
||||||
|
Loading…
Reference in New Issue
Block a user