v3.0.0 🎉

Fix install command
This commit is contained in:
Caleb Bassi
2019-03-07 02:50:20 -08:00
parent eaec27d1df
commit 70fa7b8887
30 changed files with 53 additions and 52 deletions

View File

@@ -10,7 +10,7 @@ import (
rw "github.com/mattn/go-runewidth"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
type BarChart struct {

View File

@@ -8,7 +8,7 @@ import (
"fmt"
"image"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
type Gauge struct {

View File

@@ -8,7 +8,7 @@ import (
"image"
"image/color"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
type Image struct {

View File

@@ -9,7 +9,7 @@ import (
rw "github.com/mattn/go-runewidth"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
type List struct {

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
type Paragraph struct {

View File

@@ -4,7 +4,7 @@ import (
"image"
"math"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
const (

View File

@@ -8,7 +8,7 @@ import (
"fmt"
"image"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
// Plot has two modes: line(default) and scatter.

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
// Sparkline is like: ▅▆▂▂▅▇▂▂▃▆▆▆▅▃. The data points should be non-negative integers.

View File

@@ -10,7 +10,7 @@ import (
rw "github.com/mattn/go-runewidth"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
type StackedBarChart struct {

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
/*Table is like:

View File

@@ -7,7 +7,7 @@ package widgets
import (
"image"
. "github.com/gizak/termui"
. "github.com/gizak/termui/v3"
)
// TabPane is a renderable widget which can be used to conditionally render certain tabs/views.