Skip to content

Commit e164324

Browse files
author
Wawan Solihin
committed
Finalize relase 20.3.0.0
1 parent 03c6f46 commit e164324

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

Install/Program Files to Install/bundle/Contents/Resources/ADSKIFCExporterHelp.htm

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,10 +241,10 @@ <h2 id="VersionHistory" name="VersionHistory">Version History</h2>
241241
<br>
242242
<div class="row">
243243
<div class="column">
244-
<img width=300 src="Software Certifcation Certificate Revit - Architectural export ER.png" alt=Icon>
244+
<img width=300 src="Software Certification Certificate Revit - Architectural export ER.png" alt=Icon>
245245
</div>
246246
<div class="column">
247-
<img width=300 src="Software Certifcation Certificate Revit - Structural export ER.png" alt=Icon>
247+
<img width=300 src="Software Certification Certificate Revit - Structural export ER.png" alt=Icon>
248248
</div>
249249
</div>
250250

Install/RevitIFCSetupWix/Product.wxs

+6
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@
202202
<Component Id = "COMP_IFC_16_PNG" Guid="E6CF83A5-A19C-4190-9A88-D54C390A6971">
203203
<File Id ="FILE_IFC_16_PNG" Name="IFCExporter_16.png" Source="$(var.ProjectDir)..\Program Files to Install\bundle\Contents\Resources\IFCExporter_16.png" KeyPath="yes" />
204204
</Component>
205+
<Component Id = "COMP_IFC4RV_A_CERT" Guid="EDC0912A-5AA0-44D6-8272-E8BBB4A99B3B">
206+
<File Id ="FILE_IFC4RV_A_CERT" Name="Software Certification Certificate Revit - Architectural export ER.png" Source="$(var.ProjectDir)..\Program Files to Install\bundle\Contents\Resources\Software Certification Certificate Revit - Architectural export ER.png" KeyPath="yes" />
207+
</Component>
208+
<Component Id = "COMP_IFC4RV_S_CERT" Guid="0D2A0278-2D37-4C20-89C0-5D68AD4A06B3">
209+
<File Id ="FILE_IFC4RV_S_CERT" Name="Software Certification Certificate Revit - Structural export ER.png" Source="$(var.ProjectDir)..\Program Files to Install\bundle\Contents\Resources\Software Certification Certificate Revit - Structural export ER.png" KeyPath="yes" />
210+
</Component>
205211
</ComponentGroup>
206212

207213
<ComponentGroup Id="ProductFRFiles" Directory="INSTALLFRUI">

Source/Revit.IFC.Common/Utility/IfcSchemaEntityNode.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public bool IsSubTypeOf(string superTypeName, bool strict = true)
144144
if (superTypeName.Equals(node.superType.Name, StringComparison.InvariantCultureIgnoreCase))
145145
{
146146
return true;
147-
}
147+
}
148148
}
149149
else
150150
{

Source/Revit.IFC.Export/Exporter/Exporter.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ protected void ExportAdvanceSteelElements(ExporterIFC exporterIFC, Autodesk.Revi
238238
{
239239
try
240240
{
241-
Assembly assembly = Assembly.LoadFrom(AppDomain.CurrentDomain.BaseDirectory + @"\Addins\SteelConnections\Autodesk.SteelConnections.ASIFC.dll");
241+
Assembly assembly = Assembly.LoadFrom(AppDomain.CurrentDomain.BaseDirectory + @"\Addins\SteelConnections\RvtAS_IFC.dll");
242242
if (assembly != null)
243243
{
244-
Type type = assembly.GetType("Autodesk.SteelConnections.ASIFC.ASExporter");
244+
Type type = assembly.GetType("RvtAS_IFC.ASExporter");
245245
if (type != null)
246246
{
247247
MethodInfo method = type.GetMethod("ExportASElements");
@@ -578,7 +578,7 @@ protected virtual bool CanExportElement(ExporterIFC exporterIFC, Autodesk.Revit.
578578
if (graphicsCell != null) // Concrete elements with cell that have HasGraphics set to true, must be handled by Revit exporter.
579579
hasGraphics = (bool)graphicsCell.GetValue(cell, null);
580580

581-
if (hasGraphics)
581+
if (!hasGraphics)
582582
return false;
583583
}
584584
}

0 commit comments

Comments
 (0)