Skip to content

Commit 70121f2

Browse files
committed
updating release notes
1 parent 201569e commit 70121f2

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Source/Platforms/iOS/Settings/ReleaseNotes/ReleaseNotesList.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ struct ReleaseNotesList: View {
2525

2626
ReleaseNotesListButton(releaseDate: Calendar.current.date(from: DateComponents(year: 2025, month: 6, day: 10))!,
2727
buttonText: "Version 3",
28-
buttonDescription: "Fully open source the application",
28+
buttonDescription: "Search Ops is now completely Open Source, entire application on Github, with a Convenience Pricing Model, a small one time fee for lifetime automated updates",
2929
buttonAction: { showingRelease = "Version 3.0" }, activeButton: true, isLatest: true)
3030
.padding(.top, 15)
3131

Source/Platforms/iOS/Settings/ReleaseNotes/Versions/Version_3_0.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct Version_3_0: View {
4646

4747
VStack(alignment:.leading, spacing:15) {
4848
VStack(alignment:.leading, spacing:5) {
49-
Text("Search Ops is now completely Open Source, available to see the entire application on Github with a Convenience Pricing Model.")
49+
Text("Search Ops is now completely Open Source, available to see the entire application on Github with a Convenience Pricing Model")
5050
.padding(.bottom, 10)
5151

5252
Image("github_repo")

Source/Platforms/iOS/Settings/TechnicalSettings/TechnicalSettings.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,28 @@ struct TechnicalSettings: View {
4141
.frame(maxWidth: .infinity, alignment: .leading)
4242
.padding(.bottom, 10)
4343

44-
Text("This will delete the Realm Database on disk, and the encrypted key in the keychain")
44+
Text("""
45+
This will delete:
46+
* Realm Database
47+
* Encryption Key in Keychain
48+
* Welcome screen boolean
49+
""")
4550
.frame(maxWidth: .infinity, alignment: .leading)
4651
.padding(.bottom, 10)
4752

4853
Text("This is non-reversable. A new blank realm database and new encryption key will be generated so you can continue to use the application.")
4954
.frame(maxWidth: .infinity, alignment: .leading)
5055
.padding(.bottom, 10)
5156

57+
5258
Button(action: {
5359
try! debug()
5460
}, label: {
5561
Text("Delete Realm Database")
5662
.foregroundColor(.white)
5763
.padding(.vertical, 15)
5864
.frame(maxWidth: .infinity, alignment: .center)
59-
.background(Color("WarnText"))
65+
.background(Color.red)
6066
.cornerRadius(5.0)
6167

6268
})

0 commit comments

Comments
 (0)