Skip to content

Commit b342669

Browse files
committed
3.21.1 and changelog
1 parent 7d8875f commit b342669

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
### 3.21 ###
55

6+
* **3.21.1**
7+
* Fixed the cheat ConVars not getting unlocked.
8+
* Also enabled the following Alloyed Collective ConVars: `bag_disable_breakout`, `bounce_velocity`, `junk_unlimited`
9+
* Updated the README to mention that `ctrl+alt+f2` also opens the console and removed old recommended mods.
10+
611
* **3.21.0**
712
* Updated for the Alloyed Collective.
813
* Added temp item support for item-related commands. A new `type` parameter is added to some commands before the `target` parameter, e.g., `give_item item count type target`. While this may interfere with pre-existing scripts that assume `target` is the third parameter, we expect `type` to be more frequently used which justifies this breaking change. Apologies for any inconvenience caused. The affected commands are:

Code/DebugToolkit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace DebugToolkit
1818
[BepInPlugin(GUID, modname, modver)]
1919
public class DebugToolkit : BaseUnityPlugin
2020
{
21-
public const string modname = "DebugToolkit", modver = "3.21.0";
21+
public const string modname = "DebugToolkit", modver = "3.21.1";
2222
public const string GUID = "iHarbHD." + modname;
2323

2424
internal static ConfigFile Configuration;

DebugToolkit.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5-
<Version>3.21.0</Version>
5+
<Version>3.21.1</Version>
66
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
77
<Authors>DebugToolkit Contributors</Authors>
88
<Description>DebugToolkit is an expansive list of console commands for Risk of Rain 2, intended to make forcing specific situation easier. This is supposed to help with testing of interactions, mods, and what else.</Description>
@@ -14,8 +14,8 @@
1414
<SignAssembly>false</SignAssembly>
1515
<PackageIcon>icon.png</PackageIcon>
1616
<Copyright>2025 DebugToolkit Contributors</Copyright>
17-
<AssemblyVersion>3.21.0.0</AssemblyVersion>
18-
<FileVersion>3.21.0.0</FileVersion>
17+
<AssemblyVersion>3.21.1.0</AssemblyVersion>
18+
<FileVersion>3.21.1.0</FileVersion>
1919
</PropertyGroup>
2020

2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">

Thunderstore/thunderstore.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ schemaVersion = "0.0.1"
44
[package]
55
namespace = "IHarbHD"
66
name = "DebugToolkit"
7-
versionNumber = "3.21.0"
7+
versionNumber = "3.21.1"
88
description = "Adds console command for debugging mods."
99
websiteUrl = "https://github.com/harbingerofme/DebugToolkit"
1010
containsNsfwContent = false

0 commit comments

Comments
 (0)