Skip to content

Commit

Permalink
Update deps / version for new resonite build
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Jul 19, 2024
1 parent ff9c12c commit 70af927
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ComponentSelectorAdditions/ComponentSelectorAdditions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageId>ComponentSelectorAdditions</PackageId>
<Title>Component Selector Additions</Title>
<Authors>Banane9</Authors>
<Version>0.4.0-beta</Version>
<Version>0.4.1-beta</Version>
<Description>This MonkeyLoader mod for Resonite overhauls the Component Selector / Protoflux Node Selector to have a search, as well as favorites and recents categories.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
Expand All @@ -36,7 +36,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Resonite.Elements.Core" Version="1.1.0" />
<PackageReference Include="Resonite.FrooxEngine" Version="2024.7.11.1293" />
<PackageReference Include="Resonite.Elements.Core" Version="1.2.0" />
<PackageReference Include="Resonite.FrooxEngine" Version="2024.7.19.281" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions ComponentSelectorAdditions/Events/BuildButtonEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ namespace ComponentSelectorAdditions.Events
public abstract class BuildButtonEvent : CancelableBuildUIEvent

Check warning on line 12 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent'

Check warning on line 12 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent'
{
public bool IsDirectItem { get; }

Check warning on line 14 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.IsDirectItem'

Check warning on line 14 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.IsDirectItem'
public CategoryNode<Type> ItemCategory { get; }
public CategoryNode<Type>? ItemCategory { get; }

Check warning on line 15 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.ItemCategory'

Check warning on line 15 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.ItemCategory'
public CategoryNode<Type>? RootCategory { get; }

Check warning on line 16 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.RootCategory'

Check warning on line 16 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.RootCategory'
public ComponentSelector Selector { get; }

Check warning on line 17 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.Selector'

Check warning on line 17 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.Selector'

protected BuildButtonEvent(ComponentSelector selector, UIBuilder ui, CategoryNode<Type>? rootCategory, CategoryNode<Type> itemCategory, bool isDirectItem) : base(ui)
protected BuildButtonEvent(ComponentSelector selector, UIBuilder ui, CategoryNode<Type>? rootCategory, CategoryNode<Type>? itemCategory, bool isDirectItem) : base(ui)

Check warning on line 19 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.BuildButtonEvent(ComponentSelector, UIBuilder, CategoryNode<Type>?, CategoryNode<Type>?, bool)'

Check warning on line 19 in ComponentSelectorAdditions/Events/BuildButtonEvent.cs

View workflow job for this annotation

GitHub Actions / Build / Build

Missing XML comment for publicly visible type or member 'BuildButtonEvent.BuildButtonEvent(ComponentSelector, UIBuilder, CategoryNode<Type>?, CategoryNode<Type>?, bool)'
{
Selector = selector;
RootCategory = rootCategory;
Expand Down

0 comments on commit 70af927

Please sign in to comment.