소스 검색

Ignore repository with issue disabled or use external tracker in dashboard issues

Unknwon 7 년 전
부모
커밋
cf6d321991
5개의 변경된 파일12개의 추가작업 그리고 10개의 파일을 삭제
  1. 7 6
      Makefile
  2. 1 1
      README.md
  3. 1 1
      gogs.go
  4. 2 1
      routers/user/home.go
  5. 1 1
      templates/.VERSION

+ 7 - 6
Makefile

@@ -16,18 +16,19 @@ NOW = $(shell date -u '+%Y%m%d%I%M%S')
 
 .IGNORE: public/css/gogs.css
 
-build: $(GENERATED)
-	go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
-	cp '$(GOPATH)/bin/gogs' .
-
+# FIXME: find a way to ignore /vendor/ and /data/ directories.
 govet:
 	go tool vet -composites=false -methods=false -structtags=false .
 
-build-dev: $(GENERATED) govet
+build: $(GENERATED) govet
+	go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
+	cp '$(GOPATH)/bin/gogs' .
+
+build-dev: $(GENERATED) 
 	go install $(BUILD_FLAGS) -tags '$(TAGS)'
 	cp '$(GOPATH)/bin/gogs' .
 
-build-dev-race: $(GENERATED) govet
+build-dev-race: $(GENERATED)
 	go install $(BUILD_FLAGS) -race -tags '$(TAGS)'
 	cp '$(GOPATH)/bin/gogs' .
 

+ 1 - 1
README.md

@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
 
 ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
 
-##### Current tip version: 0.9.62 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions)
+##### Current tip version: 0.9.63 (see [Releases](https://github.com/gogits/gogs/releases) for binary versions)
 
 | Web | UI  | Preview  |
 |:-------------:|:-------:|:-------:|

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.9.62.0805"
+const APP_VER = "0.9.63.0805"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())

+ 2 - 1
routers/user/home.go

@@ -220,7 +220,8 @@ func Issues(ctx *context.Context) {
 	showRepos := make([]*models.Repository, 0, len(repos))
 	for _, repo := range repos {
 		if (isPullList && repo.NumPulls == 0) ||
-			(!isPullList && repo.NumIssues == 0) {
+			(!isPullList &&
+				(!repo.EnableIssues || repo.EnableExternalTracker || repo.NumIssues == 0)) {
 			continue
 		}
 

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.9.62.0805
+0.9.63.0805