Added more robust app documentation. Started working on an issue where entering zero as the first number in the Distance text field causes the app to crash.
This commit is contained in:
parent
7d6643112d
commit
b6677c2053
7 changed files with 108 additions and 41 deletions
|
|
@ -6,12 +6,23 @@
|
|||
//
|
||||
|
||||
import SwiftUI
|
||||
// this file will not have comments.
|
||||
// it is considered self-explanatory and best viewed in-app
|
||||
|
||||
struct June2022: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
//2022-06-14
|
||||
HStack {
|
||||
VStack (alignment: .leading) {
|
||||
Text("2022-06-14")
|
||||
.font(.title2)
|
||||
Text("Version Prerelease Build LVSXT10a.3\n")
|
||||
.font(.footnote)
|
||||
Text("\u{2022} Optimized some code to allow for future development\n\u{2022} Starting on fixing an issue where putting a zero as the first number in the Distance field causes the app to crash\n\u{2022} Partially added more robust app documentation")
|
||||
}
|
||||
Spacer()
|
||||
}
|
||||
.padding(30)
|
||||
|
||||
//2022-06-11
|
||||
HStack {
|
||||
VStack (alignment: .leading) {
|
||||
|
|
@ -43,7 +54,7 @@ struct June2022: View {
|
|||
VStack (alignment: .leading) {
|
||||
Text("2022-06-09")
|
||||
.font(.title2)
|
||||
Text("Version Prerelease LVSXT10c.2\n")
|
||||
Text("Version Prerelease Build LVSXT10c.2\n")
|
||||
.font(.footnote)
|
||||
Text("\u{2022} Worked on a simple login page to view contact info\n\t\u{2022} Spent *way* too long on it")
|
||||
}
|
||||
|
|
@ -63,6 +74,7 @@ struct June2022: View {
|
|||
Spacer()
|
||||
}
|
||||
.padding(30)
|
||||
|
||||
//2022-06-05
|
||||
HStack {
|
||||
VStack (alignment: .leading) {
|
||||
|
|
@ -70,9 +82,11 @@ struct June2022: View {
|
|||
.font(.title2)
|
||||
Text("Version Prerelease Build LVSXT10d.3\n")
|
||||
.font(.footnote)
|
||||
Text("\u{2022} Started work on converting the pace to a more understandable format\n\u{2022} ")
|
||||
Text("\u{2022} Started work on converting the pace to a more understandable format")
|
||||
}
|
||||
}
|
||||
.padding(30)
|
||||
|
||||
//2022-06-04
|
||||
HStack {
|
||||
VStack (alignment: .leading) {
|
||||
|
|
@ -118,6 +132,7 @@ struct June2022: View {
|
|||
}
|
||||
}
|
||||
|
||||
// done adding content to these
|
||||
struct May2022: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue