|
3 | 3 | using BeingAliveLanguage.BalCore; |
4 | 4 |
|
5 | 5 | 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"; |
8 | 8 |
|
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"; |
14 | 14 |
|
15 | | - public override Guid Id => new Guid("43E47992-4A44-4951-9F57-30300CFE12A2"); |
| 15 | + public override Guid Id => new Guid("43E47992-4A44-4951-9F57-30300CFE12A2"); |
16 | 16 |
|
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; |
20 | 20 |
|
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"; |
23 | 23 |
|
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 | + } |
27 | 27 |
|
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 | + } |
35 | 36 | } |
36 | 37 | } |
37 | | -} |
0 commit comments