Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.24 #1187

Merged
merged 3 commits into from
Sep 10, 2024
Merged

1.24 #1187

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/pages/_en/1.0/reference/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ group: Deployment & Configs

{% include ltr/release_header_next.html title="Upcoming Changes" note=rc_release_notes %}

{% include ltr/release-header.html title="v1.24 RC3" version="v1.24.9018.17524" pre_release=true time="09/10/2024" %}
{% include ltr/release-header.html title="v1.24 RC3" version="v1.24.9019.19949" pre_release=true time="09/10/2024" %}

- Fixed an issue when an old version of Eto was already loaded [Issue #1028](https://github.com/mcneel/rhino.inside-revit/issues/1028)
- Fix on 'Host Shape' when input points overlap corners.
- Fixed 'Deconstruct Curtain Grid' when panels are not `FamilyInstance`.
- Fixed `ModelText.Location` property.
Expand Down
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit/Rhinoceros.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static partial class Rhinoceros
internal static bool InitEto(Assembly assembly)
{
if (Eto.Forms.Application.Instance is null)
new Eto.Forms.Application(Eto.Platforms.Wpf).Attach();
new Eto.Forms.Application(new Eto.Wpf.Platform()).Attach();

return true;
}
Expand Down
Loading