Skip to content

Commit

Permalink
version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xarthurx committed Jul 31, 2023
1 parent e4c35c9 commit ce71047
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 13 deletions.
Binary file removed IGM_examples.gh
Binary file not shown.
Binary file modified _release/IGM_examples.gh
Binary file not shown.
Binary file removed _release/build_prepare/ig-mesh-0.2.8-rh7_0-any.yak
Binary file not shown.
Binary file not shown.
Binary file modified _release/build_prepare/igmCppPort.dll
Binary file not shown.
Binary file modified _release/build_prepare/igmGH.gha
Binary file not shown.
Binary file modified _release/build_prepare/igmRhinoCommon.dll
Binary file not shown.
13 changes: 6 additions & 7 deletions _release/build_prepare/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
---
name: IG-Mesh
version: 0.2.8
version: 0.3.0
authors:
- Zhao MA
- Dr. Zhao MA
description: IG-Mesh is a one-stop solution for low-level (vertex-based, edge-based) mesh processing, featuring many advanced algorithms from computer graphics community.
url: https://github.com/xarthurx/IG-Mesh

icon_url: https://i.imgur.com/9eJy5Bs.png
icon: packageManagerIcon.png

keywords:
- drawing
- climate
- soil
- language
- geometry-processing
- mesh-processing
- mesh
Binary file added _release/build_prepare/packageManagerIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 12 additions & 3 deletions _release/build_prepare/prepare_yak_pkg.ps1
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@

Remove-Item manifest.yml
if (Test-Path "manifest.yml")
{
Remove-Item manifest.yml
}

Copy-Item -Path "..\..\bin\*.dll" -Destination ".\" -Recurse
Copy-Item -Path "..\..\bin\*.gha" -Destination ".\" -Recurse

&'C:\Program Files\Rhino 7\System\Yak.exe' spec

Add-Content manifest.yml "`nicon_url: https://i.imgur.com/9eJy5Bs.png `n"
Add-Content manifest.yml "keywords: `n - drawing `n - climate `n - soil `n - language"
# Add-Content manifest.yml "`nicon: `"https://i.imgur.com/WABE4LN.png`""
Add-Content manifest.yml "`nicon: packageManagerIcon.png"
Add-Content manifest.yml "`nkeywords: `n - geometry-processing `n - mesh-processing `n - mesh"

Write-Host "========================="
Write-Host "Modified Manifest File:"
Write-Host "========================="

Get-Content manifest.yml


Expand Down
Binary file modified bin/igmCppPort.dll
Binary file not shown.
Binary file modified bin/igmGH.gha
Binary file not shown.
Binary file modified bin/igmRhinoCommon.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion igmGH/00_igm_Info.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class igmInfo : GH_AssemblyInfo
public override Bitmap Icon => Properties.Resources.pluginIcon;
public override Bitmap AssemblyIcon => Properties.Resources.pluginIcon;
public override string Description => "IG-Mesh is a one-stop solution for low-level (vertex-based, edge-based) mesh processing, featuring many advanced algorithms from computer graphics community.";
public override string AuthorName => "Zhao MA";
public override string AuthorName => "Dr. Zhao MA";
public override string AuthorContact => "https://github.com/xarthurx/IG-Mesh";
// controls the package manager version.
public override string Version => System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetExecutingAssembly().Location).FileVersion;
Expand Down
2 changes: 1 addition & 1 deletion igmGH/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@

// controls the dll version
[assembly: AssemblyVersion("0.2.*")]
[assembly: AssemblyFileVersion("0.2.8")]
[assembly: AssemblyFileVersion("0.3.0")]
2 changes: 1 addition & 1 deletion igmGH/igmGH.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
<StartAction>Program</StartAction>
<StartWorkingDirectory>C:\Users\xarthur\source\repo\IG-Mesh\igmGH\bin\</StartWorkingDirectory>
<StartWorkingDirectory>C:\Users\xarthurx\source\repo\IG-Mesh\igmGH\bin\</StartWorkingDirectory>
<StartProgram>C:\Program Files\Rhino 7\System\Rhino.exe</StartProgram>
<RemoteDebugEnabled>false</RemoteDebugEnabled>
<EnableUnmanagedDebugging>true</EnableUnmanagedDebugging>
Expand Down

0 comments on commit ce71047

Please sign in to comment.