Revision: 20844 http://sourceforge.net/p/jmol/code/20844 Author: hansonr Date: 2015-10-22 12:08:55 +0000 (Thu, 22 Oct 2015) Log Message: ----------- Jmol.___JmolVersion="14.5.0_2015.10.22"
bug fix: CIF parser fails to read CIF files containing only a single (non-loop) _struct_ref_seq_dif.align_id bug fix: WRITE .... AS does not properly allow for unquoted file name Modified Paths: -------------- trunk/Jmol/src/javajs/util/CifDataParser.java trunk/Jmol/src/org/jmol/viewer/Jmol.properties Modified: trunk/Jmol/src/javajs/util/CifDataParser.java =================================================================== --- trunk/Jmol/src/javajs/util/CifDataParser.java 2015-10-22 12:07:40 UTC (rev 20843) +++ trunk/Jmol/src/javajs/util/CifDataParser.java 2015-10-22 12:08:55 UTC (rev 20844) @@ -518,10 +518,8 @@ } Integer iField = htFields.get(fixKey(key)); i = (iField == null ? NONE : iField.intValue()); - if ((col2key[pt] = i) != NONE) { - key2col[i] = pt; - columnData[i] = data; - } + if ((col2key[pt] = i) != NONE) + columnData[key2col[i] = pt] = data; if ((s = peekToken()) == null || !s.startsWith(str0)) break; key = null; Modified: trunk/Jmol/src/org/jmol/viewer/Jmol.properties =================================================================== --- trunk/Jmol/src/org/jmol/viewer/Jmol.properties 2015-10-22 12:07:40 UTC (rev 20843) +++ trunk/Jmol/src/org/jmol/viewer/Jmol.properties 2015-10-22 12:08:55 UTC (rev 20844) @@ -64,8 +64,13 @@ TODO: working on ID for polyhedra without atom refs -Jmol.___JmolVersion="14.5.0_2015.10.21" +Jmol.___JmolVersion="14.5.0_2015.10.22" +bug fix: CIF parser fails to read CIF files containing only a single (non-loop) _struct_ref_seq_dif.align_id +bug fix: WRITE .... AS does not properly allow for unquoted file name + +JmolVersion="14.5.0_2015.10.21" + bug fix: write c:/temp..... AS PNGJ does not work without quotes that way; it should JmolVersion="14.5.0_2015.10.20" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ _______________________________________________ Jmol-commits mailing list Jmol-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jmol-commits