Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
354f2440
Commit
354f2440
authored
Nov 17, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'contributor-graph-by-email' into 'master'
See merge request !1705
parents
b1abe90a
7b014338
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
CHANGELOG
CHANGELOG
+3
-1
app/assets/javascripts/stat_graph_contributors_util.js.coffee
...assets/javascripts/stat_graph_contributors_util.js.coffee
+2
-3
No files found.
CHANGELOG
View file @
354f2440
...
@@ -3,6 +3,8 @@ Please view this file on the master branch, on stable branches it's out of date.
...
@@ -3,6 +3,8 @@ Please view this file on the master branch, on stable branches it's out of date.
v 8.3.0 (unreleased)
v 8.3.0 (unreleased)
v 8.2.0
v 8.2.0
v 8.2.0 (unreleased)
- Fix grouping of contributors by email in graph.
- Remove CSS property preventing hard tabs from rendering in Chromium 45 (Stan Hu)
- Remove CSS property preventing hard tabs from rendering in Chromium 45 (Stan Hu)
- Fix Drone CI service template not saving properly (Stan Hu)
- Fix Drone CI service template not saving properly (Stan Hu)
- Fix avatars not showing in Atom feeds and project issues when Gravatar disabled (Stan Hu)
- Fix avatars not showing in Atom feeds and project issues when Gravatar disabled (Stan Hu)
...
@@ -1955,4 +1957,4 @@ v 0.8.0
...
@@ -1955,4 +1957,4 @@ v 0.8.0
- stability
- stability
- security fixes
- security fixes
- increased test coverage
- increased test coverage
- email notification
- email notification
\ No newline at end of file
app/assets/javascripts/stat_graph_contributors_util.js.coffee
View file @
354f2440
...
@@ -6,7 +6,7 @@ window.ContributorsStatGraphUtil =
...
@@ -6,7 +6,7 @@ window.ContributorsStatGraphUtil =
for
entry
in
log
for
entry
in
log
@
add_date
(
entry
.
date
,
total
)
unless
total
[
entry
.
date
]
?
@
add_date
(
entry
.
date
,
total
)
unless
total
[
entry
.
date
]
?
data
=
by_author
[
entry
.
author_name
]
#
|| by_email[entry.author_email]
data
=
by_author
[
entry
.
author_name
]
||
by_email
[
entry
.
author_email
]
data
?=
@
add_author
(
entry
,
by_author
,
by_email
)
data
?=
@
add_author
(
entry
,
by_author
,
by_email
)
@
add_date
(
entry
.
date
,
data
)
unless
data
[
entry
.
date
]
@
add_date
(
entry
.
date
,
data
)
unless
data
[
entry
.
date
]
...
@@ -95,5 +95,4 @@ window.ContributorsStatGraphUtil =
...
@@ -95,5 +95,4 @@ window.ContributorsStatGraphUtil =
if
date_range
is
null
||
date_range
[
0
]
<=
new
Date
(
date
)
<=
date_range
[
1
]
if
date_range
is
null
||
date_range
[
0
]
<=
new
Date
(
date
)
<=
date_range
[
1
]
true
true
else
else
false
false
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment