Skip to content

Commit

Permalink
Add support for Asta 13.0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joniles committed Mar 23, 2018
1 parent 4ed63de commit fd9796f
Show file tree
Hide file tree
Showing 3 changed files with 848 additions and 0 deletions.
1 change: 1 addition & 0 deletions maven/src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<body>
<release date="git master" version="7.4.0">
<action dev="joniles" type="add">Added support for reading Primavera SureTrak databases from directories, zip files, and STX files.</action>
<action dev="joniles" type="add">Added support for PP files generated by Asta Powerproject from version 13.0.0.1</action>
</release>
<release date="12/03/2018" version="7.3.0">
<action dev="joniles" type="add">Added support for reading Primavera P3 databases from directories, zip files, and PRX files.</action>
Expand Down
1 change: 1 addition & 0 deletions src/net/sf/mpxj/asta/AstaTextFileReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ private List<Row> getTable(String name)
FILE_VERSION_MAP.put(Integer.valueOf(11004), FileFormat11004.class); // EasyProject 5 and PowerProject 11
FILE_VERSION_MAP.put(Integer.valueOf(12002), FileFormat12002.class); // PowerProject 12.0.0.2
FILE_VERSION_MAP.put(Integer.valueOf(12005), FileFormat12005.class); // PowerProject 12
FILE_VERSION_MAP.put(Integer.valueOf(13001), FileFormat13001.class); // PowerProject 13
FILE_VERSION_MAP.put(Integer.valueOf(13004), FileFormat13004.class); // PowerProject 13
}
}
Loading

0 comments on commit fd9796f

Please sign in to comment.