76 lines
1.8 KiB
Swift
76 lines
1.8 KiB
Swift
//
|
|
// FeaturesView.swift
|
|
// Splits
|
|
//
|
|
// Created by Isaac Greene on 6/3/22.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct NewFeatures: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
Text("New Features\n")
|
|
.font(.largeTitle)
|
|
.bold()
|
|
.padding(.top, 40)
|
|
VStack(alignment: .leading) {
|
|
Text("\u{2022} Reformatted the Docs tabs and made the common things up at the top")
|
|
Text("Implemented in Version Prerelease LVSXT10d.2\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
Text("\u{2022} Added the Features, Known Issues, and moved the Change Log for better navigation")
|
|
Text("Implemented in Version Prerelease LVSXT10d\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
Text("\u{2022} Total time now shows the time in a way we humans can understand")
|
|
Text("Implemented in Version Prerelease LVSXT10k\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
}
|
|
.padding(30)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct InProgressFeatures: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
Text("Features In Progress")
|
|
.font(.largeTitle)
|
|
.bold()
|
|
.padding(.top, 40)
|
|
Text("Note: this does not include things I have to fix\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
VStack(alignment: .leading) {
|
|
Text("\u{2022} Working on a conversion between measurements for pace and distance\n")
|
|
}
|
|
.padding(30)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct DeprecatedFeatures: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
Text("Deprecated Features")
|
|
.font(.largeTitle)
|
|
.bold()
|
|
.padding(.top, 40)
|
|
VStack(alignment: .leading) {
|
|
Text("\n\u{2022} Removed the picker wheel to enter total time (a truly horrible system)")
|
|
Text("Stricken before recorded history\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
}
|
|
.padding(30)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct FeaturesView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NewFeatures()
|
|
}
|
|
}
|