Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pve-manager
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
pve-manager
Commits
58d6726f
Commit
58d6726f
authored
Feb 18, 2013
by
Dietmar Maurer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use qcow2 as default format
parent
4aa1ae60
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
changelog.Debian
debian/changelog.Debian
+2
-0
HDEdit.js
www/manager/qemu/HDEdit.js
+3
-3
No files found.
debian/changelog.Debian
View file @
58d6726f
...
...
@@ -8,6 +8,8 @@ pve-manager (2.3-7) unstable; urgency=low
* Allow to set tablet option on the GUI
* use qcow2 format as default for directory and NFS storage
* cleanup RDB GUI (remove authsupported)
-- Proxmox Support Team <support@proxmox.com> Thu, 31 Jan 2013 07:16:13 +0100
...
...
www/manager/qemu/HDEdit.js
View file @
58d6726f
...
...
@@ -147,7 +147,7 @@ Ext.define('PVE.qemu.HDInputPanel', {
me
.
formatsel
=
Ext
.
create
(
'
PVE.form.DiskFormatSelector
'
,
{
name
:
'
diskformat
'
,
fieldLabel
:
gettext
(
'
Format
'
),
value
:
'
raw
'
,
value
:
'
qcow2
'
,
allowBlank
:
false
});
...
...
@@ -192,8 +192,7 @@ Ext.define('PVE.qemu.HDInputPanel', {
}
else
if
(
rec
.
data
.
type
===
'
lvm
'
||
rec
.
data
.
type
===
'
rbd
'
||
rec
.
data
.
type
===
'
sheepdog
'
||
rec
.
data
.
type
===
'
nexenta
'
)
{
rec
.
data
.
type
===
'
nexenta
'
)
{
me
.
hdfilesel
.
setDisabled
(
true
);
me
.
hdfilesel
.
setVisible
(
false
);
me
.
formatsel
.
setValue
(
'
raw
'
);
...
...
@@ -203,6 +202,7 @@ Ext.define('PVE.qemu.HDInputPanel', {
}
else
{
me
.
hdfilesel
.
setDisabled
(
true
);
me
.
hdfilesel
.
setVisible
(
false
);
me
.
formatsel
.
setValue
(
'
qcow2
'
);
me
.
formatsel
.
setDisabled
(
false
);
me
.
hdsizesel
.
setDisabled
(
false
);
me
.
hdsizesel
.
setVisible
(
true
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment