Merge branch 'main' into map_custom_tiles_and_caching

This commit is contained in:
Garth Vander Houwen 2022-01-20 18:24:00 -08:00 committed by GitHub
commit ba7966d38f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View file

@ -34,7 +34,7 @@ struct UserMessageList: View {
var body: some View {
let firmwareVersion = bleManager.lastConnnectionVersion
let minimumVersion = "1.2.50"
let minimumVersion = "1.2.55"
let hasTapbackSupport = minimumVersion.compare(firmwareVersion, options: .numeric) == .orderedAscending || minimumVersion.compare(firmwareVersion, options: .numeric) == .orderedSame
VStack {

View file

@ -56,10 +56,12 @@ struct MeshLog: View {
}
}) {
Image(systemName: "trash").imageScale(.large).foregroundColor(.gray)
Image(systemName: "trash.circle.fill")
.symbolRenderingMode(.hierarchical)
.imageScale(.large).foregroundColor(.accentColor)
Text("Clear Log").font(.caption)
.font(.caption)
.foregroundColor(.gray)
.foregroundColor(.accentColor)
}
.padding()
.background(Color(.systemGray6))
@ -70,10 +72,12 @@ struct MeshLog: View {
Button(action: {
isExporting = true
}) {
Image(systemName: "arrow.down.circle.fill").imageScale(.large).foregroundColor(.gray)
Image(systemName: "arrow.down.circle.fill")
.symbolRenderingMode(.hierarchical)
.imageScale(.large).foregroundColor(.accentColor)
Text("Download Log")
.font(.caption)
.foregroundColor(.gray)
.foregroundColor(.accentColor)
}
.padding()
.background(Color(.systemGray6))