1
1
 
=====================================
2
 
-
Version 0.2 released Mar 31, 2011
 
2
+
Version 1.0.0 released July 31, 2011
3
3
 
=====================================
4
 
-
Change command syntax to have the Target-object before the created object.
5
 
-
    E.g., CREATE /GroupA/Dataset2 KiloToMile {{0.60}};
6
 
-
The following keywords are now optional:
7
 
-
    DATASET, DATATYPE, DATASPACE, DATA, SCALAR, SIMPLE.
8
 
-
Command syntax are greatly simplified by having default values:
9
 
-
    If target object type is not specified, default value is DATASET.
10
 
-
    If datatype is not specified, default value is Native Float.
11
 
-
    If dataspace is not specified, default value is SCALAR.
12
 
-
    E.g., CREATE /GroupA/Dataset2 KiloToMile {{0.60}};
13
 
-
    means to create in dataset /GroupA/Dataset2 a scalar native float type
14
 
-
    attribute with the value of 0.60.
 
4
+
Added support to accept command syntax having the Target-object and attribute
 
5
+
names given as one name separated by slash (/). H5edit will first treat it as
 
6
+
a dataset attribute. If dataset is not found, will try it as a group
 
7
+
attribute.
 
8
+
    E.g.,
 
9
+
    CREATE /GroupA/Dataset2/KiloToMile {{0.60}};
 
10
+
        is the same as
 
11
+
        CREATE /GroupA/Dataset2 KiloToMile {{0.60}};
15
12
 
16
13
 
Platforms Supported:
17
14
 
Linux 2.6 32bit and 64bits
18
15
 
Linux 2.6 on PowerPC
19
16
 
SunOS 5.10
20
 
-
AIX 6.1
21
 
-