Skip to content

Commit 0b0a52e

Browse files
authored
Merge pull request #136 from arup-group/bugfix/GSAGH-333-Perimiter-ToString-method-produces-incorrect-output
GSAGH-333-Perimiter-ToString-method-produces-incorrect-output
2 parents df422aa + bfcd1ee commit 0b0a52e

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

Compos/ComposAPI.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>net48</TargetFramework>
4-
<Version>0.9.12-beta</Version>
4+
<Version>0.9.13-beta</Version>
55
<Title>ComposAPI</Title>
66
<Description>Description</Description>
77
<PlatformTarget>x64</PlatformTarget>

ComposGH/Components/0_File/SaveComposFile.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using OasysGH;
1111
using OasysGH.Components;
1212
using OasysGH.Helpers;
13+
using OasysGH.UI;
1314

1415
namespace ComposGH.Components {
1516
/// <summary>
@@ -30,7 +31,7 @@ public SaveComposFile() : base("SaveCompos", "Save", "Saves your Compos File fro
3031
Ribbon.SubCategoryName.Cat0()) { Hidden = true; } // sets the initial state of the component to hidden
3132

3233
public override void CreateAttributes() {
33-
m_attributes = new OasysGH.UI.ThreeButtonAtrributes(this, "Save", "Save As", "Open in Compos", SaveFile, SaveAsFile, OpenCompos, true, "Save Compos file");
34+
m_attributes = new ThreeButtonComponentAttributes(this, "Save", "Save As", "Open in Compos", SaveFile, SaveAsFile, OpenCompos, true, "Save Compos file");
3435
}
3536

3637
public override bool Read(GH_IO.Serialization.GH_IReader reader) {

ComposGH/ComposGH.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFramework>net48</TargetFramework>
4-
<Version>0.9.12-beta</Version>
4+
<Version>0.9.13-beta</Version>
55
<Title>Compos</Title>
66
<Description>Official Oasys Compos Grasshopper Plugin
77

@@ -65,7 +65,7 @@ Copyright © Oasys 1985 - 2022</Description>
6565
</PackageReference>
6666
<PackageReference Include="Microsoft.Data.Sqlite" Version="7.0.3" />
6767
<PackageReference Include="OasysGH">
68-
<Version>0.6.10-beta</Version>
68+
<Version>0.6.11-beta</Version>
6969
</PackageReference>
7070
<PackageReference Include="OasysUnits.Serialization.JsonNet">
7171
<Version>1.0.0</Version>

ComposGH/ComposGH.csproj.user

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup />
4+
<ItemGroup>
5+
<Compile Update="UI\AboutBox.cs">
6+
<SubType>Form</SubType>
7+
</Compile>
8+
</ItemGroup>
9+
</Project>

ComposGH/ComposGHInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public override string Version {
127127
public const string Copyright = "Copyright © Oasys 1985 - 2022";
128128
public const string PluginName = "ComposGH";
129129
public const string ProductName = "Compos";
130-
public const string Vers = "0.9.12";
130+
public const string Vers = "0.9.13";
131131
public 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.";
132132
public static Guid GUID = new Guid("c3884cdc-ac5b-4151-afc2-93590cef4f8f");
133133
public static bool isBeta = true;

0 commit comments

Comments
 (0)