75 lines
1.9 KiB
Swift
75 lines
1.9 KiB
Swift
//
|
|
// FeaturesView.swift
|
|
// Splits
|
|
//
|
|
// Created by Isaac Greene on 2022-06-03.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
struct NewFeatures: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
VStack(alignment: .leading) {
|
|
Text("\u{2022} Added TouchID and FaceID to sign in")
|
|
Text("Implemented in Version Release Candidate 2\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
Text("\u{2022} Implemented a way to dismiss the keyboard")
|
|
Text("Implemented in Version Release Candidate\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
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)
|
|
}
|
|
.navigationTitle("New Features")
|
|
}
|
|
}
|
|
|
|
struct InProgressFeatures: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
Text("Note: this does not include things I have to fix\n")
|
|
.font(.footnote)
|
|
.italic()
|
|
VStack(alignment: .leading) {
|
|
Text("\u{2022} Adding a better-formatted Contacts tab on iPad\n")
|
|
}
|
|
.padding(30)
|
|
}
|
|
.navigationTitle("In Progress")
|
|
}
|
|
}
|
|
|
|
struct DeprecatedFeatures: View {
|
|
var body: some View {
|
|
ScrollView {
|
|
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)
|
|
}
|
|
.navigationTitle("Deprecated")
|
|
}
|
|
}
|
|
|
|
struct FeaturesView_Previews: PreviewProvider {
|
|
static var previews: some View {
|
|
NewFeatures()
|
|
}
|
|
}
|