Skip to content
This repository was archived by the owner on Apr 17, 2026. It is now read-only.

Commit 91175b0

Browse files
committed
Bumped to version 1.3.0
1 parent efe8eda commit 91175b0

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

Assets/LethalConfigManifest.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ MonoBehaviour:
7070
Name: LethalConfig
7171
Description: Provides an in-game config menu for players to edit their configs,
7272
and an API for other mods to use and customize their entries.
73-
Version: 1.2.0
73+
Version: 1.3.0
7474
Dependencies:
7575
- {fileID: 11400000, guid: 93f32f19b4b23484b83d50013fee18e8, type: 2}
7676
--- !u!114 &4587465158208312100

Assets/Scripts/LethalConfigPlugin.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ internal static class PluginInfo
1515
{
1616
public const string Guid = "ainavt.lc.lethalconfig";
1717
public const string Name = "LethalConfig";
18-
public const string Version = "1.2.0";
18+
public const string Version = "1.3.0";
1919
}
2020

2121
[BepInPlugin(PluginInfo.Guid, PluginInfo.Name, PluginInfo.Version)]

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Version 1.3.0
2+
- Added new `GenericButtonConfigItem`, which allows you to create a button that provides you with a callback to run your own code when it's clicked.
3+
- Added item's Section, Name, and Description overrides, which allows you to change what LethalConfig will show without changing the section, keys, or descriptions in your `ConfigEntry` directly.
4+
- Fixed issue when trying to automatically read the mod's icon and description from mods installed manually with their dll at the root of the BepInEx's plugins folder. (@Rune580)
5+
- Fixed exception caused in the quick menu when running LethalConfig with AdvancedCompany.
6+
17
## Version 1.2.0
28
- LethalConfig now reads both the mod's icons and descriptions directly from its thunderstore manifest if one can be found. (@Rune580)
39
- Added methods to make LethalConfig skip the autogeneration for your entire mod, a config section, or individual configs. (@Rune580)

0 commit comments

Comments
 (0)