~dricottone/image2ascii

Merging branch 'log-more-helpfully' from mjip/PR #22

Log terminal size determination error instead of nil

Log a more descriptive message than nil in the case of an error with terminal
size determination
Adding toolchain and updating documentation
Migrate from Dep to Go Modules

Go Modules are the preferred way to manage dependencies in Go programs
since version 1.11. The migration process involves:

 1. go mod init git.dominic-ricottone.com/~dricottone/image2ascii
    (replace the host as needed)
 2. Replace the host in files requiring an internal module
    (this was specifically image2ascii.go, convert/convert.go,
    convert/resize.go, and convert/resize_test.go)
 3. go mod tidy
 4. rm -rf vendor/ Gopkg.lock Gopkg.toml
 5. go get -u

go.mod now contains all the information required to build the program.
Log terminal size determination error instead of nil
4db5eded — klei22 2 years ago
Update install instructions from to `go install`

Looks like `go get` has been deprecated.

New method for installation is `go install <repo-url>@latest`

In this case:

```sh
go install github.com/qeesung/image2ascii@latest
```
01cc27c9 — 秦世成 5 years ago
Add Awesome badge
eaef718c — qeesung 5 years ago
Fixed the high cyclomatic complexity issue
e8d148c8 — 秦世成 5 years ago
Fixed the golint issue
2ab47357 — 秦世成 5 years ago
Fixed the golint issue
fc387392 — 秦世成 5 years ago
Disable deploy
ea02edb8 — qeesung 5 years ago
Refactor rename the PixelASCII to CharPixel
fe3f9eba — qeesung 5 years ago
fixed the go lint issue
596b61e1 — qeesung 5 years ago
Add method to support convert image to pixelASCII matrix
90b8bfee — qeesung 5 years ago
remove useless code
2f0a0c7d — 秦世成 5 years ago
Update README.md
22ac3f41 — 秦世成 5 years ago
Update README.md
5435fd05 — 秦世成 5 years ago
Update README.md
Next