Skip to content

Commit e0f15a5

Browse files
committed
Merge branch 'dev'; Release 1.7.0
2 parents 1c607d8 + ab17c64 commit e0f15a5

5 files changed

Lines changed: 243 additions & 117 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
File History Changelog
22
======================
33

4+
v1.7.0 (2014-10-03)
5+
-------------------
6+
7+
- Save timestamps in POSIX time instead of a user-specific string format; the
8+
format setting is now only used for displaying absolute timestamps in the
9+
panel (see #28)
10+
- Remove doubled information in history file, namely 'action' key (#30)
11+
- Fix a bug where quickly browsing through the reopen panel would cause some
12+
views to get mistaken for real views and added to the history (#31)
13+
- Fix exception when timestamp could not be parsed (#28)
14+
15+
416
v1.6.0 (2014-09-19)
517
-------------------
618

Default.sublime-commands

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
11
[
2+
// Open readme and settings
3+
{
4+
"caption": "File History: Open README",
5+
"command": "open_file",
6+
"args": {
7+
"file": "${packages}/File History/README.md"
8+
}
9+
},
10+
{
11+
"caption": "Preferences: File History Settings - Default",
12+
"command": "open_file",
13+
"args": {
14+
"file": "${packages}/File History/FileHistory.sublime-settings"
15+
}
16+
},
17+
{
18+
"caption": "Preferences: File History Settings - User",
19+
"command": "open_file",
20+
"args": {
21+
"file": "${packages}/User/FileHistory.sublime-settings",
22+
"contents": "{\n\t$0\n}"
23+
}
24+
},
25+
26+
// File History commands
227
{
328
"caption": "File History: Open recently closed file (Current Project)",
429
"command": "open_recently_closed_file",

0 commit comments

Comments
 (0)