Initial Commit
This commit is contained in:
commit
15389248af
17 changed files with 1131 additions and 0 deletions
54
Splits/ChangeLogData.swift
Normal file
54
Splits/ChangeLogData.swift
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
//
|
||||
// ChangeLogData.swift
|
||||
// Splits
|
||||
//
|
||||
// Created by Isaac Greene on 4/3/22.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct April2022: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
//2022-04-09
|
||||
VStack (alignment: .leading) {
|
||||
Text("2022-04-09:")
|
||||
.font(.title2)
|
||||
Text("Version Prerelease Build LVSXT10q\n")
|
||||
.font(.footnote)
|
||||
Text("\u{2022} Fixed the math with seconds so now you can actually use them! YEAH BABY!\n\u{2022} Rounded pace so that you don't get values like 4.999999999999996 minutes per km\n\t\u{2022} Working on getting the seconds to change into minutes like 340 seconds will show as 5 minutes 40 seconds or \"0:05:40\"\n\u{2022} Removed warning about not using seconds (because they work now!)\n\u{2022} Got math color right. Issue was I had my colors switched so it showed black text in dark mode, and white text in light mode.\n\u{2022} Fixed distance between time boxes\n\u{2022} Removed text about not using seconds greater than 59 in text field")
|
||||
}
|
||||
.padding(30)
|
||||
|
||||
//2022-04-08
|
||||
VStack (alignment: .leading) {
|
||||
Text("2022-04-08:")
|
||||
.font(.title2)
|
||||
Text("Version Prerelease Build LVSXT10r\n")
|
||||
.font(.footnote)
|
||||
Text("\u{2022} Added bullet points to change log\n\u{2022} Changed text in \"Help\" section about using seconds (ended up not working)\n\u{2022} Tried unsuccessfully to dynamically change the color of the pace formula whether in dark or light mode\n\u{2022} Temporarily removed change log in Build t\n\u{2022} Fixed positioning of minutes and seconds text boxes\n\u{2022} Total time now shows correct minute/hour time (minutes and hours are no longer equal)\n\t\u{2022} Seconds still don't work properly")
|
||||
}
|
||||
.padding(30)
|
||||
|
||||
//2022-04-05
|
||||
VStack (alignment: .leading) {
|
||||
Text("2022-04-05:")
|
||||
.font(.title2)
|
||||
Text("Version Prerelease Build LVSXT10u.2\n")
|
||||
.font(.footnote)
|
||||
Text("\u{2022} Reformatted change log to include better navigation and clearer notice of changes")
|
||||
}
|
||||
.padding(30)
|
||||
|
||||
//2022-04-03
|
||||
VStack (alignment: .leading) {
|
||||
Text("2022-04-03:")
|
||||
.font(.title2)
|
||||
Text("Version Prerelease Build LVSXT10u\n")
|
||||
.font(.footnote)
|
||||
Text("\u{2022} Fixed math\n\u{2022} Implemented change log view\n\u{2022} Restructured code so it gave fewer errors\n\u{2022} Added correct pace data\n\t\u{2022} At this time, the seconds functionality is entirely broken\n\u{2022} Implemented total time view\n\t\u{2022} For some reason, the view for the minutes automatically fills in for the hours as well")
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue