Compare commits

...

3 Commits

4 changed files with 10 additions and 5 deletions

View File

@ -1,6 +1,9 @@
# Changelog # Changelog
## 2024.3 (124) ## 2024.3 (125)
This build fixes a bug when displaying HTML in certain posts.
## 2024.2 (124)
Features/Improvements: Features/Improvements:
- Add subscription option to Tip Jar - Add subscription option to Tip Jar

View File

@ -3241,7 +3241,7 @@
repositoryURL = "https://git.shadowfacts.net/shadowfacts/HTMLStreamer.git"; repositoryURL = "https://git.shadowfacts.net/shadowfacts/HTMLStreamer.git";
requirement = { requirement = {
kind = exactVersion; kind = exactVersion;
version = 0.2.3; version = 0.2.4;
}; };
}; };
D63CC700290EC0B8000E19DE /* XCRemoteSwiftPackageReference "sentry-cocoa" */ = { D63CC700290EC0B8000E19DE /* XCRemoteSwiftPackageReference "sentry-cocoa" */ = {

View File

@ -84,7 +84,9 @@ struct TipJarView: View {
private var productsView: some View { private var productsView: some View {
if isLoaded { if isLoaded {
VStack { VStack {
supporterSubscriptions if !supporterProducts.isEmpty {
supporterSubscriptions
}
tipPurchases tipPurchases

View File

@ -9,8 +9,8 @@
// Configuration settings file format documentation can be found at: // Configuration settings file format documentation can be found at:
// https://help.apple.com/xcode/#/dev745c5c974 // https://help.apple.com/xcode/#/dev745c5c974
MARKETING_VERSION = 2024.2 MARKETING_VERSION = 2024.3
CURRENT_PROJECT_VERSION = 124 CURRENT_PROJECT_VERSION = 125
CURRENT_PROJECT_VERSION = $(inherited)$(CURRENT_PROJECT_VERSION_BUILD_SUFFIX_$(CONFIGURATION)) CURRENT_PROJECT_VERSION = $(inherited)$(CURRENT_PROJECT_VERSION_BUILD_SUFFIX_$(CONFIGURATION))
CURRENT_PROJECT_VERSION_BUILD_SUFFIX_Debug=-dev CURRENT_PROJECT_VERSION_BUILD_SUFFIX_Debug=-dev