jekyll-docs 3.0.3 → 3.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/site/_config.yml +4 -0
- data/site/_data/docs.yml +3 -1
- data/site/_docs/assets.md +4 -3
- data/site/_docs/conduct.md +55 -0
- data/site/_docs/configuration.md +77 -7
- data/site/_docs/contributing.md +1 -1
- data/site/_docs/datafiles.md +3 -3
- data/site/_docs/deployment-methods.md +49 -28
- data/site/_docs/extras.md +1 -1
- data/site/_docs/github-pages.md +27 -28
- data/site/_docs/history.md +356 -196
- data/site/_docs/index.md +1 -0
- data/site/_docs/installation.md +4 -4
- data/site/_docs/pages.md +20 -4
- data/site/_docs/pagination.md +7 -4
- data/site/_docs/permalinks.md +4 -3
- data/site/_docs/plugins.md +20 -8
- data/site/_docs/posts.md +8 -8
- data/site/_docs/quickstart.md +1 -2
- data/site/_docs/resources.md +16 -24
- data/site/_docs/sites.md +1 -7
- data/site/_docs/structure.md +3 -3
- data/site/_docs/templates.md +39 -13
- data/site/_docs/upgrading.md +3 -133
- data/site/_docs/upgrading/0-to-2.md +140 -0
- data/site/_docs/upgrading/2-to-3.md +126 -0
- data/site/_docs/variables.md +1 -1
- data/site/_docs/windows.md +5 -3
- data/site/_includes/docs_ul.html +2 -6
- data/site/_includes/footer.html +1 -1
- data/site/_posts/2015-10-26-jekyll-3-0-released.markdown +1 -1
- data/site/_posts/2016-01-20-jekyll-3-0-2-released.markdown +5 -0
- data/site/_posts/2016-01-24-jekyll-3-1-0-released.markdown +50 -0
- data/site/_posts/2016-01-28-jekyll-3-1-1-released.markdown +33 -0
- data/site/_posts/2016-02-08-jekyll-3-0-3-released.markdown +4 -3
- data/site/_posts/2016-02-19-jekyll-3-1-2-released.markdown +20 -0
- data/site/_sass/_style.scss +4 -0
- data/site/help/index.md +5 -0
- data/site/index.html +2 -2
- data/site/latest_version.txt +1 -1
- data/site/redirects/github.html +4 -0
- data/site/redirects/issues.html +4 -0
- metadata +11 -3
data/site/_docs/history.md
CHANGED
@@ -4,17 +4,180 @@ title: History
|
|
4
4
|
permalink: "/docs/history/"
|
5
5
|
---
|
6
6
|
|
7
|
+
## 3.1.2 / 2016-02-19
|
8
|
+
{: #v3-1-2}
|
9
|
+
|
10
|
+
### Minor Enhancements
|
11
|
+
{: #minor-enhancements-v3-1-2}
|
12
|
+
|
13
|
+
- Include `.rubocop.yml` in Gem ([#4437]({{ site.repository }}/issues/4437))
|
14
|
+
- `LiquidRenderer#parse`: parse with line numbers. ([#4452]({{ site.repository }}/issues/4452))
|
15
|
+
- Add consistency to the no-subcommand deprecation message ([#4505]({{ site.repository }}/issues/4505))
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
{: #bug-fixes-v3-1-2}
|
19
|
+
|
20
|
+
- Fix syntax highlighting in kramdown by making `[@config](https://github.com/config)` accessible in the Markdown converter. ([#4428]({{ site.repository }}/issues/4428))
|
21
|
+
- `Jekyll.sanitized_path`: sanitizing a questionable path should handle tildes ([#4492]({{ site.repository }}/issues/4492))
|
22
|
+
- Fix `titleize` so already capitalized words are not dropped ([#4525]({{ site.repository }}/issues/4525))
|
23
|
+
- Permalinks which end in a slash should always output HTML ([#4546]({{ site.repository }}/issues/4546))
|
24
|
+
|
25
|
+
### Development Fixes
|
26
|
+
{: #development-fixes-v3-1-2}
|
27
|
+
|
28
|
+
- Require at least cucumber version 2.1.0 ([#4514]({{ site.repository }}/issues/4514))
|
29
|
+
|
30
|
+
### Site Enhancements
|
31
|
+
{: #site-enhancements-v3-1-2}
|
32
|
+
|
33
|
+
- Add jekyll-toc plugin ([#4429]({{ site.repository }}/issues/4429))
|
34
|
+
- Docs: Quickstart - added documentation about the `--force` option ([#4410]({{ site.repository }}/issues/4410))
|
35
|
+
- Fix broken links to the Code of Conduct ([#4436]({{ site.repository }}/issues/4436))
|
36
|
+
- Upgrade notes: mention trailing slash in permalink; fixes [#4440]({{ site.repository }}/issues/4440) ([#4455]({{ site.repository }}/issues/4455))
|
37
|
+
- Add hooks to the plugin categories toc ([#4463]({{ site.repository }}/issues/4463))
|
38
|
+
- [add note] Jekyll 3 requires newer version of Ruby. ([#4461]({{ site.repository }}/issues/4461))
|
39
|
+
- Fix typo in upgrading docs ([#4473]({{ site.repository }}/issues/4473))
|
40
|
+
- Add note about upgrading documentation on jekyllrb.com/help/ ([#4484]({{ site.repository }}/issues/4484))
|
41
|
+
- Update Rake link ([#4496]({{ site.repository }}/issues/4496))
|
42
|
+
- Update & prune the short list of example sites ([#4374]({{ site.repository }}/issues/4374))
|
43
|
+
- Added amp-jekyll plugin to plugins docs ([#4517]({{ site.repository }}/issues/4517))
|
44
|
+
- A few grammar fixes ([#4512]({{ site.repository }}/issues/4512))
|
45
|
+
- Correct a couple mistakes in structure.md ([#4522]({{ site.repository }}/issues/4522))
|
46
|
+
|
47
|
+
|
48
|
+
## 3.1.1 / 2016-01-29
|
49
|
+
{: #v3-1-1}
|
50
|
+
|
51
|
+
### Meta
|
52
|
+
|
53
|
+
- Update the Code of Conduct to the latest version ([#4402]({{ site.repository }}/issues/4402))
|
54
|
+
|
55
|
+
### Bug Fixes
|
56
|
+
{: #bug-fixes-v3-1-1}
|
57
|
+
|
58
|
+
- `Page#dir`: ensure it ends in a slash ([#4403]({{ site.repository }}/issues/4403))
|
59
|
+
- Add `Utils.merged_file_read_opts` to unify reading & strip the BOM ([#4404]({{ site.repository }}/issues/4404))
|
60
|
+
- `Renderer#output_ext`: honor folders when looking for ext ([#4401]({{ site.repository }}/issues/4401))
|
61
|
+
|
62
|
+
### Development Fixes
|
63
|
+
{: #development-fixes-v3-1-1}
|
64
|
+
|
65
|
+
- Suppress stdout in liquid profiling test ([#4409]({{ site.repository }}/issues/4409))
|
66
|
+
|
67
|
+
|
68
|
+
## 3.1.0 / 2016-01-23
|
69
|
+
{: #v3-1-0}
|
70
|
+
|
71
|
+
### Minor Enhancements
|
72
|
+
{: #minor-enhancements-v3-1-0}
|
73
|
+
|
74
|
+
- Use `Liquid::Drop`s instead of `Hash`es in `#to_liquid` ([#4277]({{ site.repository }}/issues/4277))
|
75
|
+
- Add 'sample' Liquid filter Equivalent to Array#sample functionality ([#4223]({{ site.repository }}/issues/4223))
|
76
|
+
- Cache parsed include file to save liquid parsing time. ([#4120]({{ site.repository }}/issues/4120))
|
77
|
+
- Slightly speed up url sanitization and handle multiples of ///. ([#4168]({{ site.repository }}/issues/4168))
|
78
|
+
- Print debug message when a document is skipped from reading ([#4180]({{ site.repository }}/issues/4180))
|
79
|
+
- Include tag should accept multiple variables in the include name ([#4183]({{ site.repository }}/issues/4183))
|
80
|
+
- Add `-o` option to serve command which opens server URL ([#4144]({{ site.repository }}/issues/4144))
|
81
|
+
- Add CodeClimate platform for better code quality. ([#4220]({{ site.repository }}/issues/4220))
|
82
|
+
- General improvements for WEBrick via jekyll serve such as SSL & custom headers ([#4224]({{ site.repository }}/issues/4224), [#4228]({{ site.repository }}/issues/4228))
|
83
|
+
- Add a default charset to content-type on webrick. ([#4231]({{ site.repository }}/issues/4231))
|
84
|
+
- Switch `PluginManager` to use `require_with_graceful_fail` for better UX ([#4233]({{ site.repository }}/issues/4233))
|
85
|
+
- Allow quoted date in front matter defaults ([#4184]({{ site.repository }}/issues/4184))
|
86
|
+
- Add a Jekyll doctor warning for URLs that only differ by case ([#3171]({{ site.repository }}/issues/3171))
|
87
|
+
- drops: create one base Drop class which can be set as mutable or not ([#4285]({{ site.repository }}/issues/4285))
|
88
|
+
- drops: provide `#to_h` to allow for hash introspection ([#4281]({{ site.repository }}/issues/4281))
|
89
|
+
- Shim subcommands with indication of gem possibly required so users know how to use them ([#4254]({{ site.repository }}/issues/4254))
|
90
|
+
- Add smartify Liquid filter for SmartyPants ([#4323]({{ site.repository }}/issues/4323))
|
91
|
+
- Raise error on empty permalink ([#4361]({{ site.repository }}/issues/4361))
|
92
|
+
- Refactor Page#permalink method ([#4389]({{ site.repository }}/issues/4389))
|
93
|
+
|
94
|
+
### Bug Fixes
|
95
|
+
{: #bug-fixes-v3-1-0}
|
96
|
+
|
97
|
+
- Pass build options into `clean` command ([#4177]({{ site.repository }}/issues/4177))
|
98
|
+
- Allow users to use .htm and .xhtml (XHTML5.) ([#4160]({{ site.repository }}/issues/4160))
|
99
|
+
- Prevent Shell Injection. ([#4200]({{ site.repository }}/issues/4200))
|
100
|
+
- Convertible should make layout data accessible via `layout` instead of `page` ([#4205]({{ site.repository }}/issues/4205))
|
101
|
+
- Avoid using `Dir.glob` with absolute path to allow special characters in the path ([#4150]({{ site.repository }}/issues/4150))
|
102
|
+
- Handle empty config files ([#4052]({{ site.repository }}/issues/4052))
|
103
|
+
- Rename `[@options](https://github.com/options)` so that it does not impact Liquid. ([#4173]({{ site.repository }}/issues/4173))
|
104
|
+
- utils/drops: update Drop to support `Utils.deep_merge_hashes` ([#4289]({{ site.repository }}/issues/4289))
|
105
|
+
- Make sure jekyll/drops/drop is loaded first. ([#4292]({{ site.repository }}/issues/4292))
|
106
|
+
- Convertible/Page/Renderer: use payload hash accessor & setter syntax for backwards-compatibility ([#4311]({{ site.repository }}/issues/4311))
|
107
|
+
- Drop: fix hash setter precendence ([#4312]({{ site.repository }}/issues/4312))
|
108
|
+
- utils: `has_yaml_header?` should accept files with extraneous spaces ([#4290]({{ site.repository }}/issues/4290))
|
109
|
+
- Escape html from site.title and page.title in site template ([#4307]({{ site.repository }}/issues/4307))
|
110
|
+
- Allow custom file extensions if defined in `permalink` YAML front matter ([#4314]({{ site.repository }}/issues/4314))
|
111
|
+
- Fix deep_merge_hashes! handling of drops and hashes ([#4359]({{ site.repository }}/issues/4359))
|
112
|
+
- Page should respect output extension of its permalink ([#4373]({{ site.repository }}/issues/4373))
|
113
|
+
- Disable auto-regeneration when running server detached ([#4376]({{ site.repository }}/issues/4376))
|
114
|
+
- Drop#[]: only use public_send for keys in the content_methods array ([#4388]({{ site.repository }}/issues/4388))
|
115
|
+
- Extract title from filename successfully when no date. ([#4195]({{ site.repository }}/issues/4195))
|
116
|
+
|
117
|
+
### Development Fixes
|
118
|
+
{: #development-fixes-v3-1-0}
|
119
|
+
|
120
|
+
- `jekyll-docs` should be easily release-able ([#4152]({{ site.repository }}/issues/4152))
|
121
|
+
- Allow use of Cucumber 2.1 or greater ([#4181]({{ site.repository }}/issues/4181))
|
122
|
+
- Modernize Kramdown for Markdown converter. ([#4109]({{ site.repository }}/issues/4109))
|
123
|
+
- Change TestDoctorCommand to JekyllUnitTest... ([#4263]({{ site.repository }}/issues/4263))
|
124
|
+
- Create namespaced rake tasks in separate `.rake` files under `lib/tasks` ([#4282]({{ site.repository }}/issues/4282))
|
125
|
+
- markdown: refactor for greater readability & efficiency ([#3771]({{ site.repository }}/issues/3771))
|
126
|
+
- Fix many Rubocop style errors ([#4301]({{ site.repository }}/issues/4301))
|
127
|
+
- Fix spelling of "GitHub" in docs and history ([#4322]({{ site.repository }}/issues/4322))
|
128
|
+
- Reorganize and cleanup the Gemfile, shorten required depends. ([#4318]({{ site.repository }}/issues/4318))
|
129
|
+
- Remove script/rebund. ([#4341]({{ site.repository }}/issues/4341))
|
130
|
+
- Implement codeclimate platform ([#4340]({{ site.repository }}/issues/4340))
|
131
|
+
- Remove ObectSpace dumping and start using inherited, it's faster. ([#4342]({{ site.repository }}/issues/4342))
|
132
|
+
- Add script/travis so all people can play with Travis-CI images. ([#4338]({{ site.repository }}/issues/4338))
|
133
|
+
- Move Cucumber to using RSpec-Expections and furthering JRuby support. ([#4343]({{ site.repository }}/issues/4343))
|
134
|
+
- Rearrange Cucumber and add some flair. ([#4347]({{ site.repository }}/issues/4347))
|
135
|
+
- Remove old FIXME ([#4349]({{ site.repository }}/issues/4349))
|
136
|
+
- Clean up the Gemfile (and keep all the necessary dependencies) ([#4350]({{ site.repository }}/issues/4350))
|
137
|
+
|
138
|
+
### Site Enhancements
|
139
|
+
{: #site-enhancements-v3-1-0}
|
140
|
+
|
141
|
+
- Add three plugins to directory ([#4163]({{ site.repository }}/issues/4163))
|
142
|
+
- Add upgrading docs from 2.x to 3.x ([#4157]({{ site.repository }}/issues/4157))
|
143
|
+
- Add `protect_email` to the plugins index. ([#4169]({{ site.repository }}/issues/4169))
|
144
|
+
- Add `jekyll-deploy` to list of third-party plugins ([#4179]({{ site.repository }}/issues/4179))
|
145
|
+
- Clarify plugin docs ([#4154]({{ site.repository }}/issues/4154))
|
146
|
+
- Add Kickster to deployment methods in documentation ([#4190]({{ site.repository }}/issues/4190))
|
147
|
+
- Add DavidBurela's tutorial for Windows to Windows docs page ([#4210]({{ site.repository }}/issues/4210))
|
148
|
+
- Change GitHub code block to highlight tag to avoid it overlaps parent div ([#4121]({{ site.repository }}/issues/4121))
|
149
|
+
- Update FormKeep link to be something more specific to Jekyll ([#4243]({{ site.repository }}/issues/4243))
|
150
|
+
- Remove example Roger Chapman site, as the domain doesn't exist ([#4249]({{ site.repository }}/issues/4249))
|
151
|
+
- Added configuration options for `draft_posts` to configuration docs ([#4251]({{ site.repository }}/issues/4251))
|
152
|
+
- Fix checklist in `_assets.md` ([#4259]({{ site.repository }}/issues/4259))
|
153
|
+
- Add Markdown examples to Pages docs ([#4275]({{ site.repository }}/issues/4275))
|
154
|
+
- Add jekyll-paginate-category to list of third-party plugins ([#4273]({{ site.repository }}/issues/4273))
|
155
|
+
- Add `jekyll-responsive_image` to list of third-party plugins ([#4286]({{ site.repository }}/issues/4286))
|
156
|
+
- Add `jekyll-commonmark` to list of third-party plugins ([#4299]({{ site.repository }}/issues/4299))
|
157
|
+
- Add documentation for incremental regeneration ([#4293]({{ site.repository }}/issues/4293))
|
158
|
+
- Add note about removal of relative permalink support in upgrading docs ([#4303]({{ site.repository }}/issues/4303))
|
159
|
+
- Add Pro Tip to use front matter variable to create clean URLs ([#4296]({{ site.repository }}/issues/4296))
|
160
|
+
- Fix grammar in the documentation for posts. ([#4330]({{ site.repository }}/issues/4330))
|
161
|
+
- Add documentation for smartify Liquid filter ([#4333]({{ site.repository }}/issues/4333))
|
162
|
+
- Fixed broken link to blog on using mathjax with jekyll ([#4344]({{ site.repository }}/issues/4344))
|
163
|
+
- Documentation: correct reference in Precedence section of Configuration docs ([#4355]({{ site.repository }}/issues/4355))
|
164
|
+
- Add [@jmcglone](https://github.com/jmcglone)'s guide to github-pages doc page ([#4364]({{ site.repository }}/issues/4364))
|
165
|
+
- Added the Wordpress2Jekyll Wordpress plugin ([#4377]({{ site.repository }}/issues/4377))
|
166
|
+
- Add Contentful Extension to list of third-party plugins ([#4390]({{ site.repository }}/issues/4390))
|
167
|
+
- Correct Minor spelling error ([#4394]({{ site.repository }}/issues/4394))
|
168
|
+
|
169
|
+
|
7
170
|
## 3.0.3 / 2016-02-08
|
8
171
|
{: #v3-0-3}
|
9
172
|
|
10
173
|
### Bug Fixes
|
11
174
|
{: #bug-fixes-v3-0-3}
|
12
175
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
176
|
+
- Fix extension weirdness with folders ([#4493]({{ site.repository }}/issues/4493))
|
177
|
+
- EntryFilter: only include 'excluded' log on excluded files ([#4479]({{ site.repository }}/issues/4479))
|
178
|
+
- `Jekyll.sanitized_path`: escape tildes before sanitizing a questionable path ([#4468]({{ site.repository }}/issues/4468))
|
179
|
+
- `LiquidRenderer#parse`: parse with line numbers ([#4453]({{ site.repository }}/issues/4453))
|
180
|
+
- `Document#<=>`: protect against nil comparison in dates. ([#4446]({{ site.repository }}/issues/4446))
|
18
181
|
|
19
182
|
|
20
183
|
## 3.0.2 / 2016-01-20
|
@@ -25,11 +188,6 @@ permalink: "/docs/history/"
|
|
25
188
|
|
26
189
|
- Document: throw a useful error when an invalid date is given ([#4378]({{ site.repository }}/issues/4378))
|
27
190
|
|
28
|
-
### Development Fixes
|
29
|
-
{: #development-fixes-v3-0-2}
|
30
|
-
|
31
|
-
- `jekyll-docs` should be easily release-able ([#4152]({{ site.repository }}/issues/4152))
|
32
|
-
|
33
191
|
|
34
192
|
## 3.0.1 / 2015-11-17
|
35
193
|
{: #v3-0-1}
|
@@ -114,8 +272,7 @@ permalink: "/docs/history/"
|
|
114
272
|
- Perf: `Markdown#matches` should avoid regexp ([#3321]({{ site.repository }}/issues/3321))
|
115
273
|
- Perf: Use frozen regular expressions for `Utils#slugify` ([#3321]({{ site.repository }}/issues/3321))
|
116
274
|
- Split off Textile support into jekyll-textile-converter ([#3319]({{ site.repository }}/issues/3319))
|
117
|
-
- Improve the navigation menu alignment in the site template on small
|
118
|
-
screens ([#3331]({{ site.repository }}/issues/3331))
|
275
|
+
- Improve the navigation menu alignment in the site template on small screens ([#3331]({{ site.repository }}/issues/3331))
|
119
276
|
- Show the regeneration time after the initial generation ([#3378]({{ site.repository }}/issues/3378))
|
120
277
|
- Site template: Switch default font to Helvetica Neue ([#3376]({{ site.repository }}/issues/3376))
|
121
278
|
- Make the `include` tag a teensy bit faster. ([#3391]({{ site.repository }}/issues/3391))
|
@@ -147,8 +304,7 @@ permalink: "/docs/history/"
|
|
147
304
|
- Set log level to debug when verbose flag is set ([#3665]({{ site.repository }}/issues/3665))
|
148
305
|
- Added a mention on the Gemfile to complete the instructions ([#3671]({{ site.repository }}/issues/3671))
|
149
306
|
- Perf: Cache `Document#to_liquid` and invalidate where necessary ([#3693]({{ site.repository }}/issues/3693))
|
150
|
-
- Perf: `Jekyll::Cleaner#existing_files`: Call `keep_file_regex` and
|
151
|
-
`keep_dirs` only once, not once per iteration ([#3696]({{ site.repository }}/issues/3696))
|
307
|
+
- Perf: `Jekyll::Cleaner#existing_files`: Call `keep_file_regex` and `keep_dirs` only once, not once per iteration ([#3696]({{ site.repository }}/issues/3696))
|
152
308
|
- Omit jekyll/jekyll-help from list of resources. ([#3698]({{ site.repository }}/issues/3698))
|
153
309
|
- Add basic `jekyll doctor` test to detect fsnotify (OSX) anomalies. ([#3704]({{ site.repository }}/issues/3704))
|
154
310
|
- Added talk.jekyllrb.com to "Have questions?" ([#3694]({{ site.repository }}/issues/3694))
|
@@ -450,8 +606,7 @@ permalink: "/docs/history/"
|
|
450
606
|
- Strip newlines in site template `<meta>` description. ([#2982]({{ site.repository }}/issues/2982))
|
451
607
|
- Add link to atom feed in `head` of site template files ([#2996]({{ site.repository }}/issues/2996))
|
452
608
|
- Performance optimizations ([#2994]({{ site.repository }}/issues/2994))
|
453
|
-
- Use `Hash#each_key` instead of `Hash#keys.each` to speed up iteration
|
454
|
-
over hash keys. ([#3017]({{ site.repository }}/issues/3017))
|
609
|
+
- Use `Hash#each_key` instead of `Hash#keys.each` to speed up iteration over hash keys. ([#3017]({{ site.repository }}/issues/3017))
|
455
610
|
- Further minor performance enhancements. ([#3022]({{ site.repository }}/issues/3022))
|
456
611
|
- Add 'b' and 's' aliases for build and serve, respectively ([#3065]({{ site.repository }}/issues/3065))
|
457
612
|
|
@@ -459,8 +614,7 @@ permalink: "/docs/history/"
|
|
459
614
|
{: #bug-fixes-v2-5-0}
|
460
615
|
|
461
616
|
- Fix Rouge's RedCarpet plugin interface integration ([#2951]({{ site.repository }}/issues/2951))
|
462
|
-
- Remove `--watch` from the site template blog post since it defaults
|
463
|
-
to watching in in 2.4.0 ([#2922]({{ site.repository }}/issues/2922))
|
617
|
+
- Remove `--watch` from the site template blog post since it defaults to watching in in 2.4.0 ([#2922]({{ site.repository }}/issues/2922))
|
464
618
|
- Fix code for media query mixin in site template ([#2946]({{ site.repository }}/issues/2946))
|
465
619
|
- Allow post URL's to have `.htm` extensions ([#2925]({{ site.repository }}/issues/2925))
|
466
620
|
- `Utils.slugify`: Don't create new objects when gsubbing ([#2997]({{ site.repository }}/issues/2997))
|
@@ -490,7 +644,7 @@ permalink: "/docs/history/"
|
|
490
644
|
- Add Big Footnotes for Kramdown plugin to list of third-party plugins ([#2916]({{ site.repository }}/issues/2916))
|
491
645
|
- Remove warning regarding GHP use of singular types for front matter defaults ([#2919]({{ site.repository }}/issues/2919))
|
492
646
|
- Fix quote character typo in site documentation for templates ([#2917]({{ site.repository }}/issues/2917))
|
493
|
-
- Point Liquid links to Liquid’s
|
647
|
+
- Point Liquid links to Liquid’s GitHub wiki ([#2887]({{ site.repository }}/issues/2887))
|
494
648
|
- Add HTTP Basic Auth (.htaccess) plugin to list of third-party plugins ([#2931]({{ site.repository }}/issues/2931))
|
495
649
|
- (Minor) Grammar & `_config.yml` filename fixes ([#2911]({{ site.repository }}/issues/2911))
|
496
650
|
- Added `mathml.rb` to the list of third-party plugins. ([#2937]({{ site.repository }}/issues/2937))
|
@@ -546,11 +700,9 @@ permalink: "/docs/history/"
|
|
546
700
|
|
547
701
|
- Document the `name` variable for collection permalinks ([#2829]({{ site.repository }}/issues/2829))
|
548
702
|
- Adds info about installing jekyll in current dir ([#2839]({{ site.repository }}/issues/2839))
|
549
|
-
- Remove deprecated `jekyll-projectlist` plugin from list of third-party
|
550
|
-
plugins ([#2742]({{ site.repository }}/issues/2742))
|
703
|
+
- Remove deprecated `jekyll-projectlist` plugin from list of third-party plugins ([#2742]({{ site.repository }}/issues/2742))
|
551
704
|
- Remove tag plugins that are built in to Jekyll ([#2751]({{ site.repository }}/issues/2751))
|
552
|
-
- Add `markdown-writer` package for Atom Editor to list of third-party
|
553
|
-
plugins ([#2763]({{ site.repository }}/issues/2763))
|
705
|
+
- Add `markdown-writer` package for Atom Editor to list of third-party plugins ([#2763]({{ site.repository }}/issues/2763))
|
554
706
|
- Fix typo in site documentation for collections ([#2764]({{ site.repository }}/issues/2764))
|
555
707
|
- Fix minor typo on plugins docs page ([#2765]({{ site.repository }}/issues/2765))
|
556
708
|
- Replace markdown with HTML in `sass_dir` note on assets page ([#2791]({{ site.repository }}/issues/2791))
|
@@ -650,8 +802,7 @@ permalink: "/docs/history/"
|
|
650
802
|
{: #site-enhancements-v2-2-0}
|
651
803
|
|
652
804
|
- Update Kramdown urls ([#2588]({{ site.repository }}/issues/2588))
|
653
|
-
- Add `Jekyll::AutolinkEmail` and `Jekyll::GitMetadata` to the list of
|
654
|
-
third-party plugins ([#2596]({{ site.repository }}/issues/2596))
|
805
|
+
- Add `Jekyll::AutolinkEmail` and `Jekyll::GitMetadata` to the list of third-party plugins ([#2596]({{ site.repository }}/issues/2596))
|
655
806
|
- Fix a bunch of broken links in the site ([#2601]({{ site.repository }}/issues/2601))
|
656
807
|
- Replace dead links with working links ([#2611]({{ site.repository }}/issues/2611))
|
657
808
|
- Add jekyll-hook to deployment methods ([#2617]({{ site.repository }}/issues/2617))
|
@@ -695,12 +846,10 @@ permalink: "/docs/history/"
|
|
695
846
|
- Allow subdirectories in `_data` ([#2395]({{ site.repository }}/issues/2395))
|
696
847
|
- Extract Pagination Generator into gem: `jekyll-paginate` ([#2455]({{ site.repository }}/issues/2455))
|
697
848
|
- Utilize `date_to_rfc822` filter in site template ([#2437]({{ site.repository }}/issues/2437))
|
698
|
-
- Add categories, last build datetime, and generator to site template
|
699
|
-
feed ([#2438]({{ site.repository }}/issues/2438))
|
849
|
+
- Add categories, last build datetime, and generator to site template feed ([#2438]({{ site.repository }}/issues/2438))
|
700
850
|
- Configurable, replaceable Logger-compliant logger ([#2444]({{ site.repository }}/issues/2444))
|
701
851
|
- Extract `gist` tag into a separate gem ([#2469]({{ site.repository }}/issues/2469))
|
702
|
-
- Add `collection` attribute to `Document#to_liquid` to access the
|
703
|
-
document's collection label. ([#2436]({{ site.repository }}/issues/2436))
|
852
|
+
- Add `collection` attribute to `Document#to_liquid` to access the document's collection label. ([#2436]({{ site.repository }}/issues/2436))
|
704
853
|
- Upgrade listen to `2.7.6 <= x < 3.0.0` ([#2492]({{ site.repository }}/issues/2492))
|
705
854
|
- Allow configuration of different Twitter and GitHub usernames in site template ([#2485]({{ site.repository }}/issues/2485))
|
706
855
|
- Bump Pygments to v0.6.0 ([#2504]({{ site.repository }}/issues/2504))
|
@@ -726,8 +875,7 @@ permalink: "/docs/history/"
|
|
726
875
|
- Allow front matter defaults to set post categories ([#2373]({{ site.repository }}/issues/2373))
|
727
876
|
- Fix command in subcommand deprecation warning ([#2457]({{ site.repository }}/issues/2457))
|
728
877
|
- Keep all parent directories of files/dirs in `keep_files` ([#2458]({{ site.repository }}/issues/2458))
|
729
|
-
- When using RedCarpet and Rouge without Rouge installed, fixed erroneous
|
730
|
-
error which stated that redcarpet was missing, not rouge. ([#2464]({{ site.repository }}/issues/2464))
|
878
|
+
- When using RedCarpet and Rouge without Rouge installed, fixed erroneous error which stated that redcarpet was missing, not rouge. ([#2464]({{ site.repository }}/issues/2464))
|
731
879
|
- Ignore *all* directories and files that merit it on auto-generation ([#2459]({{ site.repository }}/issues/2459))
|
732
880
|
- Before copying file, explicitly remove the old one ([#2535]({{ site.repository }}/issues/2535))
|
733
881
|
- Merge file system categories with categories from YAML. ([#2531]({{ site.repository }}/issues/2531))
|
@@ -758,8 +906,7 @@ permalink: "/docs/history/"
|
|
758
906
|
- Prevent table from extending parent width in permalink style table ([#2424]({{ site.repository }}/issues/2424))
|
759
907
|
- Add collections to info about pagination support ([#2389]({{ site.repository }}/issues/2389))
|
760
908
|
- Add `jekyll_github_sample` plugin to list of third-party plugins ([#2463]({{ site.repository }}/issues/2463))
|
761
|
-
- Clarify documentation around front matter defaults and add details
|
762
|
-
about defaults for collections. ([#2439]({{ site.repository }}/issues/2439))
|
909
|
+
- Clarify documentation around front matter defaults and add details about defaults for collections. ([#2439]({{ site.repository }}/issues/2439))
|
763
910
|
- Add Jekyll Project Version Tag to list of third-party plugins ([#2468]({{ site.repository }}/issues/2468))
|
764
911
|
- Use `https` for GitHub links across whole site ([#2470]({{ site.repository }}/issues/2470))
|
765
912
|
- Add StickerMule + Jekyll post ([#2476]({{ site.repository }}/issues/2476))
|
@@ -778,13 +925,11 @@ permalink: "/docs/history/"
|
|
778
925
|
### Bug Fixes
|
779
926
|
{: #bug-fixes-v2-0-3}
|
780
927
|
|
781
|
-
- Properly prefix links in site template with URL or baseurl depending upon
|
782
|
-
need. ([#2319]({{ site.repository }}/issues/2319))
|
928
|
+
- Properly prefix links in site template with URL or baseurl depending upon need. ([#2319]({{ site.repository }}/issues/2319))
|
783
929
|
- Update gist tag comments and error message to require username ([#2326]({{ site.repository }}/issues/2326))
|
784
930
|
- Fix `permalink` setting in site template ([#2331]({{ site.repository }}/issues/2331))
|
785
931
|
- Don't fail if any of the path objects are nil ([#2325]({{ site.repository }}/issues/2325))
|
786
|
-
- Instantiate all descendants for converters and generators, not just
|
787
|
-
direct subclasses ([#2334]({{ site.repository }}/issues/2334))
|
932
|
+
- Instantiate all descendants for converters and generators, not just direct subclasses ([#2334]({{ site.repository }}/issues/2334))
|
788
933
|
- Replace all instances of `site.name` with `site.title` in site template ([#2324]({{ site.repository }}/issues/2324))
|
789
934
|
- `Jekyll::Filters#time` now accepts UNIX timestamps in string or number form ([#2339]({{ site.repository }}/issues/2339))
|
790
935
|
- Use `item_property` for `where` filter so it doesn't break on collections ([#2359]({{ site.repository }}/issues/2359))
|
@@ -831,17 +976,16 @@ permalink: "/docs/history/"
|
|
831
976
|
|
832
977
|
### Major Enhancements
|
833
978
|
{: #major-enhancements-v2-0-0}
|
979
|
+
|
834
980
|
- Add "Collections" feature ([#2199]({{ site.repository }}/issues/2199))
|
835
981
|
- Add gem-based plugin whitelist to safe mode ([#1657]({{ site.repository }}/issues/1657))
|
836
|
-
- Replace the commander command line parser with a more robust
|
837
|
-
solution for our needs called `mercenary` ([#1706]({{ site.repository }}/issues/1706))
|
982
|
+
- Replace the commander command line parser with a more robust solution for our needs called `mercenary` ([#1706]({{ site.repository }}/issues/1706))
|
838
983
|
- Remove support for Ruby 1.8.x ([#1780]({{ site.repository }}/issues/1780))
|
839
984
|
- Move to jekyll/jekyll from mojombo/jekyll ([#1817]({{ site.repository }}/issues/1817))
|
840
985
|
- Allow custom markdown processors ([#1872]({{ site.repository }}/issues/1872))
|
841
986
|
- Provide support for the Rouge syntax highlighter ([#1859]({{ site.repository }}/issues/1859))
|
842
987
|
- Provide support for Sass ([#1932]({{ site.repository }}/issues/1932))
|
843
|
-
- Provide a 300% improvement when generating sites that use
|
844
|
-
`Post#next` or `Post#previous` ([#1983]({{ site.repository }}/issues/1983))
|
988
|
+
- Provide a 300% improvement when generating sites that use `Post#next` or `Post#previous` ([#1983]({{ site.repository }}/issues/1983))
|
845
989
|
- Provide support for CoffeeScript ([#1991]({{ site.repository }}/issues/1991))
|
846
990
|
- Replace Maruku with Kramdown as Default Markdown Processor ([#1988]({{ site.repository }}/issues/1988))
|
847
991
|
- Expose `site.static_files` to Liquid ([#2075]({{ site.repository }}/issues/2075))
|
@@ -853,10 +997,9 @@ permalink: "/docs/history/"
|
|
853
997
|
|
854
998
|
### Minor Enhancements
|
855
999
|
{: #minor-enhancements-v2-0-0}
|
856
|
-
|
857
|
-
|
858
|
-
- Add `group_by` Liquid filter create lists of items grouped by a common
|
859
|
-
property's value ([#1788]({{ site.repository }}/issues/1788))
|
1000
|
+
|
1001
|
+
- Move the EntryFilter class into the Jekyll module to avoid polluting the global namespace ([#1800]({{ site.repository }}/issues/1800))
|
1002
|
+
- Add `group_by` Liquid filter create lists of items grouped by a common property's value ([#1788]({{ site.repository }}/issues/1788))
|
860
1003
|
- Add support for Maruku's `fenced_code_blocks` option ([#1799]({{ site.repository }}/issues/1799))
|
861
1004
|
- Update Redcarpet dependency to ~> 3.0 ([#1815]({{ site.repository }}/issues/1815))
|
862
1005
|
- Automatically sort all pages by name ([#1848]({{ site.repository }}/issues/1848))
|
@@ -867,12 +1010,10 @@ permalink: "/docs/history/"
|
|
867
1010
|
- Bump dependency `safe_yaml` to `~> 1.0` ([#1886]({{ site.repository }}/issues/1886))
|
868
1011
|
- Allow sorting of content by custom properties ([#1849]({{ site.repository }}/issues/1849))
|
869
1012
|
- Add `--quiet` flag to silence output during build and serve ([#1898]({{ site.repository }}/issues/1898))
|
870
|
-
- Add a `where` filter to filter arrays based on a key/value pair
|
871
|
-
([#1875]({{ site.repository }}/issues/1875))
|
1013
|
+
- Add a `where` filter to filter arrays based on a key/value pair ([#1875]({{ site.repository }}/issues/1875))
|
872
1014
|
- Route 404 errors to a custom 404 page in development ([#1899]({{ site.repository }}/issues/1899))
|
873
1015
|
- Excludes are now relative to the site source ([#1916]({{ site.repository }}/issues/1916))
|
874
|
-
- Bring MIME Types file for `jekyll serve` to complete parity with GH Pages
|
875
|
-
servers ([#1993]({{ site.repository }}/issues/1993))
|
1016
|
+
- Bring MIME Types file for `jekyll serve` to complete parity with GH Pages servers ([#1993]({{ site.repository }}/issues/1993))
|
876
1017
|
- Adding Breakpoint to make new site template more responsive ([#2038]({{ site.repository }}/issues/2038))
|
877
1018
|
- Default to using the UTF-8 encoding when reading files. ([#2031]({{ site.repository }}/issues/2031))
|
878
1019
|
- Update Redcarpet dependency to ~> 3.1 ([#2044]({{ site.repository }}/issues/2044))
|
@@ -890,13 +1031,11 @@ permalink: "/docs/history/"
|
|
890
1031
|
- Add support for unpublished drafts ([#2164]({{ site.repository }}/issues/2164))
|
891
1032
|
- Add `force_polling` option to the `serve` command ([#2165]({{ site.repository }}/issues/2165))
|
892
1033
|
- Clean up the `<head>` in the site template ([#2186]({{ site.repository }}/issues/2186))
|
893
|
-
- Permit YAML blocks to end with three dots to better conform with the
|
894
|
-
YAML spec ([#2110]({{ site.repository }}/issues/2110))
|
1034
|
+
- Permit YAML blocks to end with three dots to better conform with the YAML spec ([#2110]({{ site.repository }}/issues/2110))
|
895
1035
|
- Use `File.exist?` instead of deprecated `File.exists?` ([#2214]({{ site.repository }}/issues/2214))
|
896
1036
|
- Require newline after start of YAML Front Matter header ([#2211]({{ site.repository }}/issues/2211))
|
897
1037
|
- Add the ability for pages to be marked as `published: false` ([#1492]({{ site.repository }}/issues/1492))
|
898
|
-
- Add `Jekyll::LiquidExtensions` with `.lookup_variable` method for easy
|
899
|
-
looking up of variable values in a Liquid context. ([#2253]({{ site.repository }}/issues/2253))
|
1038
|
+
- Add `Jekyll::LiquidExtensions` with `.lookup_variable` method for easy looking up of variable values in a Liquid context. ([#2253]({{ site.repository }}/issues/2253))
|
900
1039
|
- Remove literal lang name from class ([#2292]({{ site.repository }}/issues/2292))
|
901
1040
|
- Return `utf-8` encoding in header for webrick error page response ([#2289]({{ site.repository }}/issues/2289))
|
902
1041
|
- Make template site easier to customize ([#2268]({{ site.repository }}/issues/2268))
|
@@ -906,13 +1045,12 @@ permalink: "/docs/history/"
|
|
906
1045
|
|
907
1046
|
### Bug Fixes
|
908
1047
|
{: #bug-fixes-v2-0-0}
|
1048
|
+
|
909
1049
|
- Don't allow nil entries when loading posts ([#1796]({{ site.repository }}/issues/1796))
|
910
|
-
- Remove the scrollbar that's always displayed in new sites generated
|
911
|
-
from the site template ([#1805]({{ site.repository }}/issues/1805))
|
1050
|
+
- Remove the scrollbar that's always displayed in new sites generated from the site template ([#1805]({{ site.repository }}/issues/1805))
|
912
1051
|
- Add `#path` to required methods in `Jekyll::Convertible` ([#1866]({{ site.repository }}/issues/1866))
|
913
1052
|
- Default Maruku fenced code blocks to ON for 2.0.0-dev ([#1831]({{ site.repository }}/issues/1831))
|
914
|
-
- Change short opts for host and port for `jekyll docs` to be consistent with
|
915
|
-
other subcommands ([#1877]({{ site.repository }}/issues/1877))
|
1053
|
+
- Change short opts for host and port for `jekyll docs` to be consistent with other subcommands ([#1877]({{ site.repository }}/issues/1877))
|
916
1054
|
- Fix typos ([#1910]({{ site.repository }}/issues/1910))
|
917
1055
|
- Lock Maruku at 0.7.0 to prevent bugs caused by Maruku 0.7.1 ([#1958]({{ site.repository }}/issues/1958))
|
918
1056
|
- Fixes full path leak to source directory when using include tag ([#1951]({{ site.repository }}/issues/1951))
|
@@ -925,8 +1063,7 @@ permalink: "/docs/history/"
|
|
925
1063
|
- Sanitize paths uniformly, in a Windows-friendly way ([#2065]({{ site.repository }}/issues/2065), [#2109]({{ site.repository }}/issues/2109))
|
926
1064
|
- Update gem build steps to work correctly on Windows ([#2118]({{ site.repository }}/issues/2118))
|
927
1065
|
- Remove obsolete `normalize_options` method call from `bin/jekyll` ([#2121]({{ site.repository }}/issues/2121)).
|
928
|
-
- Remove `+` characters from Pygments lexer names when adding as a CSS
|
929
|
-
class ([#994]({{ site.repository }}/issues/994))
|
1066
|
+
- Remove `+` characters from Pygments lexer names when adding as a CSS class ([#994]({{ site.repository }}/issues/994))
|
930
1067
|
- Remove some code that caused Ruby interpreter warnings ([#2178]({{ site.repository }}/issues/2178))
|
931
1068
|
- Only strip the drive name if it begins the string ([#2175]({{ site.repository }}/issues/2175))
|
932
1069
|
- Remove default post with invalid date from site template ([#2200]({{ site.repository }}/issues/2200))
|
@@ -942,14 +1079,14 @@ permalink: "/docs/history/"
|
|
942
1079
|
|
943
1080
|
### Development Fixes
|
944
1081
|
{: #development-fixes-v2-0-0}
|
1082
|
+
|
945
1083
|
- Add a link to the site in the README.md file ([#1795]({{ site.repository }}/issues/1795))
|
946
1084
|
- Add in History and site changes from `v1-stable` branch ([#1836]({{ site.repository }}/issues/1836))
|
947
1085
|
- Testing additions on the Excerpt class ([#1893]({{ site.repository }}/issues/1893))
|
948
1086
|
- Fix the `highlight` tag feature ([#1859]({{ site.repository }}/issues/1859))
|
949
1087
|
- Test Jekyll under Ruby 2.1.0 ([#1900]({{ site.repository }}/issues/1900))
|
950
1088
|
- Add script/cibuild for fun and profit ([#1912]({{ site.repository }}/issues/1912))
|
951
|
-
- Use `Forwardable` for delegation between `Excerpt` and `Post`
|
952
|
-
([#1927]({{ site.repository }}/issues/1927))
|
1089
|
+
- Use `Forwardable` for delegation between `Excerpt` and `Post` ([#1927]({{ site.repository }}/issues/1927))
|
953
1090
|
- Rename `read_things` to `read_content` ([#1928]({{ site.repository }}/issues/1928))
|
954
1091
|
- Add `script/branding` script for ASCII art lovin' ([#1936]({{ site.repository }}/issues/1936))
|
955
1092
|
- Update the README to reflect the repo move ([#1943]({{ site.repository }}/issues/1943))
|
@@ -978,11 +1115,11 @@ permalink: "/docs/history/"
|
|
978
1115
|
|
979
1116
|
### Site Enhancements
|
980
1117
|
{: #site-enhancements-v2-0-0}
|
1118
|
+
|
981
1119
|
- Document Kramdown's GFM parser option ([#1791]({{ site.repository }}/issues/1791))
|
982
1120
|
- Move CSS to includes & update normalize.css to v2.1.3 ([#1787]({{ site.repository }}/issues/1787))
|
983
1121
|
- Minify CSS only in production ([#1803]({{ site.repository }}/issues/1803))
|
984
|
-
- Fix broken link to installation of Ruby on Mountain Lion blog post on
|
985
|
-
Troubleshooting docs page ([#1797]({{ site.repository }}/issues/1797))
|
1122
|
+
- Fix broken link to installation of Ruby on Mountain Lion blog post on Troubleshooting docs page ([#1797]({{ site.repository }}/issues/1797))
|
986
1123
|
- Fix issues with 1.4.1 release blog post ([#1804]({{ site.repository }}/issues/1804))
|
987
1124
|
- Add note about deploying to OpenShift ([#1812]({{ site.repository }}/issues/1812))
|
988
1125
|
- Collect all Windows-related docs onto one page ([#1818]({{ site.repository }}/issues/1818))
|
@@ -997,8 +1134,7 @@ permalink: "/docs/history/"
|
|
997
1134
|
- Add jekyll-compass to the plugin list ([#1923]({{ site.repository }}/issues/1923))
|
998
1135
|
- Add note in Posts docs about stripping `<p>` tags from excerpt ([#1933]({{ site.repository }}/issues/1933))
|
999
1136
|
- Add additional info about the new exclude behavior ([#1938]({{ site.repository }}/issues/1938))
|
1000
|
-
- Linkify 'awesome contributors' to point to the contributors graph on
|
1001
|
-
GitHub ([#1940]({{ site.repository }}/issues/1940))
|
1137
|
+
- Linkify 'awesome contributors' to point to the contributors graph on GitHub ([#1940]({{ site.repository }}/issues/1940))
|
1002
1138
|
- Update `docs/sites.md` link to GitHub Training materials ([#1949]({{ site.repository }}/issues/1949))
|
1003
1139
|
- Update `master` with the release info from 1.4.3 ([#1947]({{ site.repository }}/issues/1947))
|
1004
1140
|
- Define docs nav in datafile ([#1953]({{ site.repository }}/issues/1953))
|
@@ -1015,8 +1151,7 @@ permalink: "/docs/history/"
|
|
1015
1151
|
- Update link to rack-jekyll on "Deployment Methods" page ([#2047]({{ site.repository }}/issues/2047))
|
1016
1152
|
- Fix typo in /docs/configuration ([#2073]({{ site.repository }}/issues/2073))
|
1017
1153
|
- Fix count in docs for `site.static_files` ([#2077]({{ site.repository }}/issues/2077))
|
1018
|
-
- Update configuration docs to indicate utf-8 is the default for 2.0.0
|
1019
|
-
and ASCII for 1.9.3 ([#2074]({{ site.repository }}/issues/2074))
|
1154
|
+
- Update configuration docs to indicate utf-8 is the default for 2.0.0 and ASCII for 1.9.3 ([#2074]({{ site.repository }}/issues/2074))
|
1020
1155
|
- Add info about unreleased feature to the site ([#2061]({{ site.repository }}/issues/2061))
|
1021
1156
|
- Add whitespace to liquid example in GitHub Pages docs ([#2084]({{ site.repository }}/issues/2084))
|
1022
1157
|
- Clarify the way Sass and CoffeeScript files are read in and output ([#2067]({{ site.repository }}/issues/2067))
|
@@ -1033,8 +1168,7 @@ permalink: "/docs/history/"
|
|
1033
1168
|
- Some HTML tidying ([#2130]({{ site.repository }}/issues/2130))
|
1034
1169
|
- Remove modernizr and use html5shiv.js directly for IE less than v9 ([#2131]({{ site.repository }}/issues/2131))
|
1035
1170
|
- Remove unused images ([#2187]({{ site.repository }}/issues/2187))
|
1036
|
-
- Use `array_to_sentence_string` filter when outputting news item
|
1037
|
-
categories ([#2191]({{ site.repository }}/issues/2191))
|
1171
|
+
- Use `array_to_sentence_string` filter when outputting news item categories ([#2191]({{ site.repository }}/issues/2191))
|
1038
1172
|
- Add link to Help repo in primary navigation bar ([#2177]({{ site.repository }}/issues/2177))
|
1039
1173
|
- Switch to using an ico file for the shortcut icon ([#2193]({{ site.repository }}/issues/2193))
|
1040
1174
|
- Use numbers to specify font weights and only bring in font weights used ([#2185]({{ site.repository }}/issues/2185))
|
@@ -1095,6 +1229,7 @@ permalink: "/docs/history/"
|
|
1095
1229
|
|
1096
1230
|
### Bug Fixes
|
1097
1231
|
{: #bug-fixes-v1-4-3}
|
1232
|
+
|
1098
1233
|
- Patch show-stopping security vulnerabilities ([#1944]({{ site.repository }}/issues/1944))
|
1099
1234
|
|
1100
1235
|
|
@@ -1103,6 +1238,7 @@ permalink: "/docs/history/"
|
|
1103
1238
|
|
1104
1239
|
### Bug Fixes
|
1105
1240
|
{: #bug-fixes-v1-4-2}
|
1241
|
+
|
1106
1242
|
- Turn on Maruku fenced code blocks by default ([#1830]({{ site.repository }}/issues/1830))
|
1107
1243
|
|
1108
1244
|
|
@@ -1111,6 +1247,7 @@ permalink: "/docs/history/"
|
|
1111
1247
|
|
1112
1248
|
### Bug Fixes
|
1113
1249
|
{: #bug-fixes-v1-4-1}
|
1250
|
+
|
1114
1251
|
- Don't allow nil entries when loading posts ([#1796]({{ site.repository }}/issues/1796))
|
1115
1252
|
|
1116
1253
|
|
@@ -1119,25 +1256,30 @@ permalink: "/docs/history/"
|
|
1119
1256
|
|
1120
1257
|
### Major Enhancements
|
1121
1258
|
{: #major-enhancements-v1-4-0}
|
1259
|
+
|
1122
1260
|
- Add support for TOML config files ([#1765]({{ site.repository }}/issues/1765))
|
1123
1261
|
|
1124
1262
|
### Minor Enhancements
|
1125
1263
|
{: #minor-enhancements-v1-4-0}
|
1264
|
+
|
1126
1265
|
- Sort plugins as a way to establish a load order ([#1682]({{ site.repository }}/issues/1682))
|
1127
1266
|
- Update Maruku to 0.7.0 ([#1775]({{ site.repository }}/issues/1775))
|
1128
1267
|
|
1129
1268
|
### Bug Fixes
|
1130
1269
|
{: #bug-fixes-v1-4-0}
|
1270
|
+
|
1131
1271
|
- Add a space between two words in a Pagination warning message ([#1769]({{ site.repository }}/issues/1769))
|
1132
1272
|
- Upgrade `toml` gem to `v0.1.0` to maintain compat with Ruby 1.8.7 ([#1778]({{ site.repository }}/issues/1778))
|
1133
1273
|
|
1134
1274
|
### Development Fixes
|
1135
1275
|
{: #development-fixes-v1-4-0}
|
1276
|
+
|
1136
1277
|
- Remove some whitespace in the code ([#1755]({{ site.repository }}/issues/1755))
|
1137
1278
|
- Remove some duplication in the reading of posts and drafts ([#1779]({{ site.repository }}/issues/1779))
|
1138
1279
|
|
1139
1280
|
### Site Enhancements
|
1140
1281
|
{: #site-enhancements-v1-4-0}
|
1282
|
+
|
1141
1283
|
- Fixed case of a word in the Jekyll v1.3.0 release post ([#1762]({{ site.repository }}/issues/1762))
|
1142
1284
|
- Fixed the mime type for the favicon ([#1772]({{ site.repository }}/issues/1772))
|
1143
1285
|
|
@@ -1147,19 +1289,20 @@ permalink: "/docs/history/"
|
|
1147
1289
|
|
1148
1290
|
### Minor Enhancements
|
1149
1291
|
{: #minor-enhancements-v1-3-1}
|
1292
|
+
|
1150
1293
|
- Add a `--prefix` option to passthrough for the importers ([#1669]({{ site.repository }}/issues/1669))
|
1151
|
-
- Push the paginator plugin lower in the plugin priority order so
|
1152
|
-
other plugins run before it ([#1759]({{ site.repository }}/issues/1759))
|
1294
|
+
- Push the paginator plugin lower in the plugin priority order so other plugins run before it ([#1759]({{ site.repository }}/issues/1759))
|
1153
1295
|
|
1154
1296
|
### Bug Fixes
|
1155
1297
|
{: #bug-fixes-v1-3-1}
|
1298
|
+
|
1156
1299
|
- Fix the include tag when ran in a loop ([#1726]({{ site.repository }}/issues/1726))
|
1157
1300
|
- Fix errors when using `--watch` on 1.8.7 ([#1730]({{ site.repository }}/issues/1730))
|
1158
|
-
- Specify where the include is called from if an included file is
|
1159
|
-
missing ([#1746]({{ site.repository }}/issues/1746))
|
1301
|
+
- Specify where the include is called from if an included file is missing ([#1746]({{ site.repository }}/issues/1746))
|
1160
1302
|
|
1161
1303
|
### Development Fixes
|
1162
1304
|
{: #development-fixes-v1-3-1}
|
1305
|
+
|
1163
1306
|
- Extract `Site#filter_entries` into its own object ([#1697]({{ site.repository }}/issues/1697))
|
1164
1307
|
- Enable Travis' bundle caching ([#1734]({{ site.repository }}/issues/1734))
|
1165
1308
|
- Remove trailing whitespace in some files ([#1736]({{ site.repository }}/issues/1736))
|
@@ -1167,11 +1310,10 @@ permalink: "/docs/history/"
|
|
1167
1310
|
|
1168
1311
|
### Site Enhancements
|
1169
1312
|
{: #site-enhancements-v1-3-1}
|
1313
|
+
|
1170
1314
|
- Update link to example Rakefile to point to specific commit ([#1741]({{ site.repository }}/issues/1741))
|
1171
|
-
- Fix drafts docs to indicate that draft time is based on file modification
|
1172
|
-
|
1173
|
-
- Add `jekyll-monthly-archive-plugin` and `jekyll-category-archive-plugin` to
|
1174
|
-
list of third-party plugins ([#1693]({{ site.repository }}/issues/1693))
|
1315
|
+
- Fix drafts docs to indicate that draft time is based on file modification time, not `Time.now` ([#1695]({{ site.repository }}/issues/1695))
|
1316
|
+
- Add `jekyll-monthly-archive-plugin` and `jekyll-category-archive-plugin` to list of third-party plugins ([#1693]({{ site.repository }}/issues/1693))
|
1175
1317
|
- Add `jekyll-asset-path-plugin` to list of third-party plugins ([#1670]({{ site.repository }}/issues/1670))
|
1176
1318
|
- Add `emoji-for-jekyll` to list of third-part plugins ([#1708]({{ site.repository }}/issues/1708))
|
1177
1319
|
- Fix previous section link on plugins page to point to pagination page ([#1707]({{ site.repository }}/issues/1707))
|
@@ -1186,47 +1328,43 @@ permalink: "/docs/history/"
|
|
1186
1328
|
|
1187
1329
|
### Major Enhancements
|
1188
1330
|
{: #major-enhancements-v1-3-0}
|
1189
|
-
|
1190
|
-
|
1331
|
+
|
1332
|
+
- Add support for adding data as YAML files under a site's `_data` directory ([#1003]({{ site.repository }}/issues/1003))
|
1191
1333
|
- Allow variables to be used with `include` tags ([#1495]({{ site.repository }}/issues/1495))
|
1192
1334
|
- Allow using gems for plugin management ([#1557]({{ site.repository }}/issues/1557))
|
1193
1335
|
|
1194
1336
|
### Minor Enhancements
|
1195
1337
|
{: #minor-enhancements-v1-3-0}
|
1338
|
+
|
1196
1339
|
- Decrease the specificity in the site template CSS ([#1574]({{ site.repository }}/issues/1574))
|
1197
1340
|
- Add `encoding` configuration option ([#1449]({{ site.repository }}/issues/1449))
|
1198
|
-
- Provide better error handling for Jekyll's custom Liquid tags
|
1199
|
-
|
1200
|
-
- If
|
1201
|
-
include file that caused the error to the error message ([#1596]({{ site.repository }}/issues/1596))
|
1202
|
-
- If a layout causes a Liquid error, change the error message so that
|
1203
|
-
we know it comes from the layout ([#1601]({{ site.repository }}/issues/1601))
|
1341
|
+
- Provide better error handling for Jekyll's custom Liquid tags ([#1514]({{ site.repository }}/issues/1514))
|
1342
|
+
- If an included file causes a Liquid error, add the path to the include file that caused the error to the error message ([#1596]({{ site.repository }}/issues/1596))
|
1343
|
+
- If a layout causes a Liquid error, change the error message so that we know it comes from the layout ([#1601]({{ site.repository }}/issues/1601))
|
1204
1344
|
- Update Kramdown dependency to `~> 1.2` ([#1610]({{ site.repository }}/issues/1610))
|
1205
1345
|
- Update `safe_yaml` dependency to `~> 0.9.7` ([#1602]({{ site.repository }}/issues/1602))
|
1206
1346
|
- Allow layouts to be in subfolders like includes ([#1622]({{ site.repository }}/issues/1622))
|
1207
1347
|
- Switch to listen for site watching while serving ([#1589]({{ site.repository }}/issues/1589))
|
1208
1348
|
- Add a `json` liquid filter to be used in sites ([#1651]({{ site.repository }}/issues/1651))
|
1209
|
-
- Point people to the migration docs when the `jekyll-import` gem is
|
1210
|
-
missing ([#1662]({{ site.repository }}/issues/1662))
|
1349
|
+
- Point people to the migration docs when the `jekyll-import` gem is missing ([#1662]({{ site.repository }}/issues/1662))
|
1211
1350
|
|
1212
1351
|
### Bug Fixes
|
1213
1352
|
{: #bug-fixes-v1-3-0}
|
1214
|
-
|
1215
|
-
|
1353
|
+
|
1354
|
+
- Fix up matching against source and destination when the two locations are similar ([#1556]({{ site.repository }}/issues/1556))
|
1216
1355
|
- Fix the missing `pathname` require in certain cases ([#1255]({{ site.repository }}/issues/1255))
|
1217
1356
|
- Use `+` instead of `Array#concat` when building `Post` attribute list ([#1571]({{ site.repository }}/issues/1571))
|
1218
1357
|
- Print server address when launching a server ([#1586]({{ site.repository }}/issues/1586))
|
1219
1358
|
- Downgrade to Maruku `~> 0.6.0` in order to avoid changes in rendering ([#1598]({{ site.repository }}/issues/1598))
|
1220
1359
|
- Fix error with failing include tag when variable was file name ([#1613]({{ site.repository }}/issues/1613))
|
1221
1360
|
- Downcase lexers before passing them to pygments ([#1615]({{ site.repository }}/issues/1615))
|
1222
|
-
- Capitalize the short verbose switch because it conflicts with the
|
1223
|
-
built-in Commander switch ([#1660]({{ site.repository }}/issues/1660))
|
1361
|
+
- Capitalize the short verbose switch because it conflicts with the built-in Commander switch ([#1660]({{ site.repository }}/issues/1660))
|
1224
1362
|
- Fix compatibility with 1.8.x ([#1665]({{ site.repository }}/issues/1665))
|
1225
|
-
- Fix an error with the new file watching code due to library version
|
1226
|
-
incompatibilities ([#1687]({{ site.repository }}/issues/1687))
|
1363
|
+
- Fix an error with the new file watching code due to library version incompatibilities ([#1687]({{ site.repository }}/issues/1687))
|
1227
1364
|
|
1228
1365
|
### Development Fixes
|
1229
1366
|
{: #development-fixes-v1-3-0}
|
1367
|
+
|
1230
1368
|
- Add coverage reporting with Coveralls ([#1539]({{ site.repository }}/issues/1539))
|
1231
1369
|
- Refactor the Liquid `include` tag ([#1490]({{ site.repository }}/issues/1490))
|
1232
1370
|
- Update launchy dependency to `~> 2.3` ([#1608]({{ site.repository }}/issues/1608))
|
@@ -1244,6 +1382,7 @@ permalink: "/docs/history/"
|
|
1244
1382
|
|
1245
1383
|
### Site Enhancements
|
1246
1384
|
{: #site-enhancements-v1-3-0}
|
1385
|
+
|
1247
1386
|
- Fix params for `JekyllImport::WordPress.process` arguments ([#1554]({{ site.repository }}/issues/1554))
|
1248
1387
|
- Add `jekyll-suggested-tweet` to list of third-party plugins ([#1555]({{ site.repository }}/issues/1555))
|
1249
1388
|
- Link to Liquid's docs for tags and filters ([#1553]({{ site.repository }}/issues/1553))
|
@@ -1251,8 +1390,7 @@ permalink: "/docs/history/"
|
|
1251
1390
|
- Simplify/generalize pagination docs ([#1577]({{ site.repository }}/issues/1577))
|
1252
1391
|
- Add documentation for the new data sources feature ([#1503]({{ site.repository }}/issues/1503))
|
1253
1392
|
- Add more information on how to create generators ([#1590]({{ site.repository }}/issues/1590), [#1592]({{ site.repository }}/issues/1592))
|
1254
|
-
- Improve the instructions for mimicking GitHub Flavored Markdown
|
1255
|
-
([#1614]({{ site.repository }}/issues/1614))
|
1393
|
+
- Improve the instructions for mimicking GitHub Flavored Markdown ([#1614]({{ site.repository }}/issues/1614))
|
1256
1394
|
- Add `jekyll-import` warning note of missing dependencies ([#1626]({{ site.repository }}/issues/1626))
|
1257
1395
|
- Fix grammar in the Usage section ([#1635]({{ site.repository }}/issues/1635))
|
1258
1396
|
- Add documentation for the use of gems as plugins ([#1656]({{ site.repository }}/issues/1656))
|
@@ -1267,6 +1405,7 @@ permalink: "/docs/history/"
|
|
1267
1405
|
|
1268
1406
|
### Minor Enhancements
|
1269
1407
|
{: #minor-enhancements-v1-2-1}
|
1408
|
+
|
1270
1409
|
- Print better messages for detached server. Mute output on detach. ([#1518]({{ site.repository }}/issues/1518))
|
1271
1410
|
- Disable reverse lookup when running `jekyll serve` ([#1363]({{ site.repository }}/issues/1363))
|
1272
1411
|
- Upgrade RedCarpet dependency to `~> 2.3.0` ([#1515]({{ site.repository }}/issues/1515))
|
@@ -1274,17 +1413,20 @@ permalink: "/docs/history/"
|
|
1274
1413
|
|
1275
1414
|
### Bug Fixes
|
1276
1415
|
{: #bug-fixes-v1-2-1}
|
1416
|
+
|
1277
1417
|
- Fix file discrepancy in gemspec ([#1522]({{ site.repository }}/issues/1522))
|
1278
1418
|
- Force rendering of Include tag ([#1525]({{ site.repository }}/issues/1525))
|
1279
1419
|
|
1280
1420
|
### Development Fixes
|
1281
1421
|
{: #development-fixes-v1-2-1}
|
1422
|
+
|
1282
1423
|
- Add a rake task to generate a new release post ([#1404]({{ site.repository }}/issues/1404))
|
1283
1424
|
- Mute LSI output in tests ([#1531]({{ site.repository }}/issues/1531))
|
1284
1425
|
- Update contributor documentation ([#1537]({{ site.repository }}/issues/1537))
|
1285
1426
|
|
1286
1427
|
### Site Enhancements
|
1287
1428
|
{: #site-enhancements-v1-2-1}
|
1429
|
+
|
1288
1430
|
- Fix a couple of validation errors on the site ([#1511]({{ site.repository }}/issues/1511))
|
1289
1431
|
- Make navigation menus reusable ([#1507]({{ site.repository }}/issues/1507))
|
1290
1432
|
- Fix link to History page from Release v1.2.0 notes post.
|
@@ -1297,45 +1439,41 @@ permalink: "/docs/history/"
|
|
1297
1439
|
|
1298
1440
|
### Major Enhancements
|
1299
1441
|
{: #major-enhancements-v1-2-0}
|
1442
|
+
|
1300
1443
|
- Disable automatically-generated excerpts when `excerpt_separator` is `""`. ([#1386]({{ site.repository }}/issues/1386))
|
1301
1444
|
- Add checking for URL conflicts when running `jekyll doctor` ([#1389]({{ site.repository }}/issues/1389))
|
1302
1445
|
|
1303
1446
|
### Minor Enhancements
|
1304
1447
|
{: #minor-enhancements-v1-2-0}
|
1448
|
+
|
1305
1449
|
- Catch and fix invalid `paginate` values ([#1390]({{ site.repository }}/issues/1390))
|
1306
|
-
- Remove superfluous `div.container` from the default html template for
|
1307
|
-
`jekyll new` ([#1315]({{ site.repository }}/issues/1315))
|
1450
|
+
- Remove superfluous `div.container` from the default html template for `jekyll new` ([#1315]({{ site.repository }}/issues/1315))
|
1308
1451
|
- Add `-D` short-form switch for the drafts option ([#1394]({{ site.repository }}/issues/1394))
|
1309
1452
|
- Update the links in the site template for Twitter and GitHub ([#1400]({{ site.repository }}/issues/1400))
|
1310
1453
|
- Update dummy email address to example.com domain ([#1408]({{ site.repository }}/issues/1408))
|
1311
|
-
- Update normalize.css to v2.1.2 and minify; add rake task to update
|
1312
|
-
|
1313
|
-
- Add the ability to detach the server ran by `jekyll serve` from it's
|
1314
|
-
controlling terminal ([#1443]({{ site.repository }}/issues/1443))
|
1454
|
+
- Update normalize.css to v2.1.2 and minify; add rake task to update normalize.css with greater ease. ([#1430]({{ site.repository }}/issues/1430))
|
1455
|
+
- Add the ability to detach the server ran by `jekyll serve` from it's controlling terminal ([#1443]({{ site.repository }}/issues/1443))
|
1315
1456
|
- Improve permalink generation for URLs with special characters ([#944]({{ site.repository }}/issues/944))
|
1316
|
-
- Expose the current Jekyll version to posts and pages via a new
|
1317
|
-
`jekyll.version` variable ([#1481]({{ site.repository }}/issues/1481))
|
1457
|
+
- Expose the current Jekyll version to posts and pages via a new `jekyll.version` variable ([#1481]({{ site.repository }}/issues/1481))
|
1318
1458
|
|
1319
1459
|
### Bug Fixes
|
1320
1460
|
{: #bug-fixes-v1-2-0}
|
1461
|
+
|
1321
1462
|
- Markdown extension matching matches only exact matches ([#1382]({{ site.repository }}/issues/1382))
|
1322
1463
|
- Fixed NoMethodError when message passed to `Stevenson#message` is nil ([#1388]({{ site.repository }}/issues/1388))
|
1323
1464
|
- Use binary mode when writing file ([#1364]({{ site.repository }}/issues/1364))
|
1324
|
-
- Fix 'undefined method `encoding` for "mailto"' errors w/ Ruby 1.8 and
|
1325
|
-
Kramdown > 0.14.0 ([#1397]({{ site.repository }}/issues/1397))
|
1465
|
+
- Fix 'undefined method `encoding` for "mailto"' errors w/ Ruby 1.8 and Kramdown > 0.14.0 ([#1397]({{ site.repository }}/issues/1397))
|
1326
1466
|
- Do not force the permalink to be a dir if it ends on .html ([#963]({{ site.repository }}/issues/963))
|
1327
1467
|
- When a Liquid Exception is caught, show the full path rel. to site source ([#1415]({{ site.repository }}/issues/1415))
|
1328
|
-
- Properly read in the config options when serving the docs locally
|
1329
|
-
([#1444]({{ site.repository }}/issues/1444))
|
1468
|
+
- Properly read in the config options when serving the docs locally ([#1444]({{ site.repository }}/issues/1444))
|
1330
1469
|
- Fixed `--layouts` option for `build` and `serve` commands ([#1458]({{ site.repository }}/issues/1458))
|
1331
1470
|
- Remove kramdown as a runtime dependency since it's optional ([#1498]({{ site.repository }}/issues/1498))
|
1332
|
-
- Provide proper error handling for invalid file names in the include
|
1333
|
-
tag ([#1494]({{ site.repository }}/issues/1494))
|
1471
|
+
- Provide proper error handling for invalid file names in the include tag ([#1494]({{ site.repository }}/issues/1494))
|
1334
1472
|
|
1335
1473
|
### Development Fixes
|
1336
1474
|
{: #development-fixes-v1-2-0}
|
1337
|
-
|
1338
|
-
|
1475
|
+
|
1476
|
+
- Remove redundant argument to Jekyll::Commands::New#scaffold_post_content ([#1356]({{ site.repository }}/issues/1356))
|
1339
1477
|
- Add new dependencies to the README ([#1360]({{ site.repository }}/issues/1360))
|
1340
1478
|
- Fix link to contributing page in README ([#1424]({{ site.repository }}/issues/1424))
|
1341
1479
|
- Update TomDoc in Pager#initialize to match params ([#1441]({{ site.repository }}/issues/1441))
|
@@ -1346,6 +1484,7 @@ permalink: "/docs/history/"
|
|
1346
1484
|
|
1347
1485
|
### Site Enhancements
|
1348
1486
|
{: #site-enhancements-v1-2-0}
|
1487
|
+
|
1349
1488
|
- Add info about new releases ([#1353]({{ site.repository }}/issues/1353))
|
1350
1489
|
- Update plugin list with jekyll-rss plugin ([#1354]({{ site.repository }}/issues/1354))
|
1351
1490
|
- Update the site list page with Ruby's official site ([#1358]({{ site.repository }}/issues/1358))
|
@@ -1373,6 +1512,7 @@ permalink: "/docs/history/"
|
|
1373
1512
|
|
1374
1513
|
### Bug Fixes
|
1375
1514
|
{: #bug-fixes-v1-1-2}
|
1515
|
+
|
1376
1516
|
- Require Liquid 2.5.1 ([#1349]({{ site.repository }}/issues/1349))
|
1377
1517
|
|
1378
1518
|
|
@@ -1381,26 +1521,26 @@ permalink: "/docs/history/"
|
|
1381
1521
|
|
1382
1522
|
### Minor Enhancements
|
1383
1523
|
{: #minor-enhancements-v1-1-1}
|
1524
|
+
|
1384
1525
|
- Remove superfluous `table` selector from main.css in `jekyll new` template ([#1328]({{ site.repository }}/issues/1328))
|
1385
1526
|
- Abort with non-zero exit codes ([#1338]({{ site.repository }}/issues/1338))
|
1386
1527
|
|
1387
1528
|
### Bug Fixes
|
1388
1529
|
{: #bug-fixes-v1-1-1}
|
1530
|
+
|
1389
1531
|
- Fix up the rendering of excerpts ([#1339]({{ site.repository }}/issues/1339))
|
1390
1532
|
|
1391
1533
|
### Site Enhancements
|
1392
1534
|
{: #site-enhancements-v1-1-1}
|
1535
|
+
|
1393
1536
|
- Add Jekyll Image Tag to the plugins list ([#1306]({{ site.repository }}/issues/1306))
|
1394
1537
|
- Remove erroneous statement that `site.pages` are sorted alphabetically.
|
1395
|
-
- Add info about the `_drafts` directory to the directory structure
|
1396
|
-
|
1397
|
-
- Improve the layout of the plugin listing by organizing it into
|
1398
|
-
categories ([#1310]({{ site.repository }}/issues/1310))
|
1538
|
+
- Add info about the `_drafts` directory to the directory structure docs ([#1320]({{ site.repository }}/issues/1320))
|
1539
|
+
- Improve the layout of the plugin listing by organizing it into categories ([#1310]({{ site.repository }}/issues/1310))
|
1399
1540
|
- Add generator-jekyllrb and grunt-jekyll to plugins page ([#1330]({{ site.repository }}/issues/1330))
|
1400
1541
|
- Mention Kramdown as option for markdown parser on Extras page ([#1318]({{ site.repository }}/issues/1318))
|
1401
1542
|
- Update Quick-Start page to include reminder that all requirements must be installed ([#1327]({{ site.repository }}/issues/1327))
|
1402
|
-
- Change filename in `include` example to an HTML file so as not to indicate that Jekyll
|
1403
|
-
will automatically convert them. ([#1303]({{ site.repository }}/issues/1303))
|
1543
|
+
- Change filename in `include` example to an HTML file so as not to indicate that Jekyll will automatically convert them. ([#1303]({{ site.repository }}/issues/1303))
|
1404
1544
|
- Add an RSS feed for commits to Jekyll ([#1343]({{ site.repository }}/issues/1343))
|
1405
1545
|
|
1406
1546
|
|
@@ -1409,34 +1549,33 @@ permalink: "/docs/history/"
|
|
1409
1549
|
|
1410
1550
|
### Major Enhancements
|
1411
1551
|
{: #major-enhancements-v1-1-0}
|
1552
|
+
|
1412
1553
|
- Add `docs` subcommand to read Jekyll's docs when offline. ([#1046]({{ site.repository }}/issues/1046))
|
1413
1554
|
- Support passing parameters to templates in `include` tag ([#1204]({{ site.repository }}/issues/1204))
|
1414
1555
|
- Add support for Liquid tags to post excerpts ([#1302]({{ site.repository }}/issues/1302))
|
1415
1556
|
|
1416
1557
|
### Minor Enhancements
|
1417
1558
|
{: #minor-enhancements-v1-1-0}
|
1418
|
-
|
1419
|
-
|
1559
|
+
|
1560
|
+
- Search the hierarchy of pagination path up to site root to determine template page for pagination. ([#1198]({{ site.repository }}/issues/1198))
|
1420
1561
|
- Add the ability to generate a new Jekyll site without a template ([#1171]({{ site.repository }}/issues/1171))
|
1421
|
-
- Use redcarpet as the default markdown engine in newly generated
|
1422
|
-
|
1423
|
-
-
|
1424
|
-
sites. ([#1247]({{ site.repository }}/issues/1247))
|
1425
|
-
- In the generated site, remove files that will be replaced by a
|
1426
|
-
directory ([#1118]({{ site.repository }}/issues/1118))
|
1562
|
+
- Use redcarpet as the default markdown engine in newly generated sites ([#1245]({{ site.repository }}/issues/1245), [#1247]({{ site.repository }}/issues/1247))
|
1563
|
+
- Add `redcarpet` as a runtime dependency so `jekyll build` works out-of-the-box for new sites. ([#1247]({{ site.repository }}/issues/1247))
|
1564
|
+
- In the generated site, remove files that will be replaced by a directory ([#1118]({{ site.repository }}/issues/1118))
|
1427
1565
|
- Fail loudly if a user-specified configuration file doesn't exist ([#1098]({{ site.repository }}/issues/1098))
|
1428
1566
|
- Allow for all options for Kramdown HTML Converter ([#1201]({{ site.repository }}/issues/1201))
|
1429
1567
|
|
1430
1568
|
### Bug Fixes
|
1431
1569
|
{: #bug-fixes-v1-1-0}
|
1570
|
+
|
1432
1571
|
- Fix pagination in subdirectories. ([#1198]({{ site.repository }}/issues/1198))
|
1433
|
-
- Fix an issue with directories and permalinks that have a plus sign
|
1434
|
-
(+) in them ([#1215]({{ site.repository }}/issues/1215))
|
1572
|
+
- Fix an issue with directories and permalinks that have a plus sign (+) in them ([#1215]({{ site.repository }}/issues/1215))
|
1435
1573
|
- Provide better error reporting when generating sites ([#1253]({{ site.repository }}/issues/1253))
|
1436
1574
|
- Latest posts first in non-LSI `related_posts` ([#1271]({{ site.repository }}/issues/1271))
|
1437
1575
|
|
1438
1576
|
### Development Fixes
|
1439
1577
|
{: #development-fixes-v1-1-0}
|
1578
|
+
|
1440
1579
|
- Merge the theme and layout Cucumber steps into one step ([#1151]({{ site.repository }}/issues/1151))
|
1441
1580
|
- Restrict activesupport dependency to pre-4.0.0 to maintain compatibility with `<= 1.9.2`
|
1442
1581
|
- Include/exclude deprecation handling simplification ([#1284]({{ site.repository }}/issues/1284))
|
@@ -1445,22 +1584,20 @@ permalink: "/docs/history/"
|
|
1445
1584
|
|
1446
1585
|
### Site Enhancements
|
1447
1586
|
{: #site-enhancements-v1-1-0}
|
1587
|
+
|
1448
1588
|
- Add "News" section for release notes, along with an RSS feed ([#1093]({{ site.repository }}/issues/1093), [#1285]({{ site.repository }}/issues/1285), [#1286]({{ site.repository }}/issues/1286))
|
1449
1589
|
- Add "History" page.
|
1450
1590
|
- Restructured docs sections to include "Meta" section.
|
1451
|
-
- Add message to "Templates" page that specifies that Python must be installed in order
|
1452
|
-
to use Pygments. ([#1182]({{ site.repository }}/issues/1182))
|
1591
|
+
- Add message to "Templates" page that specifies that Python must be installed in order to use Pygments. ([#1182]({{ site.repository }}/issues/1182))
|
1453
1592
|
- Update link to the official Maruku repo ([#1175]({{ site.repository }}/issues/1175))
|
1454
1593
|
- Add documentation about `paginate_path` to "Templates" page in docs ([#1129]({{ site.repository }}/issues/1129))
|
1455
1594
|
- Give the quick-start guide its own page ([#1191]({{ site.repository }}/issues/1191))
|
1456
|
-
- Update ProTip on Installation page in docs to point to all the info about Pygments and
|
1457
|
-
the 'highlight' tag. ([#1196]({{ site.repository }}/issues/1196))
|
1595
|
+
- Update ProTip on Installation page in docs to point to all the info about Pygments and the 'highlight' tag. ([#1196]({{ site.repository }}/issues/1196))
|
1458
1596
|
- Run `site/img` through ImageOptim (thanks [@qrush](https://github.com/qrush)!) ([#1208]({{ site.repository }}/issues/1208))
|
1459
1597
|
- Added Jade Converter to `site/docs/plugins` ([#1210]({{ site.repository }}/issues/1210))
|
1460
1598
|
- Fix location of docs pages in Contributing pages ([#1214]({{ site.repository }}/issues/1214))
|
1461
1599
|
- Add ReadInXMinutes plugin to the plugin list ([#1222]({{ site.repository }}/issues/1222))
|
1462
|
-
- Remove plugins from the plugin list that have equivalents in Jekyll
|
1463
|
-
proper ([#1223]({{ site.repository }}/issues/1223))
|
1600
|
+
- Remove plugins from the plugin list that have equivalents in Jekyll proper ([#1223]({{ site.repository }}/issues/1223))
|
1464
1601
|
- Add jekyll-assets to the plugin list ([#1225]({{ site.repository }}/issues/1225))
|
1465
1602
|
- Add jekyll-pandoc-mulitple-formats to the plugin list ([#1229]({{ site.repository }}/issues/1229))
|
1466
1603
|
- Remove dead link to "Using Git to maintain your blog" ([#1227]({{ site.repository }}/issues/1227))
|
@@ -1474,13 +1611,11 @@ permalink: "/docs/history/"
|
|
1474
1611
|
- Add `jekyll-timeago` to list of third-party plugins. ([#1260]({{ site.repository }}/issues/1260))
|
1475
1612
|
- Add `jekyll-swfobject` to list of third-party plugins. ([#1263]({{ site.repository }}/issues/1263))
|
1476
1613
|
- Add `jekyll-picture-tag` to list of third-party plugins. ([#1280]({{ site.repository }}/issues/1280))
|
1477
|
-
- Update the GitHub Pages documentation regarding relative URLs
|
1478
|
-
([#1291]({{ site.repository }}/issues/1291))
|
1614
|
+
- Update the GitHub Pages documentation regarding relative URLs ([#1291]({{ site.repository }}/issues/1291))
|
1479
1615
|
- Update the S3 deployment documentation ([#1294]({{ site.repository }}/issues/1294))
|
1480
1616
|
- Add suggestion for Xcode CLT install to troubleshooting page in docs ([#1296]({{ site.repository }}/issues/1296))
|
1481
1617
|
- Add 'Working with drafts' page to docs ([#1289]({{ site.repository }}/issues/1289))
|
1482
|
-
- Add information about time zones to the documentation for a page's
|
1483
|
-
date ([#1304]({{ site.repository }}/issues/1304))
|
1618
|
+
- Add information about time zones to the documentation for a page's date ([#1304]({{ site.repository }}/issues/1304))
|
1484
1619
|
|
1485
1620
|
|
1486
1621
|
## 1.0.3 / 2013-06-07
|
@@ -1488,6 +1623,7 @@ permalink: "/docs/history/"
|
|
1488
1623
|
|
1489
1624
|
### Minor Enhancements
|
1490
1625
|
{: #minor-enhancements-v1-0-3}
|
1626
|
+
|
1491
1627
|
- Add support to gist tag for private gists. ([#1189]({{ site.repository }}/issues/1189))
|
1492
1628
|
- Fail loudly when Maruku errors out ([#1190]({{ site.repository }}/issues/1190))
|
1493
1629
|
- Move the building of related posts into their own class ([#1057]({{ site.repository }}/issues/1057))
|
@@ -1497,17 +1633,17 @@ permalink: "/docs/history/"
|
|
1497
1633
|
|
1498
1634
|
### Bug Fixes
|
1499
1635
|
{: #bug-fixes-v1-0-3}
|
1636
|
+
|
1500
1637
|
- Fix typo in Stevenson constant "ERROR". ([#1166]({{ site.repository }}/issues/1166))
|
1501
1638
|
- Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue ([#1106]({{ site.repository }}/issues/1106))
|
1502
1639
|
- Exit with a non-zero exit code when dealing with a Liquid error ([#1121]({{ site.repository }}/issues/1121))
|
1503
|
-
- Make the `exclude` and `include` options backwards compatible with
|
1504
|
-
versions of Jekyll prior to 1.0 ([#1114]({{ site.repository }}/issues/1114))
|
1640
|
+
- Make the `exclude` and `include` options backwards compatible with versions of Jekyll prior to 1.0 ([#1114]({{ site.repository }}/issues/1114))
|
1505
1641
|
- Fix pagination on Windows ([#1063]({{ site.repository }}/issues/1063))
|
1506
|
-
- Fix the application of Pygments' Generic Output style to Go code
|
1507
|
-
([#1156]({{ site.repository }}/issues/1156))
|
1642
|
+
- Fix the application of Pygments' Generic Output style to Go code ([#1156]({{ site.repository }}/issues/1156))
|
1508
1643
|
|
1509
1644
|
### Site Enhancements
|
1510
1645
|
{: #site-enhancements-v1-0-3}
|
1646
|
+
|
1511
1647
|
- Add a Pro Tip to docs about front matter variables being optional ([#1147]({{ site.repository }}/issues/1147))
|
1512
1648
|
- Add changelog to site as History page in /docs/ ([#1065]({{ site.repository }}/issues/1065))
|
1513
1649
|
- Add note to Upgrading page about new config options in 1.0.x ([#1146]({{ site.repository }}/issues/1146))
|
@@ -1521,13 +1657,13 @@ permalink: "/docs/history/"
|
|
1521
1657
|
- Fix logic for `relative_permalinks` instructions on Upgrading page ([#1101]({{ site.repository }}/issues/1101))
|
1522
1658
|
- Add docs for post excerpt ([#1072]({{ site.repository }}/issues/1072))
|
1523
1659
|
- Add docs for gist tag ([#1072]({{ site.repository }}/issues/1072))
|
1524
|
-
- Add docs indicating that Pygments does not need to be installed
|
1525
|
-
separately ([#1099]({{ site.repository }}/issues/1099), [#1119]({{ site.repository }}/issues/1119))
|
1660
|
+
- Add docs indicating that Pygments does not need to be installed separately ([#1099]({{ site.repository }}/issues/1099), [#1119]({{ site.repository }}/issues/1119))
|
1526
1661
|
- Update the migrator docs to be current ([#1136]({{ site.repository }}/issues/1136))
|
1527
1662
|
- Add the Jekyll Gallery Plugin to the plugin list ([#1143]({{ site.repository }}/issues/1143))
|
1528
1663
|
|
1529
1664
|
### Development Fixes
|
1530
1665
|
{: #development-fixes-v1-0-3}
|
1666
|
+
|
1531
1667
|
- Use Jekyll.logger instead of Jekyll::Stevenson to log things ([#1149]({{ site.repository }}/issues/1149))
|
1532
1668
|
- Fix pesky Cucumber infinite loop ([#1139]({{ site.repository }}/issues/1139))
|
1533
1669
|
- Do not write posts with timezones in Cucumber tests ([#1124]({{ site.repository }}/issues/1124))
|
@@ -1539,11 +1675,13 @@ permalink: "/docs/history/"
|
|
1539
1675
|
|
1540
1676
|
### Major Enhancements
|
1541
1677
|
{: #major-enhancements-v1-0-2}
|
1678
|
+
|
1542
1679
|
- Add `jekyll doctor` command to check site for any known compatibility problems ([#1081]({{ site.repository }}/issues/1081))
|
1543
1680
|
- Backwards-compatibilize relative permalinks ([#1081]({{ site.repository }}/issues/1081))
|
1544
1681
|
|
1545
1682
|
### Minor Enhancements
|
1546
1683
|
{: #minor-enhancements-v1-0-2}
|
1684
|
+
|
1547
1685
|
- Add a `data-lang="<lang>"` attribute to Redcarpet code blocks ([#1066]({{ site.repository }}/issues/1066))
|
1548
1686
|
- Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084]({{ site.repository }}/issues/1084))
|
1549
1687
|
- Update pygments.rb version to 0.5.0 ([#1061]({{ site.repository }}/issues/1061))
|
@@ -1551,11 +1689,13 @@ permalink: "/docs/history/"
|
|
1551
1689
|
|
1552
1690
|
### Bug Fixes
|
1553
1691
|
{: #bug-fixes-v1-0-2}
|
1692
|
+
|
1554
1693
|
- Fix issue when categories are numbers ([#1078]({{ site.repository }}/issues/1078))
|
1555
1694
|
- Catching that Redcarpet gem isn't installed ([#1059]({{ site.repository }}/issues/1059))
|
1556
1695
|
|
1557
1696
|
### Site Enhancements
|
1558
1697
|
{: #site-enhancements-v1-0-2}
|
1698
|
+
|
1559
1699
|
- Add documentation about `relative_permalinks` ([#1081]({{ site.repository }}/issues/1081))
|
1560
1700
|
- Remove pygments-installation instructions, as pygments.rb is bundled with it ([#1079]({{ site.repository }}/issues/1079))
|
1561
1701
|
- Move pages to be Pages for realz ([#985]({{ site.repository }}/issues/985))
|
@@ -1567,12 +1707,14 @@ permalink: "/docs/history/"
|
|
1567
1707
|
|
1568
1708
|
### Minor Enhancements
|
1569
1709
|
{: #minor-enhancements-v1-0-1}
|
1710
|
+
|
1570
1711
|
- Do not force use of `toc_token` when using `generate_tok` in RDiscount ([#1048]({{ site.repository }}/issues/1048))
|
1571
1712
|
- Add newer `language-` class name prefix to code blocks ([#1037]({{ site.repository }}/issues/1037))
|
1572
1713
|
- Commander error message now preferred over process abort with incorrect args ([#1040]({{ site.repository }}/issues/1040))
|
1573
1714
|
|
1574
1715
|
### Bug Fixes
|
1575
1716
|
{: #bug-fixes-v1-0-1}
|
1717
|
+
|
1576
1718
|
- Make Redcarpet respect the pygments configuration option ([#1053]({{ site.repository }}/issues/1053))
|
1577
1719
|
- Fix the index build with LSI ([#1045]({{ site.repository }}/issues/1045))
|
1578
1720
|
- Don't print deprecation warning when no arguments are specified. ([#1041]({{ site.repository }}/issues/1041))
|
@@ -1580,6 +1722,7 @@ permalink: "/docs/history/"
|
|
1580
1722
|
|
1581
1723
|
### Site Enhancements
|
1582
1724
|
{: #site-enhancements-v1-0-1}
|
1725
|
+
|
1583
1726
|
- Changed https to http in the GitHub Pages link ([#1051]({{ site.repository }}/issues/1051))
|
1584
1727
|
- Remove CSS cruft, fix typos, fix HTML errors ([#1028]({{ site.repository }}/issues/1028))
|
1585
1728
|
- Removing manual install of Pip and Distribute ([#1025]({{ site.repository }}/issues/1025))
|
@@ -1587,6 +1730,7 @@ permalink: "/docs/history/"
|
|
1587
1730
|
|
1588
1731
|
### Development Fixes
|
1589
1732
|
{: #development-fixes-v1-0-1}
|
1733
|
+
|
1590
1734
|
- Markdownify history file ([#1027]({{ site.repository }}/issues/1027))
|
1591
1735
|
- Update links on README to point to new jekyllrb.com ([#1018]({{ site.repository }}/issues/1018))
|
1592
1736
|
|
@@ -1596,6 +1740,7 @@ permalink: "/docs/history/"
|
|
1596
1740
|
|
1597
1741
|
### Major Enhancements
|
1598
1742
|
{: #major-enhancements-v1-0-0}
|
1743
|
+
|
1599
1744
|
- Add `jekyll new` subcommand: generate a Jekyll scaffold ([#764]({{ site.repository }}/issues/764))
|
1600
1745
|
- Refactored Jekyll commands into subcommands: build, serve, and migrate. ([#690]({{ site.repository }}/issues/690))
|
1601
1746
|
- Removed importers/migrators from main project, migrated to jekyll-import sub-gem ([#793]({{ site.repository }}/issues/793))
|
@@ -1604,6 +1749,7 @@ permalink: "/docs/history/"
|
|
1604
1749
|
|
1605
1750
|
### Minor Enhancements
|
1606
1751
|
{: #minor-enhancements-v1-0-0}
|
1752
|
+
|
1607
1753
|
- Site template HTML5-ified ([#964]({{ site.repository }}/issues/964))
|
1608
1754
|
- Use post's directory path when matching for the `post_url` tag ([#998]({{ site.repository }}/issues/998))
|
1609
1755
|
- Loosen dependency on Pygments so it's only required when it's needed ([#1015]({{ site.repository }}/issues/1015))
|
@@ -1643,8 +1789,7 @@ permalink: "/docs/history/"
|
|
1643
1789
|
- Massively accelerate LSI performance ([#664]({{ site.repository }}/issues/664))
|
1644
1790
|
- Truncate post slugs when importing from Tumblr ([#496]({{ site.repository }}/issues/496))
|
1645
1791
|
- Add glob support to include, exclude option ([#743]({{ site.repository }}/issues/743))
|
1646
|
-
- Layout of Page or Post defaults to 'page' or 'post', respectively ([#580]({{ site.repository }}/issues/580))
|
1647
|
-
REPEALED by ([#977]({{ site.repository }}/issues/977))
|
1792
|
+
- Layout of Page or Post defaults to 'page' or 'post', respectively ([#580]({{ site.repository }}/issues/580)) REPEALED by ([#977]({{ site.repository }}/issues/977))
|
1648
1793
|
- "Keep files" feature ([#685]({{ site.repository }}/issues/685))
|
1649
1794
|
- Output full path & name for files that don't parse ([#745]({{ site.repository }}/issues/745))
|
1650
1795
|
- Add source and destination directory protection ([#535]({{ site.repository }}/issues/535))
|
@@ -1670,8 +1815,7 @@ permalink: "/docs/history/"
|
|
1670
1815
|
- Fixed Page#dir and Page#url for edge cases ([#536]({{ site.repository }}/issues/536))
|
1671
1816
|
- Fix broken `post_url` with posts with a time in their YAML front matter ([#831]({{ site.repository }}/issues/831))
|
1672
1817
|
- Look for plugins under the source directory ([#654]({{ site.repository }}/issues/654))
|
1673
|
-
- Tumblr Migrator: finds `_posts` dir correctly, fixes truncation of long
|
1674
|
-
post names ([#775]({{ site.repository }}/issues/775))
|
1818
|
+
- Tumblr Migrator: finds `_posts` dir correctly, fixes truncation of long post names ([#775]({{ site.repository }}/issues/775))
|
1675
1819
|
- Force Categories to be Strings ([#767]({{ site.repository }}/issues/767))
|
1676
1820
|
- Safe YAML plugin to prevent vulnerability ([#777]({{ site.repository }}/issues/777))
|
1677
1821
|
- Add SVG support to Jekyll/WEBrick. ([#407]({{ site.repository }}/issues/407), [#406]({{ site.repository }}/issues/406))
|
@@ -1679,6 +1823,7 @@ permalink: "/docs/history/"
|
|
1679
1823
|
|
1680
1824
|
### Site Enhancements
|
1681
1825
|
{: #site-enhancements-v1-0-0}
|
1826
|
+
|
1682
1827
|
- Responsify ([#860]({{ site.repository }}/issues/860))
|
1683
1828
|
- Fix spelling, punctuation and phrasal errors ([#989]({{ site.repository }}/issues/989))
|
1684
1829
|
- Update quickstart instructions with `new` command ([#966]({{ site.repository }}/issues/966))
|
@@ -1690,15 +1835,14 @@ permalink: "/docs/history/"
|
|
1690
1835
|
|
1691
1836
|
### Development Fixes
|
1692
1837
|
{: #development-fixes-v1-0-0}
|
1838
|
+
|
1693
1839
|
- Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 ([#938]({{ site.repository }}/issues/938))
|
1694
|
-
- Added "features:html" rake task for debugging purposes, cleaned up
|
1695
|
-
Cucumber profiles ([#832]({{ site.repository }}/issues/832))
|
1840
|
+
- Added "features:html" rake task for debugging purposes, cleaned up Cucumber profiles ([#832]({{ site.repository }}/issues/832))
|
1696
1841
|
- Explicitly require HTTPS rubygems source in Gemfile ([#826]({{ site.repository }}/issues/826))
|
1697
1842
|
- Changed Ruby version for development to 1.9.3-p374 from p362 ([#801]({{ site.repository }}/issues/801))
|
1698
1843
|
- Including a link to the GitHub Ruby style guide in CONTRIBUTING.md ([#806]({{ site.repository }}/issues/806))
|
1699
1844
|
- Added script/bootstrap ([#776]({{ site.repository }}/issues/776))
|
1700
|
-
- Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version
|
1701
|
-
of greater than 1.9 ([#771]({{ site.repository }}/issues/771))
|
1845
|
+
- Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version of greater than 1.9 ([#771]({{ site.repository }}/issues/771))
|
1702
1846
|
- Switch to Simplecov for coverage report ([#765]({{ site.repository }}/issues/765))
|
1703
1847
|
|
1704
1848
|
|
@@ -1707,6 +1851,7 @@ permalink: "/docs/history/"
|
|
1707
1851
|
|
1708
1852
|
### Minor Enhancements
|
1709
1853
|
{: #minor-enhancements-v0-12-1}
|
1854
|
+
|
1710
1855
|
- Update Kramdown version to 0.14.1 ([#744]({{ site.repository }}/issues/744))
|
1711
1856
|
- Test Enhancements
|
1712
1857
|
- Update Rake version to 10.0.3 ([#744]({{ site.repository }}/issues/744))
|
@@ -1719,6 +1864,7 @@ permalink: "/docs/history/"
|
|
1719
1864
|
|
1720
1865
|
### Minor Enhancements
|
1721
1866
|
{: #minor-enhancements-v0-12-0}
|
1867
|
+
|
1722
1868
|
- Add ability to explicitly specify included files ([#261]({{ site.repository }}/issues/261))
|
1723
1869
|
- Add `--default-mimetype` option ([#279]({{ site.repository }}/issues/279))
|
1724
1870
|
- Allow setting of RedCloth options ([#284]({{ site.repository }}/issues/284))
|
@@ -1740,12 +1886,14 @@ permalink: "/docs/history/"
|
|
1740
1886
|
|
1741
1887
|
## 0.11.2 / 2011-12-27
|
1742
1888
|
{: #v0-11-2}
|
1889
|
+
|
1743
1890
|
- Bug Fixes
|
1744
1891
|
- Fix gemspec
|
1745
1892
|
|
1746
1893
|
|
1747
1894
|
## 0.11.1 / 2011-12-27
|
1748
1895
|
{: #v0-11-1}
|
1896
|
+
|
1749
1897
|
- Bug Fixes
|
1750
1898
|
- Fix extra blank line in highlight blocks ([#409]({{ site.repository }}/issues/409))
|
1751
1899
|
- Update dependencies
|
@@ -1756,6 +1904,7 @@ permalink: "/docs/history/"
|
|
1756
1904
|
|
1757
1905
|
### Major Enhancements
|
1758
1906
|
{: #major-enhancements-v0-11-0}
|
1907
|
+
|
1759
1908
|
- Add command line importer functionality ([#253]({{ site.repository }}/issues/253))
|
1760
1909
|
- Add Redcarpet Markdown support ([#318]({{ site.repository }}/issues/318))
|
1761
1910
|
- Make markdown/textile extensions configurable ([#312]({{ site.repository }}/issues/312))
|
@@ -1763,6 +1912,7 @@ permalink: "/docs/history/"
|
|
1763
1912
|
|
1764
1913
|
### Minor Enhancements
|
1765
1914
|
{: #minor-enhancements-v0-11-0}
|
1915
|
+
|
1766
1916
|
- Switch to Albino gem
|
1767
1917
|
- Bundler support
|
1768
1918
|
- Use English library to avoid hoops ([#292]({{ site.repository }}/issues/292))
|
@@ -1778,6 +1928,7 @@ permalink: "/docs/history/"
|
|
1778
1928
|
|
1779
1929
|
## 0.10.0 / 2010-12-16
|
1780
1930
|
{: #v0-10-0}
|
1931
|
+
|
1781
1932
|
- Bug Fixes
|
1782
1933
|
- Add `--no-server` option.
|
1783
1934
|
|
@@ -1787,6 +1938,7 @@ permalink: "/docs/history/"
|
|
1787
1938
|
|
1788
1939
|
### Minor Enhancements
|
1789
1940
|
{: #minor-enhancements-v0-9-0}
|
1941
|
+
|
1790
1942
|
- Use OptionParser's `[no-]` functionality for better boolean parsing.
|
1791
1943
|
- Add Drupal migrator ([#245]({{ site.repository }}/issues/245))
|
1792
1944
|
- Complain about YAML and Liquid errors ([#249]({{ site.repository }}/issues/249))
|
@@ -1799,6 +1951,7 @@ permalink: "/docs/history/"
|
|
1799
1951
|
|
1800
1952
|
### Minor Enhancements
|
1801
1953
|
{: #minor-enhancements-v0-8-0}
|
1954
|
+
|
1802
1955
|
- Add wordpress.com importer ([#207]({{ site.repository }}/issues/207))
|
1803
1956
|
- Add `--limit-posts` cli option ([#212]({{ site.repository }}/issues/212))
|
1804
1957
|
- Add `uri_escape` filter ([#234]({{ site.repository }}/issues/234))
|
@@ -1816,6 +1969,7 @@ permalink: "/docs/history/"
|
|
1816
1969
|
|
1817
1970
|
### Minor Enhancements
|
1818
1971
|
{: #minor-enhancements-v0-7-0}
|
1972
|
+
|
1819
1973
|
- Add support for rdiscount extensions ([#173]({{ site.repository }}/issues/173))
|
1820
1974
|
- Bug Fixes
|
1821
1975
|
- Highlight should not be able to render local files
|
@@ -1824,6 +1978,7 @@ permalink: "/docs/history/"
|
|
1824
1978
|
|
1825
1979
|
## 0.6.2 / 2010-06-25
|
1826
1980
|
{: #v0-6-2}
|
1981
|
+
|
1827
1982
|
- Bug Fixes
|
1828
1983
|
- Fix Rakefile 'release' task (tag pushing was missing origin)
|
1829
1984
|
- Ensure that RedCloth is loaded when textilize filter is used ([#183]({{ site.repository }}/issues/183))
|
@@ -1833,6 +1988,7 @@ permalink: "/docs/history/"
|
|
1833
1988
|
|
1834
1989
|
## 0.6.1 / 2010-06-24
|
1835
1990
|
{: #v0-6-1}
|
1991
|
+
|
1836
1992
|
- Bug Fixes
|
1837
1993
|
- Fix Markdown Pygments prefix and suffix ([#178]({{ site.repository }}/issues/178))
|
1838
1994
|
|
@@ -1842,19 +1998,18 @@ permalink: "/docs/history/"
|
|
1842
1998
|
|
1843
1999
|
### Major Enhancements
|
1844
2000
|
{: #major-enhancements-v0-6-0}
|
2001
|
+
|
1845
2002
|
- Proper plugin system ([#19]({{ site.repository }}/issues/19), [#100]({{ site.repository }}/issues/100))
|
1846
2003
|
- Add safe mode so unsafe converters/generators can be added
|
1847
|
-
- Maruku is now the only processor dependency installed by default.
|
1848
|
-
Other processors will be lazy-loaded when necessary (and prompt the
|
1849
|
-
user to install them when necessary) ([#57]({{ site.repository }}/issues/57))
|
2004
|
+
- Maruku is now the only processor dependency installed by default. Other processors will be lazy-loaded when necessary (and prompt the user to install them when necessary) ([#57]({{ site.repository }}/issues/57))
|
1850
2005
|
|
1851
2006
|
### Minor Enhancements
|
1852
2007
|
{: #minor-enhancements-v0-6-0}
|
2008
|
+
|
1853
2009
|
- Inclusion/exclusion of future dated posts ([#59]({{ site.repository }}/issues/59))
|
1854
2010
|
- Generation for a specific time ([#59]({{ site.repository }}/issues/59))
|
1855
2011
|
- Allocate `site.time` on render not per site_payload invocation ([#59]({{ site.repository }}/issues/59))
|
1856
|
-
- Pages now present in the site payload and can be used through the
|
1857
|
-
`site.pages` and `site.html_pages` variables
|
2012
|
+
- Pages now present in the site payload and can be used through the `site.pages` and `site.html_pages` variables
|
1858
2013
|
- Generate phase added to site#process and pagination is now a generator
|
1859
2014
|
- Switch to RakeGem for build/test process
|
1860
2015
|
- Only regenerate static files when they have changed ([#142]({{ site.repository }}/issues/142))
|
@@ -1874,24 +2029,26 @@ permalink: "/docs/history/"
|
|
1874
2029
|
|
1875
2030
|
### Minor Enhancements
|
1876
2031
|
{: #minor-enhancements-v0-5-7}
|
2032
|
+
|
1877
2033
|
- Allow overriding of post date in the front matter ([#62]({{ site.repository }}/issues/62), [#38]({{ site.repository }}/issues/38))
|
1878
2034
|
- Bug Fixes
|
1879
2035
|
- Categories isn't always an array ([#73]({{ site.repository }}/issues/73))
|
1880
2036
|
- Empty tags causes error in read_posts ([#84]({{ site.repository }}/issues/84))
|
1881
2037
|
- Fix pagination to adhere to read/render/write paradigm
|
1882
2038
|
- Test Enhancement
|
1883
|
-
- Cucumber features no longer use site.posts.first where a better
|
1884
|
-
alternative is available
|
2039
|
+
- Cucumber features no longer use site.posts.first where a better alternative is available
|
1885
2040
|
|
1886
2041
|
|
1887
2042
|
## 0.5.6 / 2010-01-08
|
1888
2043
|
{: #v0-5-6}
|
2044
|
+
|
1889
2045
|
- Bug Fixes
|
1890
2046
|
- Require redcloth >= 4.2.1 in tests ([#92]({{ site.repository }}/issues/92))
|
1891
2047
|
- Don't break on triple dashes in yaml front matter ([#93]({{ site.repository }}/issues/93))
|
1892
2048
|
|
1893
2049
|
### Minor Enhancements
|
1894
2050
|
{: #minor-enhancements-v0-5-6}
|
2051
|
+
|
1895
2052
|
- Allow .mkd as markdown extension
|
1896
2053
|
- Use $stdout/err instead of constants ([#99]({{ site.repository }}/issues/99))
|
1897
2054
|
- Properly wrap code blocks ([#91]({{ site.repository }}/issues/91))
|
@@ -1900,52 +2057,42 @@ permalink: "/docs/history/"
|
|
1900
2057
|
|
1901
2058
|
## 0.5.5 / 2010-01-08
|
1902
2059
|
{: #v0-5-5}
|
2060
|
+
|
1903
2061
|
- Bug Fixes
|
1904
2062
|
- Fix pagination % 0 bug ([#78]({{ site.repository }}/issues/78))
|
1905
|
-
- Ensure all posts are processed first ([#71]({{ site.repository }}/issues/71))
|
1906
|
-
|
1907
|
-
|
1908
|
-
## NOTE
|
1909
|
-
- After this point I will no longer be giving credit in the history;
|
1910
|
-
that is what the commit log is for.
|
2063
|
+
- Ensure all posts are processed first ([#71]({{ site.repository }}/issues/71)) ## NOTE
|
2064
|
+
- After this point I will no longer be giving credit in the history; that is what the commit log is for.
|
1911
2065
|
|
1912
2066
|
|
1913
2067
|
## 0.5.4 / 2009-08-23
|
1914
2068
|
{: #v0-5-4}
|
2069
|
+
|
1915
2070
|
- Bug Fixes
|
1916
2071
|
- Do not allow symlinks (security vulnerability)
|
1917
2072
|
|
1918
2073
|
|
1919
2074
|
## 0.5.3 / 2009-07-14
|
1920
2075
|
{: #v0-5-3}
|
2076
|
+
|
1921
2077
|
- Bug Fixes
|
1922
|
-
- Solving the permalink bug where non-html files wouldn't work
|
1923
|
-
([@jeffrydegrande](https://github.com/jeffrydegrande))
|
2078
|
+
- Solving the permalink bug where non-html files wouldn't work ([@jeffrydegrande](https://github.com/jeffrydegrande))
|
1924
2079
|
|
1925
2080
|
|
1926
2081
|
## 0.5.2 / 2009-06-24
|
1927
2082
|
{: #v0-5-2}
|
2083
|
+
|
1928
2084
|
- Enhancements
|
1929
|
-
- Added --paginate option to the executable along with a paginator object
|
1930
|
-
|
1931
|
-
-
|
1932
|
-
|
1933
|
-
- Configuration options set in config.yml are now available through the
|
1934
|
-
site payload ([@vilcans](https://github.com/vilcans))
|
1935
|
-
- Posts can now have an empty YAML front matter or none at all
|
1936
|
-
(@ bahuvrihi)
|
2085
|
+
- Added --paginate option to the executable along with a paginator object for the payload ([@calavera](https://github.com/calavera))
|
2086
|
+
- Upgraded RedCloth to 4.2.1, which makes `<notextile>` tags work once again.
|
2087
|
+
- Configuration options set in config.yml are now available through the site payload ([@vilcans](https://github.com/vilcans))
|
2088
|
+
- Posts can now have an empty YAML front matter or none at all (@ bahuvrihi)
|
1937
2089
|
- Bug Fixes
|
1938
|
-
- Fixing Ruby 1.9 issue that requires `#to_s` on the err object
|
1939
|
-
([@Chrononaut](https://github.com/Chrononaut))
|
2090
|
+
- Fixing Ruby 1.9 issue that requires `#to_s` on the err object ([@Chrononaut](https://github.com/Chrononaut))
|
1940
2091
|
- Fixes for pagination and ordering posts on the same day ([@ujh](https://github.com/ujh))
|
1941
|
-
- Made pages respect permalinks style and permalinks in yml front matter
|
1942
|
-
|
1943
|
-
-
|
1944
|
-
|
1945
|
-
- Added trailing slash to pretty permalink style so Apache is happy
|
1946
|
-
([@eugenebolshakov](https://github.com/eugenebolshakov))
|
1947
|
-
- Bad markdown processor in config fails sooner and with better message
|
1948
|
-
(@ gcnovus)
|
2092
|
+
- Made pages respect permalinks style and permalinks in yml front matter ([@eugenebolshakov](https://github.com/eugenebolshakov))
|
2093
|
+
- Index.html file should always have index.html permalink ([@eugenebolshakov](https://github.com/eugenebolshakov))
|
2094
|
+
- Added trailing slash to pretty permalink style so Apache is happy ([@eugenebolshakov](https://github.com/eugenebolshakov))
|
2095
|
+
- Bad markdown processor in config fails sooner and with better message (@ gcnovus)
|
1949
2096
|
- Allow CRLFs in yaml front matter ([@juretta](https://github.com/juretta))
|
1950
2097
|
- Added Date#xmlschema for Ruby versions < 1.9
|
1951
2098
|
|
@@ -1955,16 +2102,15 @@ permalink: "/docs/history/"
|
|
1955
2102
|
|
1956
2103
|
### Major Enhancements
|
1957
2104
|
{: #major-enhancements-v0-5-1}
|
2105
|
+
|
1958
2106
|
- Next/previous posts in site payload ([@pantulis](https://github.com/pantulis), [@tomo](https://github.com/tomo))
|
1959
2107
|
- Permalink templating system
|
1960
2108
|
- Moved most of the README out to the GitHub wiki
|
1961
|
-
- Exclude option in configuration so specified files won't be brought over
|
1962
|
-
with generated site ([@duritong](https://github.com/duritong))
|
2109
|
+
- Exclude option in configuration so specified files won't be brought over with generated site ([@duritong](https://github.com/duritong))
|
1963
2110
|
- Bug Fixes
|
1964
2111
|
- Making sure config.yaml references are all gone, using only config.yml
|
1965
2112
|
- Fixed syntax highlighting breaking for UTF-8 code ([@henrik](https://github.com/henrik))
|
1966
|
-
- Worked around RDiscount bug that prevents Markdown from getting parsed
|
1967
|
-
after highlight ([@henrik](https://github.com/henrik))
|
2113
|
+
- Worked around RDiscount bug that prevents Markdown from getting parsed after highlight ([@henrik](https://github.com/henrik))
|
1968
2114
|
- CGI escaped post titles ([@Chrononaut](https://github.com/Chrononaut))
|
1969
2115
|
|
1970
2116
|
|
@@ -1973,6 +2119,7 @@ permalink: "/docs/history/"
|
|
1973
2119
|
|
1974
2120
|
### Minor Enhancements
|
1975
2121
|
{: #minor-enhancements-v0-5-0}
|
2122
|
+
|
1976
2123
|
- Ability to set post categories via YAML ([@qrush](https://github.com/qrush))
|
1977
2124
|
- Ability to set prevent a post from publishing via YAML ([@qrush](https://github.com/qrush))
|
1978
2125
|
- Add textilize filter ([@willcodeforfoo](https://github.com/willcodeforfoo))
|
@@ -1994,6 +2141,7 @@ permalink: "/docs/history/"
|
|
1994
2141
|
|
1995
2142
|
### Minor Enhancements
|
1996
2143
|
{: #minor-enhancements-v--}
|
2144
|
+
|
1997
2145
|
- Changed date format on wordpress converter (zeropadding) ([@dysinger](https://github.com/dysinger))
|
1998
2146
|
- Bug Fixes
|
1999
2147
|
- Add Jekyll binary as executable to gemspec ([@dysinger](https://github.com/dysinger))
|
@@ -2004,10 +2152,12 @@ permalink: "/docs/history/"
|
|
2004
2152
|
|
2005
2153
|
### Major Enhancements
|
2006
2154
|
{: #major-enhancements-v0-4-0}
|
2155
|
+
|
2007
2156
|
- Switch to Jeweler for packaging tasks
|
2008
2157
|
|
2009
2158
|
### Minor Enhancements
|
2010
2159
|
{: #minor-enhancements-v0-4-0}
|
2160
|
+
|
2011
2161
|
- Type importer ([@codeslinger](https://github.com/codeslinger))
|
2012
2162
|
- `site.topics` accessor ([@baz](https://github.com/baz))
|
2013
2163
|
- Add `array_to_sentence_string` filter ([@mchung](https://github.com/mchung))
|
@@ -2029,43 +2179,46 @@ permalink: "/docs/history/"
|
|
2029
2179
|
|
2030
2180
|
### Major Enhancements
|
2031
2181
|
{: #major-enhancements-v0-3-0}
|
2032
|
-
|
2033
|
-
|
2182
|
+
|
2183
|
+
- Added `--server` option to start a simple WEBrick server on destination directory ([@johnreilly](https://github.com/johnreilly) and [@mchung](https://github.com/mchung))
|
2034
2184
|
|
2035
2185
|
### Minor Enhancements
|
2036
2186
|
{: #minor-enhancements-v0-3-0}
|
2187
|
+
|
2037
2188
|
- Added post categories based on directories containing `_posts` ([@mreid](https://github.com/mreid))
|
2038
2189
|
- Added post topics based on directories underneath `_posts`
|
2039
2190
|
- Added new date filter that shows the full month name ([@mreid](https://github.com/mreid))
|
2040
2191
|
- Merge Post's YAML front matter into its to_liquid payload ([@remi](https://github.com/remi))
|
2041
2192
|
- Restrict includes to regular files underneath `_includes`
|
2042
2193
|
- Bug Fixes
|
2043
|
-
- Change YAML delimiter matcher so as to not chew up 2nd level markdown
|
2044
|
-
|
2045
|
-
- Fix bug that meant page data (such as the date) was not available in
|
2046
|
-
templates ([@mreid](https://github.com/mreid))
|
2194
|
+
- Change YAML delimiter matcher so as to not chew up 2nd level markdown headers ([@mreid](https://github.com/mreid))
|
2195
|
+
- Fix bug that meant page data (such as the date) was not available in templates ([@mreid](https://github.com/mreid))
|
2047
2196
|
- Properly reject directories in `_layouts`
|
2048
2197
|
|
2049
2198
|
|
2050
2199
|
## 0.2.1 / 2008-12-15
|
2051
2200
|
{: #v0-2-1}
|
2201
|
+
|
2052
2202
|
- Major Changes
|
2053
2203
|
- Use Maruku (pure Ruby) for Markdown by default ([@mreid](https://github.com/mreid))
|
2054
2204
|
- Allow use of RDiscount with `--rdiscount` flag
|
2055
2205
|
|
2056
2206
|
### Minor Enhancements
|
2057
2207
|
{: #minor-enhancements-v0-2-1}
|
2208
|
+
|
2058
2209
|
- Don't load directory_watcher unless it's needed ([@pjhyett](https://github.com/pjhyett))
|
2059
2210
|
|
2060
2211
|
|
2061
2212
|
## 0.2.0 / 2008-12-14
|
2062
2213
|
{: #v0-2-0}
|
2214
|
+
|
2063
2215
|
- Major Changes
|
2064
2216
|
- related_posts is now found in `site.related_posts`
|
2065
2217
|
|
2066
2218
|
|
2067
2219
|
## 0.1.6 / 2008-12-13
|
2068
2220
|
{: #v0-1-6}
|
2221
|
+
|
2069
2222
|
- Major Features
|
2070
2223
|
- Include files in `_includes` with {% raw %}`{% include x.textile %}`{% endraw %}
|
2071
2224
|
|
@@ -2075,11 +2228,13 @@ permalink: "/docs/history/"
|
|
2075
2228
|
|
2076
2229
|
### Major Enhancements
|
2077
2230
|
{: #major-enhancements-v0-1-5}
|
2231
|
+
|
2078
2232
|
- Code highlighting with Pygments if `--pygments` is specified
|
2079
2233
|
- Disable true LSI by default, enable with `--lsi`
|
2080
2234
|
|
2081
2235
|
### Minor Enhancements
|
2082
2236
|
{: #minor-enhancements-v0-1-5}
|
2237
|
+
|
2083
2238
|
- Output informative message if RDiscount is not available ([@JackDanger](https://github.com/JackDanger))
|
2084
2239
|
- Bug Fixes
|
2085
2240
|
- Prevent Jekyll from picking up the output directory as a source ([@JackDanger](https://github.com/JackDanger))
|
@@ -2088,12 +2243,14 @@ permalink: "/docs/history/"
|
|
2088
2243
|
|
2089
2244
|
## 0.1.4 / 2008-12-08
|
2090
2245
|
{: #v0-1-4}
|
2246
|
+
|
2091
2247
|
- Bug Fixes
|
2092
2248
|
- DATA does not work properly with rubygems
|
2093
2249
|
|
2094
2250
|
|
2095
2251
|
## 0.1.3 / 2008-12-06
|
2096
2252
|
{: #v0-1-3}
|
2253
|
+
|
2097
2254
|
- Major Features
|
2098
2255
|
- Markdown support ([@vanpelt](https://github.com/vanpelt))
|
2099
2256
|
- Mephisto and CSV converters ([@vanpelt](https://github.com/vanpelt))
|
@@ -2105,21 +2262,23 @@ permalink: "/docs/history/"
|
|
2105
2262
|
|
2106
2263
|
## 0.1.2 / 2008-11-22
|
2107
2264
|
{: #v0-1-2}
|
2265
|
+
|
2108
2266
|
- Major Features
|
2109
2267
|
- Add a real "related posts" implementation using Classifier
|
2110
2268
|
- Command Line Changes
|
2111
|
-
- Allow cli to be called with 0, 1, or 2 args intuiting dir paths
|
2112
|
-
if they are omitted
|
2269
|
+
- Allow cli to be called with 0, 1, or 2 args intuiting dir paths if they are omitted
|
2113
2270
|
|
2114
2271
|
|
2115
2272
|
## 0.1.1 / 2008-11-22
|
2116
2273
|
{: #v0-1-1}
|
2274
|
+
|
2117
2275
|
- Minor Additions
|
2118
2276
|
- Posts now support introspectional data e.g. {% raw %}`{{ page.url }}`{% endraw %}
|
2119
2277
|
|
2120
2278
|
|
2121
2279
|
## 0.1.0 / 2008-11-05
|
2122
2280
|
{: #v0-1-0}
|
2281
|
+
|
2123
2282
|
- First release
|
2124
2283
|
- Converts posts written in Textile
|
2125
2284
|
- Converts regular site pages
|
@@ -2128,4 +2287,5 @@ permalink: "/docs/history/"
|
|
2128
2287
|
|
2129
2288
|
## 0.0.0 / 2008-10-19
|
2130
2289
|
{: #v0-0-0}
|
2290
|
+
|
2131
2291
|
- Birthday!
|