mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Merge branch 'main'
This commit is contained in:
commit
58cad91daf
3 changed files with 6 additions and 3 deletions
4
.github/workflows/stale.yml
vendored
4
.github/workflows/stale.yml
vendored
|
|
@ -18,5 +18,5 @@ jobs:
|
|||
- name: Stale PR+Issues
|
||||
uses: actions/stale@v9.0.0
|
||||
with:
|
||||
exempt-issue-labels: help wanted
|
||||
exempt-pr-labels:
|
||||
exempt-issue-labels: 'has sponsor,needs sponsor,help wanted,backlog,security issue'
|
||||
exempt-pr-labels: 'has sponsor,needs sponsor,help wanted,backlog,security issue'
|
||||
|
|
|
|||
|
|
@ -51,6 +51,10 @@ enum MeshMapTypes: Int, CaseIterable, Identifiable {
|
|||
}
|
||||
|
||||
enum MeshMapDistances: Double, CaseIterable, Identifiable {
|
||||
case twoMiles = 3218.69
|
||||
case fiveMiles = 8046.72
|
||||
case tenMiles = 16093.4
|
||||
case twentyFiveMiles = 40233.6
|
||||
case fiftyMiles = 80467.2
|
||||
case oneHundredMiles = 160934
|
||||
case twoHundredMiles = 321869
|
||||
|
|
|
|||
|
|
@ -72,7 +72,6 @@ struct TraceRouteLog: View {
|
|||
}
|
||||
.listStyle(.plain)
|
||||
}
|
||||
.frame(minHeight: CGFloat((node.traceRoutes?.count ?? 0) * 40), maxHeight: 250)
|
||||
Divider()
|
||||
ScrollView {
|
||||
if selectedRoute != nil {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue