From ea99eb91123b55b57b9ba8c9a9ba7e36ebbc31b9 Mon Sep 17 00:00:00 2001 From: FrustratedProgrammer Date: Wed, 18 Oct 2023 22:59:13 -0600 Subject: [PATCH] The sorter "Built In" is now called "Default" --- BuildingSorter.js | 8 ++++---- BuildingSorter.main.js | 8 ++++---- patchnotes.json | 5 +++++ patchnotes.md | 4 ++++ steam-mod/BuildingSorter/info.txt | 2 +- steam-mod/BuildingSorter/main.js | 8 ++++---- version.txt | 2 +- 7 files changed, 23 insertions(+), 14 deletions(-) diff --git a/BuildingSorter.js b/BuildingSorter.js index 8fa4d93..27f7987 100644 --- a/BuildingSorter.js +++ b/BuildingSorter.js @@ -690,13 +690,13 @@ class BuildingSorterClass { { enabled: true, sorterFrom:"BuildingSorter", - text: "Built In", + text: "Default", description: "Sort's building's by their ID's number. This ranks them in order how they were designed to be displayed. This theoretically works with mods that adds new options so long as their ID is a number.", tooltip: { icon: [10, 0], - title: "Built In", - forwardDescription: "Orders the buildings based on their built in order.", - reverseDescription: "Orders the buildings based on their built in order but backwards.", + title: "Default", + forwardDescription: "Orders the buildings based on their default order.", + reverseDescription: "Orders the buildings based on their default order but backwards.", quote: "Classic Ortiel's List." }, sort: function(array){ diff --git a/BuildingSorter.main.js b/BuildingSorter.main.js index 61006b8..27b19fc 100644 --- a/BuildingSorter.main.js +++ b/BuildingSorter.main.js @@ -698,13 +698,13 @@ class BuildingSorterClass { { enabled: true, sorterFrom:"BuildingSorter", - text: "Built In", + text: "Default", description: "Sort's building's by their ID's number. This ranks them in order how they were designed to be displayed. This theoretically works with mods that adds new options so long as their ID is a number.", tooltip: { icon: [10, 0], - title: "Built In", - forwardDescription: "Orders the buildings based on their built in order.", - reverseDescription: "Orders the buildings based on their built in order but backwards.", + title: "Default", + forwardDescription: "Orders the buildings based on their default order.", + reverseDescription: "Orders the buildings based on their default order but backwards.", quote: "Classic Ortiel's List." }, sort: function(array){ diff --git a/patchnotes.json b/patchnotes.json index 5f5a4c2..53fbe0f 100644 --- a/patchnotes.json +++ b/patchnotes.json @@ -38,5 +38,10 @@ "title":"Fixed Saving", "message": "Saves were bugged out in v2.4. Fixed!\nRapid reloading caused saved settings to be removed in some browsers. Now a 24 character string is saved in localStorage to act as a backup.", "html": "" + }, + "2.6": { + "title": "Renamed a Sorter", + "message": "The sorter \"Built In\" is now called \"Default\"", + "html": "" } } diff --git a/patchnotes.md b/patchnotes.md index 06766f2..bcdc116 100644 --- a/patchnotes.md +++ b/patchnotes.md @@ -1,4 +1,8 @@ #Patch-notes +## 2.6 Renamed a sorter + ## 2.5 Fixed Saving