Skip to content

Commit b135778

Browse files
committed
Release TimberCommons v1.10.3
1 parent 7c097b8 commit b135778

File tree

11 files changed

+25
-95
lines changed

11 files changed

+25
-95
lines changed

ModsUnityProject/Assets/Mods/TimberCommons/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "TimberCommons",
3-
"Version": "1.10.2",
3+
"Version": "1.10.3",
44
"Id": "Timberborn.IgorZ.TimberCommons",
55
"MinimumGameVersion": "0.6.8.3",
66
"Description": "Various tweaks and modules for making buildings.",
@@ -15,7 +15,7 @@
1515
},
1616
{
1717
"Id": "eMka.ModSettings",
18-
"MinimumVersion": "0.6.8.0"
18+
"MinimumVersion": "0.6.9.4"
1919
}
2020
]
2121
}

TimberCommons/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v1.10.3 (15 Dec 2024)
2+
* [Enhancement] Allow changing settings in the game.
3+
14
# v1.10.2 (22 Oct 2024):
25
* [Fix] Game crashes on selecting a tower after the game was loaded with unfinished towers.
36

TimberCommons/Settings/DebugSettings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ sealed class DebugSettings : ModSettingsOwner {
3535
/// <inheritdoc />
3636
public override int Order => 100; // Always last.
3737

38+
/// <inheritdoc />
39+
public override ModSettingsContext ChangeableOn => ModSettingsContext.MainMenu | ModSettingsContext.Game;
40+
3841
#endregion
3942

4043
#region Implementation

TimberCommons/Settings/InjuryProbabilitySettings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,8 @@ sealed class InjuryProbabilitySettings(
4141
/// <inheritdoc />
4242
public override int Order => 4;
4343

44+
/// <inheritdoc />
45+
public override ModSettingsContext ChangeableOn => ModSettingsContext.MainMenu | ModSettingsContext.Game;
46+
4447
#endregion
4548
}

TimberCommons/Settings/IrrigationSystemSettings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ sealed class IrrigationSystemSettings : ModSettingsOwner {
3636
/// <inheritdoc />
3737
public override int Order => 2;
3838

39+
/// <inheritdoc />
40+
public override ModSettingsContext ChangeableOn => ModSettingsContext.MainMenu | ModSettingsContext.Game;
41+
3942
#endregion
4043

4144
#region Implementation

TimberCommons/Settings/TimeAndDurationSettings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ sealed class TimeAndDurationSettings : ModSettingsOwner {
4848
/// <inheritdoc />
4949
public override int Order => 1;
5050

51+
/// <inheritdoc />
52+
public override ModSettingsContext ChangeableOn => ModSettingsContext.MainMenu | ModSettingsContext.Game;
53+
5154
#endregion
5255

5356
#region Implementation

TimberCommons/Settings/WaterBuildingsSettings.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ sealed class WaterBuildingsSettings : ModSettingsOwner {
5050
/// <inheritdoc />
5151
public override int Order => 3;
5252

53+
/// <inheritdoc />
54+
public override ModSettingsContext ChangeableOn => ModSettingsContext.MainMenu | ModSettingsContext.Game;
55+
5356
#endregion
5457

5558
#region Implementation

TimberCommons/SettingsUI/Configurator.cs

Lines changed: 0 additions & 24 deletions
This file was deleted.

TimberCommons/SettingsUI/DebugFragment.cs

Lines changed: 0 additions & 64 deletions
This file was deleted.

TimberCommons/TimberCommons.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@
3737
<HintPath>..\Dependencies\Workshop\3284904751\0Harmony.dll</HintPath>
3838
</Reference>
3939
<Reference Include="ModSettings.Common">
40-
<HintPath>..\Dependencies\Workshop\3283831040\Scripts\ModSettings.Common.dll</HintPath>
40+
<HintPath>..\Dependencies\Workshop\3283831040\version-0.6\Scripts\ModSettings.Common.dll</HintPath>
4141
</Reference>
4242
<Reference Include="ModSettings.CommonUI">
43-
<HintPath>..\Dependencies\Workshop\3283831040\Scripts\ModSettings.CommonUI.dll</HintPath>
43+
<HintPath>..\Dependencies\Workshop\3283831040\version-0.6\Scripts\ModSettings.CommonUI.dll</HintPath>
4444
</Reference>
4545
<Reference Include="ModSettings.Core">
46-
<HintPath>..\Dependencies\Workshop\3283831040\Scripts\ModSettings.Core.dll</HintPath>
46+
<HintPath>..\Dependencies\Workshop\3283831040\version-0.6\Scripts\ModSettings.Core.dll</HintPath>
4747
</Reference>
4848
<Reference Include="ModSettings.CoreUI">
49-
<HintPath>..\Dependencies\Workshop\3283831040\Scripts\ModSettings.CoreUI.dll</HintPath>
49+
<HintPath>..\Dependencies\Workshop\3283831040\version-0.6\Scripts\ModSettings.CoreUI.dll</HintPath>
5050
</Reference>
5151
<Reference Include="System" />
5252
<Reference Include="System.Collections.Immutable, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">

0 commit comments

Comments
 (0)