Browse Source

fix #2042

tags/v0.9.99
Unknwon 8 years ago
parent
commit
d3a5ff7b6b
4 changed files with 5 additions and 4 deletions
  1. 1
    1
      README.md
  2. 1
    1
      gogs.go
  3. 2
    1
      models/repo.go
  4. 1
    1
      templates/.VERSION

+ 1
- 1
README.md View File

@@ -5,7 +5,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra

![](public/img/gogs-large-resize.png)

##### Current version: 0.7.22 Beta
##### Current version: 0.7.24 Beta

<table>
<tr>

+ 1
- 1
gogs.go View File

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)

const APP_VER = "0.7.22.1125 Beta"
const APP_VER = "0.7.24.1130 Beta"

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())

+ 2
- 1
models/repo.go View File

@@ -1120,6 +1120,7 @@ func DeleteRepository(uid, repoID int64) error {
&Access{RepoID: repo.ID},
&Action{RepoID: repo.ID},
&Watch{RepoID: repoID},
&Star{RepoID: repoID},
&Mirror{RepoID: repoID},
&IssueUser{RepoID: repoID},
&Milestone{RepoID: repoID},
@@ -1571,7 +1572,7 @@ func CheckRepoStats() {
repoStatsCheck(checkers[i])
}

// FIXME: use checker when v0.8, stop supporting old fork repo format.
// FIXME: use checker when v0.9, stop supporting old fork repo format.
// ***** START: Repository.NumForks *****
results, err := x.Query("SELECT repo.id FROM `repository` repo WHERE repo.num_forks!=(SELECT COUNT(*) FROM `repository` WHERE fork_id=repo.id)")
if err != nil {

+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.7.22.1125 Beta
0.7.24.1130 Beta

Loading…
Cancel
Save