Skip to content

Commit

Permalink
Add support for V65
Browse files Browse the repository at this point in the history
  • Loading branch information
DaXcess committed Oct 23, 2024
1 parent 6e0499f commit aed3bd4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.3.5

**Additions**:
- Added support for V65

# 1.3.4

**Changes**:
Expand Down
2 changes: 1 addition & 1 deletion LCVR.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>LCVR</AssemblyName>
<Description>Collecting Scrap in VR</Description>
<Version>1.3.4</Version>
<Version>1.3.5</Version>
<Authors>DaXcess</Authors>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>12.0</LangVersion>
Expand Down
3 changes: 2 additions & 1 deletion Source/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class Plugin : BaseUnityPlugin
{
public const string PLUGIN_GUID = "io.daxcess.lcvr";
public const string PLUGIN_NAME = "LCVR";
public const string PLUGIN_VERSION = "1.3.4";
public const string PLUGIN_VERSION = "1.3.5";

#if DEBUG
private const string SKIP_CHECKSUM_VAR = $"--lcvr-skip-checksum={PLUGIN_VERSION}-dev";
Expand All @@ -37,6 +37,7 @@ public class Plugin : BaseUnityPlugin
[
"BFF45683C267F402429049EF7D8095C078D5CD534E5300E56317ACB6056D70FB", // V64
"A6BDE2EB39028B36CB1667DCFB4ED10F688FB3FF72E71491AC25C5CB47A7EF6C", // V64.1
"2315B7D4B9FFA3972A95685510155C6D939638BE35E5685C0CF636D8640630D3", // V65
];

public new static Config Config { get; private set; }
Expand Down

0 comments on commit aed3bd4

Please sign in to comment.