jekyll-multiple-languages-plugin 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -2
- data/lib/jekyll-multiple-languages-plugin.rb +5 -0
- data/lib/plugin/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 12ebef5a7519f9a15242263259508847e3ad8365
|
|
4
|
+
data.tar.gz: 809877cc83733ffb9f4592e4b3855e863dae1f2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a43938402fd8d51dd1e4ad42fc22928faf7b85fe1896020b7f9c4db94423b458c1384afa1c7cd86c8cea56037bc4f548f73b05effa9cf54a4eeb63914ed973f
|
|
7
|
+
data.tar.gz: 8de92a4cc1dbdef763f1dacf393cc3f9eefb89aa7e64018a0f33c5ea24ba96e87574232ca8e27e1774eb8c6222e473e73822c6b528313f50265d9aa4a10ccd80
|
data/README.md
CHANGED
|
@@ -10,9 +10,9 @@ The plugin was developed as an utility at [Screen Interaction](http://www.screen
|
|
|
10
10
|
|
|
11
11
|
## Current Relese Notice
|
|
12
12
|
|
|
13
|
-
1.4.
|
|
13
|
+
1.4.1 is the current stable release.
|
|
14
14
|
|
|
15
|
-
Users that update from older versions to 1.4.0 must change their `_config.yml` for the plugin to be loaded. Please see the `Installation` section bellow for the new string used to load the plugin.
|
|
15
|
+
Users that update from older versions to 1.4.0 or newer must change their `_config.yml` for the plugin to be loaded. Please see the `Installation` section bellow for the new string used to load the plugin.
|
|
16
16
|
|
|
17
17
|
The plugin now works with Jekyll 3, but it's backwards compatible with Jekyll 2.
|
|
18
18
|
Please note that it was only tested with Jekyll 2.5.3 and 3.1.3.
|
|
@@ -319,6 +319,8 @@ Then, create a file named `about.md` under `_i18n/en` with the English content.
|
|
|
319
319
|
|
|
320
320
|
|
|
321
321
|
## Changelog
|
|
322
|
+
* 1.4.1
|
|
323
|
+
* Fixes a bug during site regeneration where translation paths were being nested based on wrongly set Jekyll variables.
|
|
322
324
|
* 1.4.0
|
|
323
325
|
* Support for Jekyll 3, thanks to [@pedrocarmona](https://github.com/screeninteraction/jekyll-multiple-languages-plugin/pull/62)
|
|
324
326
|
* How to create pages documentation, thanks to [@elotroalex](https://github.com/screeninteraction/jekyll-multiple-languages-plugin/pull/57)
|
|
@@ -375,6 +377,7 @@ Then, create a file named `about.md` under `_i18n/en` with the English content.
|
|
|
375
377
|
| :----------------------------------------------- | :----------------------------------- |
|
|
376
378
|
| [@pedrocarmona](https://github.com/pedrocarmona) | support for Jekyll 3 |
|
|
377
379
|
| [@elotroalex](https://github.com/elotroalex) | added a how to create page to README |
|
|
380
|
+
| [@mohamnag](https://github.com/mohamnag) | permalink generation bug fix |
|
|
378
381
|
| [@jasonlemay](https://github.com/jasonlemay) | support for localized links |
|
|
379
382
|
| [@ctruelson](https://github.com/ctruelson) | support for excluding posts |
|
|
380
383
|
| [@Bersch](https://github.com/bersch) | better paths |
|
|
@@ -94,6 +94,11 @@ module Jekyll
|
|
|
94
94
|
process_org
|
|
95
95
|
end
|
|
96
96
|
|
|
97
|
+
# Revert to initial Jekyll configurations (necessary for regeneration)
|
|
98
|
+
self.config[ 'baseurl' ] = baseurl_org # Baseurl set on _config.yml
|
|
99
|
+
self.exclude = exclude_org # List of excluded paths
|
|
100
|
+
@dest = dest_org # Destination folder where the website is generated
|
|
101
|
+
|
|
97
102
|
puts 'Build complete'
|
|
98
103
|
end
|
|
99
104
|
|
data/lib/plugin/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-multiple-languages-plugin
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Kurtsson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-05-
|
|
11
|
+
date: 2016-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|