Update + bump 1.2.0

This commit is contained in:
Lumaa 2024-08-10 04:13:44 +02:00
parent a8db199ff1
commit 3991dd0f0d
2 changed files with 9 additions and 7 deletions

View File

@ -1253,7 +1253,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.2.0;
PRODUCT_BUNDLE_IDENTIFIER = fr.lumaa.Threaded;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@ -1295,7 +1295,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.0;
MARKETING_VERSION = 1.2.0;
PRODUCT_BUNDLE_IDENTIFIER = fr.lumaa.Threaded;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";

View File

@ -31,17 +31,19 @@ struct UpdateView: View {
.frame(minWidth: 250)
}
.buttonStyle(LargeButton(filled: true))
Spacer()
}
}
}
var features: some View {
VStack(spacing: 60) {
newFeature(systemImage: "line.3.horizontal.decrease.circle", title: "Content Filter", text: "Keep words out of your feeds in the app's settings, Privacy, then Content Filter")
newFeature(systemImage: "paperplane", title: "Smarter posting!", text: "You can crosspost your posts in other apps like X, Ice Cubes, and others.")
newFeature(systemImage: "plus.app", title: "App Store", text: "Coming soon, in your closest Home Screen page's App Store...")
newFeature(systemImage: "hand.raised", title: "Report content", text: "You can now report posts by tap and holding a post")
newFeature(systemImage: "link.badge.plus", title: "Corn fields, link fields...", text: "You can now see, read, and tap on profile fields.")
newFeature(systemImage: "text.below.photo", title: "ALTernative", text: "When writing a post, you can now edit an ALT text.")
}
.frame(height: 500)
}