diff --git a/Config.xcconfig b/Config.xcconfig index 0834b3a..002a18d 100644 --- a/Config.xcconfig +++ b/Config.xcconfig @@ -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 diff --git a/NearFuture/Views/Settings/WhatsNewView.swift b/NearFuture/Views/Settings/WhatsNewView.swift index 2d09dd3..21fc52a 100644 --- a/NearFuture/Views/Settings/WhatsNewView.swift +++ b/NearFuture/Views/Settings/WhatsNewView.swift @@ -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) } } }