Skip to content

Commit

Permalink
Merge pull request #80 from arup-group/bugfix/GSAGH-333-Perimiter-ToS…
Browse files Browse the repository at this point in the history
…tring-method-produces-incorrect-output

GSAGH-333-Perimiter-ToString-method-produces-incorrect-output
  • Loading branch information
tlmnrnhrdt authored Jul 10, 2023
2 parents 3919069 + c919884 commit 5288e88
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions AdSecGH/AdSecGH.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<RepositoryUrl>https://github.com/arup-group/AdSec-Grasshopper</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>AdSecLogo128.png</PackageIcon>
<Version>0.9.20-beta</Version>
<Version>0.9.21-beta</Version>
<Description>Official Oasys AdSec Grasshopper Plugin

AdSecGH is pre-release and under active development, including further testing to be undertaken. It is provided "as-is" and you bear the risk of using it. Future versions may contain breaking changes. Any files, results, or other types of output information created using AdSecGH should not be relied upon without thorough and independent checking.
Expand Down Expand Up @@ -59,7 +59,7 @@ Copyright © Oasys 1985 - 2022</Description>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.3</Version>
</PackageReference>
<PackageReference Include="OasysGH" Version="0.6.10-beta" />
<PackageReference Include="OasysGH" Version="0.6.11-beta" />
<PackageReference Include="OasysUnits">
<Version>1.0.0</Version>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion AdSecGH/AdSecGHInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public string IconUrl
internal const string ProductName = "AdSec";
internal const string TermsConditions
= "Oasys terms and conditions apply. See https://www.oasys-software.com/terms-conditions for details. ";
internal const string Vers = "0.9.20";
internal const string Vers = "0.9.21";
internal static string Disclaimer = PluginName
+ " is pre-release and under active development, including further testing to be undertaken. It is provided \"as-is\" and you bear the risk of using it. Future versions may contain breaking changes. Any files, results, or other types of output information created using "
+ PluginName + " should not be relied upon without thorough and independent checking. ";
Expand Down
2 changes: 1 addition & 1 deletion AdSecGH/Components/0_AdSec/SaveModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public SaveModel() : base(
}

public override void CreateAttributes() {
m_attributes = new ThreeButtonAtrributes(this, "Save", "Save As", "Open AdSec", SaveFile, SaveAsFile, OpenAdSecexe, true, "Save AdSec file");
m_attributes = new ThreeButtonComponentAttributes(this, "Save", "Save As", "Open AdSec", SaveFile, SaveAsFile, OpenAdSecexe, true, "Save AdSec file");
}

public void OpenAdSecexe() {
Expand Down
2 changes: 1 addition & 1 deletion AdSecGH/Components/0_AdSec/SaveSvg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public SaveSVG() : base(
// This region handles input and output parameters

public override void CreateAttributes() {
m_attributes = new ThreeButtonAtrributes(this, "Save", "Save As", "Open SVG", SaveFile, SaveAsFile, OpenSVGexe, true, "Save SVG file");
m_attributes = new ThreeButtonComponentAttributes(this, "Save", "Save As", "Open SVG", SaveFile, SaveAsFile, OpenSVGexe, true, "Save SVG file");
}

public void OpenSVGexe() {
Expand Down

0 comments on commit 5288e88

Please sign in to comment.