Skip to content

Commit f6c2078

Browse files
committed
Merge remote-tracking branch 'macbookandrew/improve-commit-view'
2 parents f45be95 + 8c55b26 commit f6c2078

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
**If you get an error right after updating just close all Brackets instances and start again. We are aware of this problem.**
44

5-
## 0.14.20 (Unreleased)
5+
## 0.14.21 (07/04/2015)
6+
* Added commit date to file history viewer by [Andrew Minion](https://github.com/macbookandrew)
7+
8+
## 0.14.20 (25/03/2015)
69
* Staged files are now remembered when using shortcuts to commit a single file or commit all files by [Ignacio Moreno](https://github.com/nmorenor)
710

811
## 0.14.19 (25/03/2015)

styles/history.less

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
margin: -5px -3px 0 0;
111111
padding-left: 50px;
112112
}
113-
.commit-hash, .commit-author {
113+
.commit-hash, .commit-author, .commit-time {
114114
margin-right: 10px;
115115
display: inline-block;
116116
color: @bc-text-thin-quiet;

templates/history-viewer.html

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
<span class="commit-author-name">{{commit.author}}</span>
1515
<span class="commit-author-email">&lt;{{commit.email}}&gt;</span>
1616
</span>
17+
<span class="commit-time" title="{{commit.date.title}}">
18+
<i class="octicon octicon-calendar"></i>&nbsp;
19+
<span class="selectable-text">{{commit.date.shown}}</span>
20+
</span>
1721
<span class="commit-hash" data-hash="{{commit.hash}}">
1822
<i class="octicon octicon-git-commit"></i>&nbsp;<span class="selectable-text">{{commit.hashShort}}</span>
1923
<a href="#" class="git-extend-sha">&hellip;</a>

0 commit comments

Comments
 (0)