summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-02-28 21:50:04 -0500
committerUnknwon <u@gogs.io>2015-02-28 21:50:04 -0500
commitf44204e9449c09e0fef37a4974dc2f2043593d6f (patch)
treeba31d310aa942e40612f4f2b2f6f7eabb895091d
parent473e265727c1e47dd83e3f66a5cc92d2f027d951 (diff)
downloadgitea-f44204e9449c09e0fef37a4974dc2f2043593d6f.tar.gz
gitea-f44204e9449c09e0fef37a4974dc2f2043593d6f.zip
REAMDE: update
-rw-r--r--README.md2
-rw-r--r--README_ZH.md2
-rw-r--r--models/access.go1
3 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index ff4edd0935..5bc45adaf7 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Gogs (Go Git Service) is a painless self-hosted Git service written in Go.
![Demo](http://gogs.qiniudn.com/gogs_demo.gif)
-##### Current version: 0.5.15 Beta
+##### Current version: 0.5.16 Beta
### NOTICES
diff --git a/README_ZH.md b/README_ZH.md
index ffbbf0dd71..1d2cfa3e84 100644
--- a/README_ZH.md
+++ b/README_ZH.md
@@ -5,7 +5,7 @@ Gogs(Go Git Service) 是一个基于 Go 语言的自助 Git 服务。
![Demo](http://gogs.qiniudn.com/gogs_demo.gif)
-##### 当前版本:0.5.15 Beta
+##### 当前版本:0.5.16 Beta
## 开发目的
diff --git a/models/access.go b/models/access.go
index 00871f9481..f353c39a2f 100644
--- a/models/access.go
+++ b/models/access.go
@@ -87,6 +87,7 @@ func (u *User) GetAccessibleRepositories() (map[*Repository]AccessMode, error) {
repos[repo] = access.Mode
}
+ // FIXME: should we generate an ordered list here? Random looks weird.
return repos, nil
}