Skip to content

Commit 79906df

Browse files
committed
Prepare for 1.5.0 release and update changelog
1 parent eff50b8 commit 79906df

3 files changed

Lines changed: 55 additions & 19 deletions

File tree

CHANGELOG.md

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

4-
v1.5.0 (2014-07-08)
4+
v1.5.0 (2014-07-18)
55
-------------------
66

7-
- Fixed bug when plugin invoked in a window without a view
87
- [ST2] Added support for cleanup on startup for ST2
9-
- Improved plugin responsiveness by opening the preview in the background (noticable with large or remote files)
10-
- Added option to display the timestamp of the history entry (either the last opened/closed timestamp or the filesystem's last modified timestamp)
11-
- [ST3] Quick panel support for removing the history entry being previewed. Note: the entry will be deleted but will still be visible in the current quick panel. Mapped to "ctrl+delete" by default ("cmd+delete" on OSX).
12-
- cleanup all histories, not just current project and global
13-
- support various formatting options for the history file, including specifying the indentation size or no formatting
8+
- [ST3] Added shortcut to delete the currently selected history entry
9+
*Note*: The entry will be deleted but will still be visible in the current
10+
quick panel.
11+
Mapped to "ctrl+delete" by default ("cmd+delete" on OSX).
12+
- Added setting and command to reset/clear all history data (#14)
13+
- Added option to display the timestamp of the history entry (either the last
14+
opened/closed or the filesystem's last modified timestamp), relative or
15+
absolute
16+
- When cleaning up, do not consider just current project and global (#15)
17+
- The history file is now "minimized" by default. You can adjust the settings
18+
if you want it prettified. (#15)
19+
- Improved plugin responsiveness by opening the preview in the background
20+
(noticable with large or remote files)
21+
- Fixed quick panel shortcuts not working with previewing disabled (#19)
22+
- Update Menu entries (#21)
1423

1524
v1.4.7 (2014-07-07)
1625
-------------------
1726

18-
- Fix for issue #16 due to which "right" key shortcut to open file was broken
27+
- Hotfix opening multiple views with the "right" key shortcut (#16)
1928

2029
v1.4.6 (2014-01-23)
2130
-------------------
2231

23-
- Fix for issue #13 that occurred when there were no views open in the window
32+
- Fix preview when no views are open in the window (#13)
2433

2534
v1.4.5 (2014-01-15)
2635
-------------------
2736

28-
- Fix for ST2 compatibility
37+
- Fix for ST2 compatibility (#12)
2938

3039
v1.4.4 (2014-01-10)
3140
-------------------
@@ -60,32 +69,38 @@ v1.3.5 (2014-01-09)
6069

6170
- Added settings file to simplify customization
6271
- ST3 only: Preview the history entries while searching through the quick panel
63-
- ST3 only: Remove files that no longer exist while searching through the quick panel
64-
- ST3 only: Added option to cleanup this history on startup (remove any files that no longer exist)
72+
- ST3 only: Remove files that no longer exist while searching through the quick
73+
panel
74+
- ST3 only: Added option to cleanup this history on startup (remove any files
75+
that no longer exist)
6576
- Show the quick panel with a monospace font
6677
- Customize where the history data is stored
6778
- Option to try to re-use the position the file was in when it was closed
68-
- A default settings file will be created if one does not exist (default is User/FileHistory.json in the packages directory)
79+
- A default settings file will be created if one does not exist (default is
80+
User/FileHistory.json in the packages directory)
6981

7082

7183
v1.3.3 (2013-12-17)
7284
-------------------
7385

74-
- Added commands to the command palette and removed cleanup command from keybindings (by @stdword)
86+
- Added commands to the command palette and removed cleanup command from
87+
keybindings (by @stdword)
7588

7689

7790
v1.3.2 (2013-11-11)
7891
-------------------
7992

80-
- ST3 only: The files are now previewed when cycling through the quick panel entries
93+
- ST3 only: The files are now previewed when cycling through the quick panel
94+
entries
8195
- Add some status messages for cleanup command
8296

8397

8498
v1.3.1 (2013-03-01)
8599
-------------------
86100

87101
- Fix unicode bug introduced in ST 3014
88-
- Use the newly implemented project file path API for saving per-project history instead of hashing the project's folders
102+
- Use the newly implemented project file path API for saving per-project
103+
history instead of hashing the project's folders
89104
- Remove remaining settings migration code (not really worth mentioning)
90105
- Add messages for Package Control install and updates
91106

@@ -94,7 +109,8 @@ v1.3.0 (2013-02-04)
94109
-------------------
95110

96111
- Sublime Text 3 compatability
97-
- Remove old settings migration code (this probably won't bother you unless you've been using this plugin for years)
112+
- Remove old settings migration code (this probably won't bother you unless
113+
you've been using this plugin for years)
98114
- Adjust OSX key bindings to not use ctrl
99115

100116

@@ -107,4 +123,5 @@ v1.1 (2012-06-14)
107123
v1.0 (2012-05-18)
108124
-----------------
109125

110-
- Mirrored from [gist](https://gist.github.com/1133602) with most of their functionality
126+
- Mirrored from [gist](https://gist.github.com/1133602) with most of their
127+
functionality

messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"install": "messages/install.md",
3-
"1.5.0": "CHANGELOG.md"
3+
"1.5.0": "messages/1.5.0.md"
44
}

messages/1.5.0.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
v1.5.0 (2014-07-08)
2+
-------------------
3+
4+
- [ST2] Added support for cleanup on startup for ST2
5+
- [ST3] Added shortcut to delete the currently selected history entry
6+
*Note*: The entry will be deleted but will still be visible in the current
7+
quick panel.
8+
Mapped to "ctrl+delete" by default ("cmd+delete" on OSX).
9+
- Added setting and command to reset/clear all history data (#14)
10+
- Added option to display the timestamp of the history entry (either the last
11+
opened/closed or the filesystem's last modified timestamp), relative or
12+
absolute
13+
- When cleaning up, do not consider just current project and global (#15)
14+
- The history file is now "minimized" by default. You can adjust the settings
15+
if you want it prettified. (#15)
16+
- Improved plugin responsiveness by opening the preview in the background
17+
(noticable with large or remote files)
18+
- Fixed quick panel shortcuts not working with previewing disabled (#19)
19+
- Update Menu entries (#21)

0 commit comments

Comments
 (0)