[enh] v0.3.0

pull/74/head v0.3.0
Adam Tauber 7 years ago
parent 421e1e60e3
commit 231f1db55f

@ -1,3 +1,15 @@
## 0.3.0 2017.03.07
- Request header autocompletion
- Configurable statusline
- JSON requests with `-j`/`--json` flags
- Allow insecure HTTPS requests (`-k`/`--insecure` flags)
- Socks proxy support (`-x`/`--proxy` flags)
- Disable following redirects (`-R`/`--disable-redirects` flags)
- Enhanced TLS support (`-T`/`--tls`, `-1`/`--tlsv1`, `--tlsv1.0`, `--tlsv1.1`, `--tlsv1.2` flags)
- Commands for line and word deletion
- Home/end navigation fix
## 0.2.0 2017.02.18
- Config file support with configurable keybindings
@ -10,3 +22,5 @@
- Multiple UI bugfixes
## 0.1.0 2017.02.11
Initial release

Binary file not shown.

Before

Width:  |  Height:  |  Size: 216 KiB

After

Width:  |  Height:  |  Size: 105 KiB

@ -28,7 +28,7 @@ import (
"github.com/mattn/go-runewidth"
)
const VERSION = "0.2.0"
const VERSION = "0.3.0"
const TIMEOUT_DURATION = 5 // in seconds
const WINDOWS_OS = "windows"

Loading…
Cancel
Save