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_WIDGETS = com.neon443.NearFuture.widgets
GROUP_ID = group.NearFuture
VERSION = 4.2.1
VERSION = 4.3
NAME = Near Future
BUILD_NUMBER = 1

View File

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