It's been so long I don't even know what I changed. Removed the contacts tab completely, before it was still in the app just not accessible. Switched over from RichTextView to iosMath saving about 4MB. Couple small design tweaks. Reduced total app size from 10MB to 4.5

This commit is contained in:
Isaac Greene 2023-06-06 10:42:22 -04:00
parent 0dc0267dbd
commit 099728c760
17 changed files with 222 additions and 395 deletions

View file

@ -7,6 +7,61 @@
import SwiftUI
struct June2023: View {
var body: some View {
ScrollView {
//2023-06-05
HStack {
VStack (alignment: .leading) {
Text("2023-06-05")
.font(.title2)
Text("Version Prerelease Build LVSXT11y\n")
.font(.footnote)
Text("\u{2022} Made internal changes, like reducing app size by about six MB.\n \u{2022} Trying to figure out a better way to make these changelogs than handwriting\n\u{2022} Changed the look of the \"See our math\" button\n\u{2022} Started work on visual enhancements. kinda ugly right now")
}
Spacer()
}
.padding(30)
//2023-06-04
HStack {
VStack (alignment: .leading) {
Text("2023-06-04")
.font(.title2)
Text("Version 1.0.0b\n")
.font(.footnote)
Text("\u{2022} Reimplemented the math equation with LaTeX")
}
Spacer()
}
.padding(30)
}
.navigationTitle("June 2023 Log")
.navigationBarTitleDisplayMode(.inline)
}
}
struct September2022: View {
var body: some View {
ScrollView {
//2022-09-16
HStack {
VStack (alignment: .leading) {
Text("2022-09-16")
.font(.title2)
Text("Version 1.0.0\n")
.font(.footnote)
Text("\u{2022} Removed contacts tab")
}
Spacer()
}
.padding(30)
}
.navigationTitle("September 2022 Log")
.navigationBarTitleDisplayMode(.inline)
}
}
struct July2022: View {
var body: some View {
ScrollView {
@ -36,6 +91,8 @@ struct July2022: View {
}
.padding(30)
}
.navigationTitle("July 2022 Log")
.navigationBarTitleDisplayMode(.inline)
}
}