Skip to content

Commit e50d2f1

Browse files
committed
bump version.
1 parent 9f01acf commit e50d2f1

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

BeingAliveLanguage/BALinfo.cs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,35 @@
33
using BeingAliveLanguage.BalCore;
44

55
namespace BeingAliveLanguage {
6-
public class BeingAliveLanguageInfo : GH_AssemblyInfo {
7-
public override string Name => "BeingAliveLanguage";
6+
public class BeingAliveLanguageInfo : GH_AssemblyInfo {
7+
public override string Name => "BeingAliveLanguage";
88

9-
// Return a short string describing the purpose of this GHA library.
10-
public override string Description =>
11-
"This is the plugin for automatically using the set of language " +
12-
"developed by the Chair of Being Alive at ETH Zurich.\n" + "\nKeywords:" + "\n- drawing" +
13-
"\n- climate" + "\n- soil" + "\n- language";
9+
// Return a short string describing the purpose of this GHA library.
10+
public override string Description =>
11+
"This is the plugin for automatically using the set of language " +
12+
"developed by the Chair of Being Alive at ETH Zurich.\n" + "\nKeywords:" + "\n- drawing" +
13+
"\n- climate" + "\n- soil" + "\n- language";
1414

15-
public override Guid Id => new Guid("43E47992-4A44-4951-9F57-30300CFE12A2");
15+
public override Guid Id => new Guid("43E47992-4A44-4951-9F57-30300CFE12A2");
1616

17-
public override string AuthorName => "Dr. Zhao Ma @ BeingAlive";
18-
public override string AuthorContact => "https://beingalivelanguage.arch.ethz.ch";
19-
public override GH_LibraryLicense License => GH_LibraryLicense.opensource;
17+
public override string AuthorName => "Dr. Zhao Ma @ BeingAlive";
18+
public override string AuthorContact => "https://beingalivelanguage.arch.ethz.ch";
19+
public override GH_LibraryLicense License => GH_LibraryLicense.opensource;
2020

21-
// public override string AssemblyVersion => GetType().Assembly.GetName().Version.ToString();
22-
public override string AssemblyVersion => "0.9.8";
21+
// public override string AssemblyVersion => GetType().Assembly.GetName().Version.ToString();
22+
public override string AssemblyVersion => "0.9.9";
2323

24-
// this is currently the variable used by McNeel for plugin system
25-
public override string Version => AssemblyVersion;
26-
}
24+
// this is currently the variable used by McNeel for plugin system
25+
public override string Version => AssemblyVersion;
26+
}
2727

28-
// update plugin icons in the tab
29-
public class IGM_CategoryIcon : GH_AssemblyPriority {
30-
public override GH_LoadingInstruction PriorityLoad() {
31-
Grasshopper.Instances.ComponentServer.AddCategorySymbolName("BAL", 'B');
32-
Grasshopper.Instances.ComponentServer.AddCategoryIcon(
33-
"BAL", SysUtils.cvtByteBitmap(Properties.Resources.pluginIcon));
34-
return GH_LoadingInstruction.Proceed;
28+
// update plugin icons in the tab
29+
public class IGM_CategoryIcon : GH_AssemblyPriority {
30+
public override GH_LoadingInstruction PriorityLoad() {
31+
Grasshopper.Instances.ComponentServer.AddCategorySymbolName("BAL", 'B');
32+
Grasshopper.Instances.ComponentServer.AddCategoryIcon(
33+
"BAL", SysUtils.cvtByteBitmap(Properties.Resources.pluginIcon));
34+
return GH_LoadingInstruction.Proceed;
35+
}
3536
}
3637
}
37-
}

0 commit comments

Comments
 (0)