Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update metadata for v3.6.3 #46

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Data/UpdateInfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,8 @@
<item name="title">Version 3.6.0 update</item>
<item name="description">The spellbook has been updated to include spells from the &lt;b&gt;2024 Player\'s Handbook&lt;/b&gt;. As many of the spells from this book are new versions of those from previous sourcebooks, this update also adds an option to &lt;b&gt;hide duplicate spells&lt;/b&gt; between the 2024 PHB and previous sourcebooks. Toggling this option off will allow both versions to be shown in the spell list. If this option is enabled, one can choose whether they prefer to see &lt;b&gt;2024 or 2014&lt;/b&gt; versions of the spells. This setting can be adjusted on a &lt;b&gt;character-by-character basis&lt;/b&gt;.</item>
</section>
<section name="v_3_6_3">
<item name="title">Version 3.6.3 update</item>
<item name="description">This release updates the text of spells that were affected by the errata for Xanathar's Guide to Everything.</item>
</section>
</root>
8 changes: 4 additions & 4 deletions Spellbook.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
"CODE_SIGN_STYLE[sdk=iphoneos*]" = Automatic;
CURRENT_PROJECT_VERSION = 52;
CURRENT_PROJECT_VERSION = 54;
DEFINES_MODULE = NO;
DEVELOPMENT_TEAM = RSR87G74R7;
EXCLUDED_ARCHS = "";
Expand All @@ -1027,7 +1027,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 3.6.2;
MARKETING_VERSION = 3.6.3;
PRODUCT_BUNDLE_IDENTIFIER = dnd.jon.Spellbook;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -1046,7 +1046,7 @@
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
"CODE_SIGN_STYLE[sdk=iphoneos*]" = Automatic;
CURRENT_PROJECT_VERSION = 52;
CURRENT_PROJECT_VERSION = 54;
DEFINES_MODULE = NO;
DEVELOPMENT_TEAM = RSR87G74R7;
EXCLUDED_ARCHS = "";
Expand All @@ -1056,7 +1056,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 3.6.2;
MARKETING_VERSION = 3.6.3;
PRODUCT_BUNDLE_IDENTIFIER = dnd.jon.Spellbook;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
6 changes: 3 additions & 3 deletions Spellbook/VersionInfo.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import SWXMLHash

class VersionInfo {

static let version = Version(major: 3, minor: 6, patch: 1)
static let previousVersion = Version(major: 3, minor: 6, patch: 0)
static let version = Version(major: 3, minor: 6, patch: 3)
static let previousVersion = Version(major: 3, minor: 6, patch: 2)

static let updateLogVersion = Version(major: 3, minor: 6, patch: 0)
static let updateLogVersion = Version(major: 3, minor: 6, patch: 3)
static let updateLogVersionKey = "v_" + updateLogVersion.string(separator: "_")

static let (updateTitle, updateText): (String, String) = {
Expand Down
Loading