forked from 23maverick23/sublime-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
268 lines (213 loc) · 8.49 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
sublime-jekyll change log
=========================
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [3.1.6] - 2017-12-27
### Added
- Add support for plain text (.txt) files (Close #86)
## [3.1.5] - 2017-06-08
### Changed
- Merge pull request #83 (Added missing comma to completions file)
## [3.1.4] - 2017-06-03
### Changed
- Updated documentation (Close #77)
- Moved to io.open to resolve ascii codec bug (Close #78)
- Updated completions (Close #79)
- Updated LICENSE
## [3.1.3] - 2017-01-22
### Added
- Override default Markdown file extenion for new drafts/posts (Close #73)
### Changed
- Re-wrote CHANGELOG file to support new formatting
- Updated documentation for new settings key
## [3.1.2] - 2016-07-12
### Changed
- Fix template creation bug (Close #71)
## [3.1.1] - 2016-07-11
### Changed
- Fix recursive exception loop (Close #70)
## [3.1.0] - 2016-07-07
### Added
- Adds a configurable templates directory path settings key
named `jekyll_templates_path` (Close #69)
## [3.0.3] - 2016-06-15
### Added
- Add more verbose exception messages (Close #68)
## [3.0.2] - 2016-02-18
### Changed
- Add back `shutil` module removed by #60 (Close #63)
## [3.0.1] - 2016-02-16
### Added
- Add new command for editing `_config.yml` file (Close #58)
- Add send2trash module (Close #59)
- Add basic path exists check to help with absolute vs. relative
paths (Close #62)
### Changed
- Update remove_file methods to support send2trash (Close #59)
- Fix small typo in documentation (Close #61)
### Removed
- Remove shutil copy method for settings files (Close #60)
- Remove duplicate decorators from path methods (Close #60)
## [3.0.0] - 2016-01-31
(**Major Release 3.0.0**)
### Added
- Create user and project settings migration commands (Close #43)
- Create backup directory with quick access command (Close #43)
- Add package debugging (Close #44)
- Add `jekyll_debug` settings key (Close #44)
- Add RTFD documentation (Close #45)
- Add new snippets and completions (Close #46)
- Add new commands to context menu (Close #47)
- Add `jekyll_utility_disable` settings key (Close #48)
- Add ability to create YAML templates (Close #50)
### Changed
- Move main menu to Tools (Close #47)
- Fix minor formatting bugs in snippets (Close #49)
- Remove reliance on settings keys (Close #53)
### Removed
- Deprecate Jekyll syntax files (Close #36, Close #38, Close #39, Close #51, Close #52)
- Remove default keybindings for all platforms (Close #50)
- Remove auto-set syntax logic
- Move open syntax issues to new repo
## [2.2.5] - 2015-10-18
### Added
- Added uploads directory via pull request (Close #33)
## [2.2.4] - 2015-03-14
### Changed
- Fix bug with get_setting method (Close #34)
## [2.2.3] - 2015-03-05
### Added
- Add date into draft using the 'Promote draft to post' command (Close #31)
## Changed
- Address small issue for ST2 when creating posts from an empty view (Close #32)
- Small updates to .gitignore
### Removed
- Remove date from draft file name (Close #31)
## [2.2.2] - 2015-03-03
### Added
- Add support for opening posts/drafts in subdirectories (Close #30)
- Add support for promoting drafts to posts while maintaining directory tree (Close #30)
## [2.2.1] - 2015-02-08
### Added
- Add support for finding Jekyll folders in active view (Close #27)
## [2.1.3] - 2015-01-28
### Changed
- Fix ST2 bug with format strings related to Python 2.6 (Close #25)
## [2.1.2] - 2015-01-18
### Added
- Add support for multi-level dictionary in front-matter defaults (Close #23)
### Changed
- Update JekyllPostFrontmatterCommand to use insert_snippet (Close #23)
### Removed
- Remove date/datetime keybindings that clash with ST defaults (Close #24)
## [2.1.0] - 2014-12-07
### Added
- Implement new post front-matter extras (Close #22)
- Allow for default post keys to be hidden using `null`
### Changed
- Update default Jekyll settings file to include instructions
- Small changes to README
## [2.0.8] - 2014-11-30
### Changed
- Messages directory naming convention, only affects Linux systems (Closes #14)
## [2.0.7] - 2014-11-24
### Added
- Merge pull request for correcting snippets (Close #18)
## [2.0.6] - 2014-11-01
### Added
- Add directory check (in cases where drafts/posts paths do not exist)
- Add sorting of posts by last modified date
### Changed
- Merge pull request from @fk128 (Close #17)
- Fix duplicates from showing in Quick Panel
## [2.0.5] - 2014-10-16
### Changed
- Fix ST2 specific bug in run_commands and set_timeout
## [2.0.4] - 2014-09-04
### Changed
- Fix issue with trailing commas in commands
## [2.0.3] - 2014-07-31
### Added
- Add screenshot for new github.io project site page
- Add support for install and update messages
### Changed
- Small changes to default settings and front-matter snippet
- Small updates to README.md
## [2.0.2] - 2014-07-04
### Added
- Add support for converting drafts to posts (Close #11)
### Changed
- Small updates to README.md
- Small bug fixes to "open" commands
## [2.0.1] - 2014-06-18
### Added
- Add support for ST2 (Close #8)
- Add default keymaps back
### Changed
- Fixed path bug (Close #7)
- Fixed syntax loading bug (Close #9)
## [2.0.0] - 2014-06-16
### Added
- Add Jekyll 2.0 snippets and completions
- Add brand new commands for post interaction
### Changed
- Clean up code in most files for easier reading
### Removed
- Remove default keybindings
## [1.0.1] - 2014-01-17
### Added
- Add documentation for configuring a Jekyll build system
### Changed
- Small updates to `README.md` and `Main.sublime-menu`
## [1.0.0] - 2014-01-12
### Added
- Add platform specific key bindings to menu (previously missing)
- Add Textile (Jekyll) syntax file, and Update snippets/completions scope
- Add Textile comments and syntax specific preferences
- Add text.textile file to Tests directory
### Changed
- Bumping version officially to v1.0.0
## [0.1.2] - 2014-01-05
### Changed
- Updates to snippets (Close #2)
## [0.1.1] - 2014-01-04
### Added
- Add keymap files
### Changed
- Update `insert_date` command to support multiple formats
- Update syntax settings in all snippet files
- Update snippets
- Update `README.md` documentation
## 0.1.0 - 2014-01-04
### Added
- Initial commit
[3.1.3]: https://github.com/23maverick23/sublime-jekyll/compare/v3.1.2...v3.1.3
[3.1.2]: https://github.com/23maverick23/sublime-jekyll/compare/v3.1.1...v3.1.2
[3.1.1]: https://github.com/23maverick23/sublime-jekyll/compare/v3.1.0...v3.1.1
[3.1.0]: https://github.com/23maverick23/sublime-jekyll/compare/v3.0.3...v3.1.0
[3.0.3]: https://github.com/23maverick23/sublime-jekyll/compare/v3.0.2...v3.0.3
[3.0.2]: https://github.com/23maverick23/sublime-jekyll/compare/v3.0.1...v3.0.2
[3.0.1]: https://github.com/23maverick23/sublime-jekyll/compare/v3.0.0...v3.0.1
[3.0.0]: https://github.com/23maverick23/sublime-jekyll/compare/v2.2.5...v3.0.0
[2.2.5]: https://github.com/23maverick23/sublime-jekyll/compare/v2.2.4...v2.2.5
[2.2.4]: https://github.com/23maverick23/sublime-jekyll/compare/v2.2.3...v2.2.4
[2.2.3]: https://github.com/23maverick23/sublime-jekyll/compare/v2.2.2...v2.2.3
[2.2.2]: https://github.com/23maverick23/sublime-jekyll/compare/v2.2.1...v2.2.2
[2.2.1]: https://github.com/23maverick23/sublime-jekyll/compare/v2.1.3...v2.2.1
[2.1.3]: https://github.com/23maverick23/sublime-jekyll/compare/v2.1.2...v2.1.3
[2.1.2]: https://github.com/23maverick23/sublime-jekyll/compare/v2.1.0...v2.1.2
[2.1.0]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.8...v2.1.0
[2.0.8]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.7...v2.0.8
[2.0.7]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.6...v2.0.7
[2.0.6]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.5...v2.0.6
[2.0.5]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.4...v2.0.5
[2.0.4]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.3...v2.0.4
[2.0.3]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.2...v2.0.3
[2.0.2]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/23maverick23/sublime-jekyll/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/23maverick23/sublime-jekyll/compare/v1.0.1...v2.0.0
[1.0.1]: https://github.com/23maverick23/sublime-jekyll/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/23maverick23/sublime-jekyll/compare/v0.1.2...v1.0.0
[0.1.2]: https://github.com/23maverick23/sublime-jekyll/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/23maverick23/sublime-jekyll/compare/v0.1.0...v0.1.1