jekyll-multiple-languages-plugin 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ebca470a5b53c6e49fe68d0ea6f33a184a2fb00c
4
- data.tar.gz: b16152c945c2ac274e5bd64b04a27163676e88ea
3
+ metadata.gz: 12ebef5a7519f9a15242263259508847e3ad8365
4
+ data.tar.gz: 809877cc83733ffb9f4592e4b3855e863dae1f2b
5
5
  SHA512:
6
- metadata.gz: c9767916b3dd6d5c04c6428b2f7f2ef2b09cefa9aefb3a689a44b125fb14f428bb4cb61c253177c3e573f94e73dee61aeee0105c8918c92e4e265201c85fb34c
7
- data.tar.gz: e897ed85cf506f73815adf6a174c922a1939dd255795d505a91d86089546bbb84cf2bfa527f6b9a5434a46392dfb248438005158a087d9ea3cb3d2794c0ab6d1
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.0 is the current stable release.
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
 
@@ -1,6 +1,6 @@
1
1
  module Jekyll
2
2
  module MultipleLanguagesPlugin
3
- VERSION = "1.4.0"
3
+ VERSION = "1.4.1"
4
4
  end
5
5
  end
6
6
 
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.0
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-16 00:00:00.000000000 Z
11
+ date: 2016-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler