Revision: 21269
          http://sourceforge.net/p/jmol/code/21269
Author:   hansonr
Date:     2016-10-18 04:02:03 +0000 (Tue, 18 Oct 2016)
Log Message:
-----------
Jmol.___JmolVersion="14.6.4_2016.10.17"

bug fix: IDTF exporter broken in Jmol 14.6.4_2016.10.02

Modified Paths:
--------------
    branches/v14_6/Jmol/src/org/jmol/export/_IdtfExporter.java
    branches/v14_6/Jmol/src/org/jmol/viewer/Jmol.properties
    trunk/Jmol/src/org/jmol/export/_IdtfExporter.java
    trunk/Jmol/src/org/jmol/viewer/Jmol.properties

Modified: branches/v14_6/Jmol/src/org/jmol/export/_IdtfExporter.java
===================================================================
--- branches/v14_6/Jmol/src/org/jmol/export/_IdtfExporter.java  2016-10-15 
16:12:09 UTC (rev 21268)
+++ branches/v14_6/Jmol/src/org/jmol/export/_IdtfExporter.java  2016-10-18 
04:02:03 UTC (rev 21269)
@@ -598,7 +598,7 @@
     int[][] faces = new int[nFaces][3];
     for (int i = 0, p = 0; i < nFaces; i++)
       for (int j = 0; j < 3; j++)
-        faces[i][j] = f[++p];
+        faces[i][j] = f[p++];
     V3[] vertexes = new V3[vertexCount];
     for (int i = 0; i < vertexCount;i++)
       vertexes[i] = Geodesic.getVertexVector(i);

Modified: branches/v14_6/Jmol/src/org/jmol/viewer/Jmol.properties
===================================================================
--- branches/v14_6/Jmol/src/org/jmol/viewer/Jmol.properties     2016-10-15 
16:12:09 UTC (rev 21268)
+++ branches/v14_6/Jmol/src/org/jmol/viewer/Jmol.properties     2016-10-18 
04:02:03 UTC (rev 21269)
@@ -6,8 +6,13 @@
 
 # see also http://chemapps.stolaf.edu/jmol/zip for daily updates       
 
-Jmol.___JmolVersion="14.6.4_2016.10.15"
 
+Jmol.___JmolVersion="14.6.4_2016.10.17"
+
+bug fix: IDTF exporter broken in Jmol 14.6.4_2016.10.02
+
+JmolVersion="14.6.4_2016.10.15"
+
 bug fix: (JSmolJavaExt.js) JSmol/HTML5  WRITE xxx.stl not working.
 bug fix: STL export can place two endcaps in the same location
 

Modified: trunk/Jmol/src/org/jmol/export/_IdtfExporter.java
===================================================================
--- trunk/Jmol/src/org/jmol/export/_IdtfExporter.java   2016-10-15 16:12:09 UTC 
(rev 21268)
+++ trunk/Jmol/src/org/jmol/export/_IdtfExporter.java   2016-10-18 04:02:03 UTC 
(rev 21269)
@@ -598,7 +598,7 @@
     int[][] faces = new int[nFaces][3];
     for (int i = 0, p = 0; i < nFaces; i++)
       for (int j = 0; j < 3; j++)
-        faces[i][j] = f[++p];
+        faces[i][j] = f[p++];
     V3[] vertexes = new V3[vertexCount];
     for (int i = 0; i < vertexCount;i++)
       vertexes[i] = Geodesic.getVertexVector(i);

Modified: trunk/Jmol/src/org/jmol/viewer/Jmol.properties
===================================================================
--- trunk/Jmol/src/org/jmol/viewer/Jmol.properties      2016-10-15 16:12:09 UTC 
(rev 21268)
+++ trunk/Jmol/src/org/jmol/viewer/Jmol.properties      2016-10-18 04:02:03 UTC 
(rev 21269)
@@ -47,8 +47,12 @@
  -- sets the echo offset to a specific screen pixel offset
  -- TODO not saved in state
 
-Jmol.___JmolVersion="14.7.4_2016.10.15"
+Jmol.___JmolVersion="14.7.4_2016.10.17"
 
+bug fix: IDTF exporter broken in Jmol 14.7.4_2016.10.02
+
+JmolVersion="14.7.4_2016.10.15"
+
 bug fix: (JSmolJavaExt.js) JSmol/HTML5  WRITE xxx.stl not working.
 bug fix: STL export can place two endcaps in the same location
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Jmol-commits mailing list
Jmol-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-commits

Reply via email to