aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/issue9
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@users.noreply.github.com>2018-05-21 14:34:20 +0200
committerLauris BH <lauris@nix.lv>2018-05-21 15:34:20 +0300
commit3f3383dc0a0de9d6a0444bba71603e5c5d248f0b (patch)
tree34f4f2ad9ce686d265c2f81e6a3e1b02b92e8e22 /vendor/github.com/issue9
parentd7fd9bf7bb25e7537aef335a0927c216aed881a3 (diff)
downloadgitea-3f3383dc0a0de9d6a0444bba71603e5c5d248f0b.tar.gz
gitea-3f3383dc0a0de9d6a0444bba71603e5c5d248f0b.zip
Migrate to dep (#3972)
* Update makefile to use dep * Migrate to dep * Fix some deps * Try to find a better version for golang.org/x/net * Try to find a better version for golang.org/x/oauth2
Diffstat (limited to 'vendor/github.com/issue9')
-rw-r--r--vendor/github.com/issue9/identicon/README.md40
1 files changed, 0 insertions, 40 deletions
diff --git a/vendor/github.com/issue9/identicon/README.md b/vendor/github.com/issue9/identicon/README.md
deleted file mode 100644
index a68c73bc4e..0000000000
--- a/vendor/github.com/issue9/identicon/README.md
+++ /dev/null
@@ -1,40 +0,0 @@
-identicon [![Build Status](https://travis-ci.org/issue9/identicon.svg?branch=master)](https://travis-ci.org/issue9/identicon)
-======
-
-根据用户的IP、邮箱名等任意数据为用户产生漂亮的随机头像。
-
-![screenhost.1](https://raw.github.com/issue9/identicon/master/screenshot/1.png)
-![screenhost.4](https://raw.github.com/issue9/identicon/master/screenshot/4.png)
-![screenhost.5](https://raw.github.com/issue9/identicon/master/screenshot/5.png)
-![screenhost.6](https://raw.github.com/issue9/identicon/master/screenshot/6.png)
-![screenhost.7](https://raw.github.com/issue9/identicon/master/screenshot/7.png)
-
-```go
-// 根据用户访问的IP,为其生成一张头像
-img, _ := identicon.Make(128, color.NRGBA{},color.NRGBA{}, []byte("192.168.1.1"))
-fi, _ := os.Create("/tmp/u1.png")
-png.Encode(fi, img)
-fi.Close()
-
-// 或者
-ii, _ := identicon.New(128, color.NRGBA{}, color.NRGBA{}, color.NRGBA{}, color.NRGBA{})
-img := ii.Make([]byte("192.168.1.1"))
-img = ii.Make([]byte("192.168.1.2"))
-```
-
-### 安装
-
-```shell
-go get github.com/issue9/identicon
-```
-
-
-### 文档
-
-[![Go Walker](http://gowalker.org/api/v1/badge)](http://gowalker.org/github.com/issue9/identicon)
-[![GoDoc](https://godoc.org/github.com/issue9/identicon?status.svg)](https://godoc.org/github.com/issue9/identicon)
-
-
-### 版权
-
-本项目采用[MIT](http://opensource.org/licenses/MIT)开源授权许可证,完整的授权说明可在[LICENSE](LICENSE)文件中找到。