bump version adn update whats new

This commit is contained in:
neon443
2025-05-14 21:16:35 +01:00
parent bb67b0ce98
commit 0a17ec6292
2 changed files with 8 additions and 6 deletions

View File

@@ -12,6 +12,6 @@ TEAM_ID = 8JGND254B7
BUNDLE_ID = com.neon443.NearFuture BUNDLE_ID = com.neon443.NearFuture
BUNDLE_ID_WIDGETS = com.neon443.NearFuture.widgets BUNDLE_ID_WIDGETS = com.neon443.NearFuture.widgets
GROUP_ID = group.NearFuture GROUP_ID = group.NearFuture
VERSION = 4.2.1 VERSION = 4.3
NAME = Near Future NAME = Near Future
BUILD_NUMBER = 1 BUILD_NUMBER = 1

View File

@@ -18,6 +18,11 @@ struct WhatsNewView: View {
} }
var whatsNewChunks: [WhatsNewChunk] { var whatsNewChunks: [WhatsNewChunk] {
return [ return [
WhatsNewChunk(
symbol: "app",
title: "App Icons",
subtitle: "You now get a special app icon that matches the color you choose in settings!"
),
WhatsNewChunk( WhatsNewChunk(
symbol: settingsModel.device.sf, symbol: settingsModel.device.sf,
title: "This Screen", title: "This Screen",
@@ -75,10 +80,6 @@ struct WhatsNewView: View {
$0.presentationBackground(.ultraThinMaterial) $0.presentationBackground(.ultraThinMaterial)
} }
} }
.onDisappear {
settingsModel.settings.prevAppVersion = getVersion()+getBuildID()
settingsModel.saveSettings()
}
} }
} }
@@ -100,7 +101,7 @@ struct WhatsNewChunkView: View {
.resizable() .resizable()
.scaledToFit() .scaledToFit()
.frame(width: 30, height: 30) .frame(width: 30, height: 30)
.foregroundStyle(.accent) .foregroundStyle(Color.accentColor)
.padding(.trailing, 15) .padding(.trailing, 15)
VStack(alignment: .leading) { VStack(alignment: .leading) {
Text(title) Text(title)
@@ -109,6 +110,7 @@ struct WhatsNewChunkView: View {
Text(subtitle) Text(subtitle)
.foregroundStyle(.gray) .foregroundStyle(.gray)
.font(.subheadline) .font(.subheadline)
.fixedSize(horizontal: false, vertical: true)
} }
} }
} }