Browse Source

#2992 set default style name when empty in AfterSet

for-closed-social
Unknwon 8 years ago
parent
commit
78b8b63774
5 changed files with 916 additions and 696 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      gogs.go
  3. +4
    -0
      models/repo.go
  4. +909
    -693
      modules/bindata/bindata.go
  5. +1
    -1
      templates/.VERSION

+ 1
- 1
README.md View File

@ -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 version: 0.9.20
##### Current version: 0.9.22
| Web | UI | Preview |
|:-------------:|:-------:|:-------:|

+ 1
- 1
gogs.go View File

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

+ 4
- 0
models/repo.go View File

@ -206,6 +206,10 @@ func (repo *Repository) AfterSet(colName string, _ xorm.Cell) {
repo.NumOpenPulls = repo.NumPulls - repo.NumClosedPulls
case "num_closed_milestones":
repo.NumOpenMilestones = repo.NumMilestones - repo.NumClosedMilestones
case "external_tracker_style":
if len(repo.ExternalTrackerStyle) == 0 {
repo.ExternalTrackerStyle = markdown.ISSUE_NAME_STYLE_NUMERIC
}
case "created_unix":
repo.Created = time.Unix(repo.CreatedUnix, 0).Local()
case "updated_unix":

+ 909
- 693
modules/bindata/bindata.go
File diff suppressed because it is too large
View File


+ 1
- 1
templates/.VERSION View File

@ -1 +1 @@
0.9.20.0404
0.9.22.0422

Loading…
Cancel
Save