diff --git a/app/app/styles/section/github.scss b/app/app/styles/section/github.scss index 5defbaec..0c275ff5 100644 --- a/app/app/styles/section/github.scss +++ b/app/app/styles/section/github.scss @@ -79,6 +79,7 @@ tbody.github td { border: none !important; padding: 8px 30px !important; + vertical-align: top; } span.label-private { diff --git a/core/product.go b/core/product.go index 8cdf74e8..9c574cf9 100644 --- a/core/product.go +++ b/core/product.go @@ -26,8 +26,8 @@ type ProdInfo struct { // Product returns product edition details func Product() (p ProdInfo) { p.Major = "0" - p.Minor = "16" - p.Patch = "1" + p.Minor = "17" + p.Patch = "0" p.Version = fmt.Sprintf("%s.%s.%s", p.Major, p.Minor, p.Patch) p.Edition = "Community" p.Title = fmt.Sprintf("%s Edition", p.Edition) diff --git a/core/section/github/commits_template.go b/core/section/github/commits_template.go index 117394d1..a092f732 100644 --- a/core/section/github/commits_template.go +++ b/core/section/github/commits_template.go @@ -15,12 +15,12 @@ const commitsTemplate = `
{{if .HasAuthorStats}}

Contributors

- +

There - {{if eq 1 (len .AuthorStats)}}is{{else}}are{{end}} - {{len .AuthorStats}} - {{if eq 1 (len .AuthorStats)}}contributor{{else}}contributors{{end}} + {{if eq 1 .NumContributors}}is{{else}}are{{end}} + {{.NumContributors}} + {{if eq 1 .NumContributors}}contributor{{else}}contributors{{end}} across {{.RepoCount}} {{if eq 1 .RepoCount}} repository. {{else}} repositories. {{end}}

@@ -29,11 +29,11 @@ const commitsTemplate = ` {{range $stats := .AuthorStats}} - + @{{$stats.Author}} - +
{{$stats.Author}}
{{if gt $stats.OpenIssues 0}} has been assigned {{$stats.OpenIssues}} @@ -81,6 +81,7 @@ const commitsTemplate = ` {{if $commit.ShowBranch}}{{$commit.Repo}}:{{$commit.Branch}}{{end}} +
{{end}} diff --git a/core/section/github/issues_template.go b/core/section/github/issues_template.go index e4f5e59d..5c967694 100644 --- a/core/section/github/issues_template.go +++ b/core/section/github/issues_template.go @@ -50,11 +50,11 @@ const (

- +
{{range $data := .Issues}} - - - diff --git a/core/section/github/milestones_template.go b/core/section/github/milestones_template.go index 272b45dc..9ff33bb8 100644 --- a/core/section/github/milestones_template.go +++ b/core/section/github/milestones_template.go @@ -42,7 +42,7 @@ const ( {{if eq 1 .RepoCount}} repository. {{else}} repositories. {{end}}

-
+
{{if $data.IsOpen}} ` + openIsvg + ` @@ -64,12 +64,12 @@ const (
+
{{$data.Message}} #{{$data.ID}}

{{$data.Milestone}} {{$data.Labels}}
+
{{$data.Repo}}

{{$data.Creator}} opened on {{$data.Date}}
+
{{range $data := .Milestones}} @@ -55,14 +55,14 @@ const ( {{end}} {{end}} - -
+
{{$data.Name}}
{{if $data.IsMilestone}} {{$data.DueDate}} {{end}}
{{$data.Repo}}
+ {{if $data.IsMilestone}}
{{$data.CompleteMsg}} complete {{$data.OpenIssues}} open {{$data.ClosedIssues}} closed diff --git a/core/section/github/summary_template.go b/core/section/github/summary_template.go index 13d72597..82dc3e1b 100644 --- a/core/section/github/summary_template.go +++ b/core/section/github/summary_template.go @@ -33,11 +33,11 @@ const summaryTemplate = ` shared {{if eq 1 (len .SharedLabels)}} label {{else}} labels {{end}} across the repositories.

- +
{{range $slabel := .SharedLabels}} -
+ {{$slabel.Name}} ({{$slabel.Count}}) in {{$slabel.Repos}}