We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b22dab commit 8dba35eCopy full SHA for 8dba35e
cmd/trip.go
@@ -123,6 +123,12 @@ var tripCmd = &cobra.Command{
123
fmt.Printf("%s", t.NextStop)
124
case "PROGRESS":
125
fmt.Printf("%s", t.Progress)
126
+ case "ARRIVING":
127
+ fmt.Printf("%s", t.TimeToArrival)
128
+ case "REMAINING DISTANCE":
129
+ fmt.Printf("%s", t.RemainingDistance)
130
+ case "ARRIVAL TRACK":
131
+ fmt.Printf("%s", t.ArrivalTrack)
132
default:
133
fail(errors.New("unknown filter field"))
134
}
cmd/version.go
@@ -7,7 +7,7 @@ import (
7
)
8
9
const (
10
- version = "0.0.1"
+ version = "0.0.2"
11
12
13
var versionCmd = &cobra.Command{
0 commit comments