From 4cdacb272ef44fdc5e86b82bc7fe072aa6c209a5 Mon Sep 17 00:00:00 2001 From: Des Herriott Date: Mon, 13 Nov 2023 15:22:24 +0000 Subject: [PATCH] build: version -> 2001.2.0, changelog updated Bumped ftb lib dep version to 2001.1.4 --- CHANGELOG.md | 14 ++++++++++++-- fabric/src/main/resources/fabric.mod.json | 2 +- forge/src/main/resources/META-INF/mods.toml | 2 +- gradle.properties | 4 ++-- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1db59c17..31f2b961 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2001.1.8] +## [2001.2.0] ### Added * Added a new Task Screen Configurator item, which can be used to remote-configure a Task Screen * Sneak + right-click a Task Screen with the configurator to bind it - * Right-click the configurator to configure the Task Screen + * Right-click the configurator to configure the bound Task Screen * Limitation: Task Screen must be currently loaded and in same dimension as player +* Added a new "Sequential Task Completion" quest setting (and chapter default) + * When true, tasks in the quest must be completed in the order they were added to the quest + * Later tasks won't even be shown (outside edit mode) in the quest view panel until previous tasks are completed +* Added "Insert Link" button in the multiline quest editor + * This allows quest "hyperlinks" to be embedded in quest text; when clicked, the quest view jumps to the linked quest + * Prompts for a quest ID to link to when selected; ID's can be obtained by right-clicking any quest and selected "Copy ID" + +### Fixed +* Item Reward icons in the quest view panel had no tooltip with default settings +* Fixed chapter & chapter group deletions not persisting correctly (deleted chapters & groups reappeared after a server restart) ## [2001.1.7] diff --git a/fabric/src/main/resources/fabric.mod.json b/fabric/src/main/resources/fabric.mod.json index 4ee0738f..be073ce7 100644 --- a/fabric/src/main/resources/fabric.mod.json +++ b/fabric/src/main/resources/fabric.mod.json @@ -26,7 +26,7 @@ "fabric": "*", "minecraft": "~1.20.1", "architectury": ">=9.0.8", - "ftblibrary": ">=2001.1.3-build.1", + "ftblibrary": ">=2001.1.4", "ftbteams": ">=2001.1.4-build.1", "itemfilters": ">=2001.1.0-build.55" }, diff --git a/forge/src/main/resources/META-INF/mods.toml b/forge/src/main/resources/META-INF/mods.toml index e0b048bf..471523ed 100644 --- a/forge/src/main/resources/META-INF/mods.toml +++ b/forge/src/main/resources/META-INF/mods.toml @@ -29,7 +29,7 @@ side = "BOTH" [[dependencies.ftbquests]] modId = "ftblibrary" mandatory = true -versionRange = "[2001.1.3,)" +versionRange = "[2001.1.4,)" ordering = "AFTER" side = "BOTH" diff --git a/gradle.properties b/gradle.properties index 7fa415a4..6e0bbdea 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ mod_id=ftbquests archives_base_name=ftb-quests minecraft_version=1.20.1 # Build time -mod_version=2001.1.8 +mod_version=2001.2.0 maven_group=dev.ftb.mods mod_author=FTB Team # Curse release @@ -18,7 +18,7 @@ fabric_loader_version=0.14.21 fabric_api_version=0.83.1+1.20.1 forge_version=47.0.43 # Deps -ftb_library_version=2001.1.3 +ftb_library_version=2001.1.4 ftb_teams_version=2001.1.4 itemfilters_version=2001.1.0-build.55 # Optional deps