diff --git a/README.md b/README.md index 40f2337..0f55fd0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Interaction Bubbles -![Mod Version](https://img.shields.io/badge/Mod_Version-2.4-blue) -![RimWorld Version](https://img.shields.io/badge/Built_for_RimWorld-1.3-blue) +![Mod Version](https://img.shields.io/badge/Mod_Version-2.5-blue) +![RimWorld Version](https://img.shields.io/badge/Built_for_RimWorld-1.4-blue) ![Harmony Version](https://img.shields.io/badge/Powered_by_Harmony-2.2-blue)\ [![Steam Subscribers](https://img.shields.io/steam/downloads/1516158345?color=blue&label=Steam%20Downloads&logo=Steam)](https://steamcommunity.com/sharedfiles/filedetails/?id=1516158345) [![GitHub Downloads](https://img.shields.io/github/downloads/Jaxe-Dev/Bubbles/total?color=blue&label=GitHub%20Downloads&logo=GitHub)](https://github.com/Jaxe-Dev/Bubbles) diff --git a/source/-/About/About.xml b/source/-/About/About.xml index 70addc8..3e241aa 100644 --- a/source/-/About/About.xml +++ b/source/-/About/About.xml @@ -6,6 +6,7 @@ Mod Version: {ReleaseVersion}\n\n\nShows bubbles when pawns perform a social interaction with the text that would normally only be found in the log.
  • 1.3
  • +
  • 1.4
  • diff --git a/source/Bubbles.csproj b/source/Bubbles.csproj index 08db9ab..0b57c99 100644 --- a/source/Bubbles.csproj +++ b/source/Bubbles.csproj @@ -26,15 +26,16 @@ ..\packages\Lib.Harmony.2.2.1\lib\net472\0Harmony.dll + False False - - - - False + Assembly-CSharp.dll + False False + + False UnityEngine.CoreModule.dll diff --git a/source/Mod.cs b/source/Mod.cs index 9600d22..3e6d0ac 100644 --- a/source/Mod.cs +++ b/source/Mod.cs @@ -1,6 +1,5 @@ using Bubbles.Configuration; using HarmonyLib; -using RimWorld; using UnityEngine; using Verse; @@ -10,7 +9,7 @@ public class Mod : Verse.Mod { public const string Id = "Bubbles"; public const string Name = "Interaction Bubbles"; - public const string Version = "2.4"; + public const string Version = "2.5"; public static Mod Instance; @@ -26,8 +25,6 @@ public Mod(ModContentPack content) : base(content) Log("Initialized"); } - - public static void Log(string message) => Verse.Log.Message(PrefixMessage(message)); public static void Warning(string message) => Verse.Log.Warning(PrefixMessage(message)); public static void Error(string message) => Verse.Log.Error(PrefixMessage(message)); diff --git a/source/Settings.cs b/source/Settings.cs index 7f7e83a..dd85d27 100644 --- a/source/Settings.cs +++ b/source/Settings.cs @@ -10,7 +10,10 @@ namespace Bubbles { public class Settings : ModSettings { - private static readonly string[] SameConfigVersions = { }; + private static readonly string[] SameConfigVersions = + { + "2.4" + }; private static bool _resetRequired; public static bool Activated = true;