Skip to content

Commit

Permalink
add support Navisworks Simulate
Browse files Browse the repository at this point in the history
  • Loading branch information
chuongmep committed Jan 30, 2023
1 parent e8e0611 commit 9885d8e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
- 2023-01-30 **1.0.8**
- Add support for Platform Navisworks Simulate, See detail at [Differences between Navisworks Manage and Navisworks Simulate](https://knowledge.autodesk.com/support/navisworks-products/troubleshooting/caas/sfdcarticles/sfdcarticles/Functionality-differences-between-Navisworks-Manage-and-Simulate.html)
- 2022-12-21 **1.0.7**
- Fix issue load relative path with window parallel macOS.
- 2022-10-11 **1.0.6**
Expand Down
2 changes: 1 addition & 1 deletion Installer/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
const string projectName = "NavisAddinManager";
const string outputName = "NavisAddinManager";
const string outputDir = "output";
const string version = "1.0.7";
const string version = "1.0.8";
const string xmlName = "PackageContents.xml";
var fileName = new StringBuilder().Append(outputName).Append("-").Append(version);
var project = new Project
Expand Down
8 changes: 4 additions & 4 deletions NavisAddinManager/PackageContents.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<ApplicationPackage SchemaVersion="1.0" Name="AddinManager" AppVersion="1.0.0.0" ProductType="Application" Author="ADSK" ProductCode="{0F2CB7C0-2F97-424C-B8DA-0E8233972A7E}">
<Components Description="Navisworks 2020 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw17" SeriesMax="Nw17" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw17" SeriesMax="Nw17" />
<ComponentEntry AppName="AddinManager" AppType="ManagedPlugin" ModuleName="./Contents/2020/NavisAddinManager.dll" />
</Components>
<Components Description="Navisworks 2021 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw18" SeriesMax="Nw18" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw18" SeriesMax="Nw18" />
<ComponentEntry AppName="AddinManager" AppType="ManagedPlugin" ModuleName="./Contents/2021/NavisAddinManager.dll" />
</Components>
<Components Description="Navisworks 2022 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw19" SeriesMax="Nw19" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw19" SeriesMax="Nw19" />
<ComponentEntry AppName="AddinManager" AppType="ManagedPlugin" ModuleName="./Contents/2022/NavisAddinManager.dll" />
</Components>
<Components Description="Navisworks 2023 parts">
<RuntimeRequirements OS="Win64" Platform="NAVMAN" SeriesMin="Nw20" SeriesMax="Nw20" />
<RuntimeRequirements OS="Win64" Platform="NAVMAN|NAVSIM" SeriesMin="Nw20" SeriesMax="Nw20" />
<ComponentEntry AppName="AddinManager" AppType="ManagedPlugin" ModuleName="./Contents/2023/NavisAddinManager.dll" />
</Components>
</ApplicationPackage>

0 comments on commit 9885d8e

Please sign in to comment.