From 0cb40207d87eeff6a04169b6b04c73128932ecc2 Mon Sep 17 00:00:00 2001 From: Carifio24 Date: Tue, 30 Apr 2024 11:52:28 -0400 Subject: [PATCH] Update project info and add update text for v3.5.0. --- Data/UpdateInfo.xml | 4 ++++ Spellbook.xcodeproj/project.pbxproj | 4 ++-- Spellbook/VersionInfo.swift | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Data/UpdateInfo.xml b/Data/UpdateInfo.xml index fa7a71f..935c788 100644 --- a/Data/UpdateInfo.xml +++ b/Data/UpdateInfo.xml @@ -34,4 +34,8 @@ The spellbook has been updated with the following new features:<br/><br/>• The ability to filter spells by royalty has been added.<br/><br/>• The count for each spell list is now shown next to the list name in both the side menu and the bottom navigation bar.<br/><br/>Additionally, this update fixes some typos and mistakes in the text for a few spells. +
+ Version 3.5.0 update + The spellbook has been updated with the following new features:<br/><br/>• Content from <b>The Book of Many Things</b> has been added.</b>.<br/><br/>• The higher level text for <b>Erupting Earth</b> has been corrected.</b>.<br/><br/>• The spellcasting information has been updated with a description of the royalty component. +
diff --git a/Spellbook.xcodeproj/project.pbxproj b/Spellbook.xcodeproj/project.pbxproj index 72b6c29..5b0e7ce 100644 --- a/Spellbook.xcodeproj/project.pbxproj +++ b/Spellbook.xcodeproj/project.pbxproj @@ -1019,7 +1019,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.5.0; PRODUCT_BUNDLE_IDENTIFIER = dnd.jon.Spellbook; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1048,7 +1048,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.5.0; PRODUCT_BUNDLE_IDENTIFIER = dnd.jon.Spellbook; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/Spellbook/VersionInfo.swift b/Spellbook/VersionInfo.swift index 2ec675e..569dda0 100644 --- a/Spellbook/VersionInfo.swift +++ b/Spellbook/VersionInfo.swift @@ -11,8 +11,8 @@ import SWXMLHash class VersionInfo { - static let version = Version(major: 3, minor: 4, patch: 0) - static let previousVersion = Version(major: 3, minor: 3, patch: 0) + static let version = Version(major: 3, minor: 5, patch: 0) + static let previousVersion = Version(major: 3, minor: 4, patch: 0) static let currentVersionKey = "v_" + version.string(separator: "_")