Skip to content

Commit

Permalink
Remove compatibility hash check and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Jul 11, 2024
1 parent 2e8834b commit e5b0a4f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
1 change: 0 additions & 1 deletion FlexibleContactsSort/FlexibleContactSorting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ private static bool IsIncomingRequest(Contact contact)

private static bool IsInJoinableSession(ContactData contactData)
=> contactData?.CurrentSessionInfo is SessionInfo session
&& session.CompatibilityHash == Engine.Current.CompatibilityHash
&& !IsHeadlessHost(contactData);

private static bool IsOfflineContact(ContactData contactData)
Expand Down
12 changes: 4 additions & 8 deletions FlexibleContactsSort/FlexibleContactsSort.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageId>FlexibleContactSorting</PackageId>
<Title>Flexible Contact Sorting</Title>
<Authors>Banane9</Authors>
<Version>0.5.2-beta</Version>
<Version>0.6.0-beta</Version>
<Description>This MonkeyLoader mod for Resonite allows sorting contacts flexibly and to your liking, including pinning your favorites to the top. It also adds other Quality of Life features to the Contacts Page, such as a clear button for the search, an extra color for your outgoing conctact requests, capacity display to contacts' sessions, and contacts loading without lag.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
Expand Down Expand Up @@ -42,20 +42,16 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MonkeyLoader" Version="0.17.2-beta" />
<PackageReference Include="MonkeyLoader.GamePacks.Resonite" Version="0.16.0-beta" />
<PackageReference Include="MonkeyLoader" Version="0.19.1-beta" />
<PackageReference Include="MonkeyLoader.GamePacks.Resonite" Version="0.17.0-beta" />
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Resonite.Elements.Core" Version="1.0.2" />
<PackageReference Include="Resonite.Elements.Quantity" Version="1.0.2" />
<PackageReference Include="Resonite.FrooxEngine" Version="2024.6.11.74" />
<PackageReference Include="Resonite.FrooxEngine" Version="2024.7.11.1293" />
<PackageReference Include="Resonite.SkyFrost.Base" Version="2.0.0" />
<PackageReference Include="Resonite.SkyFrost.Base.Models" Version="2.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>

0 comments on commit e5b0a4f

Please sign in to comment.