Skip to content

ExternData 1.0.4

Compare
Choose a tag to compare
@tbeu tbeu released this 10 Sep 08:28
· 505 commits to master since this release

Changelog

  • Added experimental MinGW compiler support.
  • Fixed documentation typos.
  • Fixed array read out-of-bound errors in XML files.
  • Generalize array format in XML files (#3). See XMLTest6 example and test.xml. Where previously arrays had to be one tag value, e.g.,
    <table>[0,0;1,1]</table> now arrays can be given like <table><row>0,0</row><row>1,1</row></table> or <table><val>0</val><val>0</val><val>1</val><val>1</val></table>.