Skip to content

Commit

Permalink
Upped version
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewFahlgren committed Dec 26, 2022
1 parent 522dc2c commit 4727057
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Plugin.cs
Expand Up @@ -5,11 +5,12 @@

namespace PotionCraftBookmarkOrganizer
{
[BepInPlugin(PLUGIN_GUID, "PotionCraftBookmarkOrganizer", "1.0.2.1")]
[BepInPlugin(PLUGIN_GUID, "PotionCraftBookmarkOrganizer", PLUGIN_VERSION)]
[BepInProcess("Potion Craft.exe")]
public class Plugin : BaseUnityPlugin
{
public const string PLUGIN_GUID = "com.fahlgorithm.potioncraftbookmarkorganizer";
public const string PLUGIN_VERSION = "1.0.5.0";

public static ManualLogSource PluginLogger {get; private set; }

Expand Down
2 changes: 1 addition & 1 deletion Scripts/Services/SaveLoadService.cs
Expand Up @@ -33,7 +33,7 @@ public static void StoreBookmarkGroups(ref string result)
BookmarkGroups = StaticStorage.BookmarkGroups,
SavedRecipePositions = StaticStorage.SavedRecipePositions,
ErrorLog = StaticStorage.ErrorLog,
BookmarkManagerVersion = Plugin.PLUGIN_GUID
BookmarkManagerVersion = Plugin.PLUGIN_VERSION
};
var serializedGroups = JsonConvert.SerializeObject(toSerialize, new JsonSerializerSettings { ReferenceLoopHandling = ReferenceLoopHandling.Ignore });
Expand Down
2 changes: 1 addition & 1 deletion Thunderstore/manifest.json
@@ -1,6 +1,6 @@
{
"name": "Bookmark_Organizer",
"version_number": "1.0.2",
"version_number": "1.0.3",
"website_url": "https://github.com/AndrewFahlgren/PotionCraftBookmarkOrganizer",
"description": "A mod to allow you to organize bookmarks into groups! Compatible with Potion Craft v1.0!",
"dependencies": [
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Expand Up @@ -2,10 +2,10 @@
"$schema": "https://github.com/beat-saber-modding-group/BSIPA-MetadataFileSchema/blob/master/Schema.json",
"author": "com.fahlgorithm.potioncraftbookmarkorganizer",
"description": "A mod to allow you to organize bookmarks into groups.",
"gameVersion": "1.0.2.1",
"gameVersion": "1.0.5.0",
"id": "PotionCraftBookmarkOrganizer",
"name": "PotionCraftBookmarkOrganizer",
"version": "1.0.2.1",
"version": "1.0.5.0",
"dependsOn": {}

}

0 comments on commit 4727057

Please sign in to comment.