93 lines
4 KiB
Swift
93 lines
4 KiB
Swift
//
|
|
// ChangeLogData.swift
|
|
// Splits
|
|
//
|
|
// Created by Isaac Greene on 4/3/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct April2022: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
|
|
//2022-04-11
|
|
HStack {
|
|
VStack (alignment: .leading) {
|
|
Text("2022-04-11")
|
|
.font(.title2)
|
|
Text("Version Prerelease Build LVSXT10k\n")
|
|
.font(.footnote)
|
|
Text("\u{2022} Fixed total time display so now 300 seconds properly wraps to 5 minutes and minutes now also wrap when seconds equates to an amount that equals more than 60 minutes\n\u{2022} Forced all text in change log to left side of screen")
|
|
}
|
|
Spacer()
|
|
}
|
|
.padding(30)
|
|
|
|
//2022-04-10
|
|
HStack {
|
|
VStack (alignment: .leading) {
|
|
Text("2022-04-10")
|
|
.font(.title2)
|
|
Text("Version Prerelease Build LVSXT10m\n")
|
|
.font(.footnote)
|
|
Text("\u{2022} Added known issues view\n\t\u{2022} Might add this to the change log navigation at the bottom in the future\n\u{2022} Reverted to a different commit in Git so that the app can be used")
|
|
}
|
|
Spacer()
|
|
}
|
|
.padding(30)
|
|
|
|
//2022-04-09
|
|
HStack {
|
|
VStack (alignment: .leading) {
|
|
Text("2022-04-09:")
|
|
.font(.title2)
|
|
Text("Version Prerelease Build LVSXT10n\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\n\u{2022} Properly implemented tab view so that each view gets ONE (1) tab\n\u{2022} Added Git which I should've done long ago\n\u{2022} Tweaked various visual elements. For some reason, SF Symbols doesn't have a calculator??? So instead I'm using \"candybarphone\" but \"building\" looked good, too\n\u{2022} Got overflow of minutes working so now 100 minutes will show as 1 hour 40 minutes.\n\t\u{2022} Seconds overflow does not work (see known issues)")
|
|
}
|
|
Spacer()
|
|
}
|
|
.padding(30)
|
|
|
|
//2022-04-08
|
|
HStack {
|
|
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")
|
|
}
|
|
Spacer()
|
|
}
|
|
.padding(30)
|
|
|
|
//2022-04-05
|
|
HStack {
|
|
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")
|
|
}
|
|
Spacer()
|
|
}
|
|
.padding(30)
|
|
|
|
//2022-04-03
|
|
HStack {
|
|
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")
|
|
}
|
|
Spacer()
|
|
}
|
|
.padding(30)
|
|
}
|
|
}
|
|
}
|