diff options
author | Unknwon <u@gogs.io> | 2015-07-14 19:47:20 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-07-14 19:47:20 +0800 |
commit | 81adbe17caf4ff8d7fc920dfe661640ab248ad12 (patch) | |
tree | 419ef227fff057023a6edbfd0a9d5a06ada1d215 | |
parent | 2724dbd450663117258116a131309cf95120d761 (diff) | |
download | gitea-81adbe17caf4ff8d7fc920dfe661640ab248ad12.tar.gz gitea-81adbe17caf4ff8d7fc920dfe661640ab248ad12.zip |
use pam and update TRANSLATORS
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | conf/locale/TRANSLATORS | 1 | ||||
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | modules/auth/pam/pam.go | 2 | ||||
-rw-r--r-- | modules/auth/pam/pam_stub.go | 2 | ||||
-rw-r--r-- | templates/.VERSION | 2 |
6 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 113773d697..b6b815c9bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_install: - sudo apt-get update -qq - sudo apt-get install -y libpam-dev -script: go build -v +script: go build -v -tags "pam" notifications: email: diff --git a/conf/locale/TRANSLATORS b/conf/locale/TRANSLATORS index 6680539e08..c94b622666 100644 --- a/conf/locale/TRANSLATORS +++ b/conf/locale/TRANSLATORS @@ -2,6 +2,7 @@ # Order of name is meaningless. Akihiro YAGASAKI <yaggytter@momiage.com> +Alexander Steinhöfer <kontakt@lx-s.de> Christoph Kisfeld <christoph.kisfeld@gmail.com> Huimin Wang <wanghm2009@hotmail.co.jp> Thomas Fanninger <gogs.thomas@fanninger.at> @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.6.1.0710 Beta" +const APP_VER = "0.6.1.0714 Beta" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/modules/auth/pam/pam.go b/modules/auth/pam/pam.go index 7d150b1c0b..7f326d42f5 100644 --- a/modules/auth/pam/pam.go +++ b/modules/auth/pam/pam.go @@ -1,4 +1,4 @@ -// +build !windows +// +build pam // Copyright 2014 The Gogs Authors. All rights reserved. // Use of this source code is governed by a MIT-style diff --git a/modules/auth/pam/pam_stub.go b/modules/auth/pam/pam_stub.go index 2f210bf6e7..33ac751a34 100644 --- a/modules/auth/pam/pam_stub.go +++ b/modules/auth/pam/pam_stub.go @@ -1,4 +1,4 @@ -// +build windows +// +build !pam // Copyright 2014 The Gogs Authors. All rights reserved. // Use of this source code is governed by a MIT-style diff --git a/templates/.VERSION b/templates/.VERSION index 0249535505..627dda90e4 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.6.1.0710 Beta
\ No newline at end of file +0.6.1.0714 Beta
\ No newline at end of file |