pageflow 15.0.1 → 15.0.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc6754982c92a580ade23684b98718c2319fc7892e8387b69cae815ac8000dcc
4
- data.tar.gz: 6d73187cdbec44bbdc314c9b6c6a7e5402fc5bf2f1f89717eed73f13fa6b4045
3
+ metadata.gz: a77ce29c4cfd16477585f641a06cf244d6c985b389a534d5c1c230a6e7b9b92c
4
+ data.tar.gz: ba6cf322804c4891f03bd3067c21a6f799690a7152524eb1b2834c6d26c2b477
5
5
  SHA512:
6
- metadata.gz: d4491c0cbfeeefdcbcdb4b7546c4e9ef6ebdbd3703401adb45083477d9e89d94a6d3c300908e8020c82f07a599efa508c684a692c86779893ad1dafffa08996e
7
- data.tar.gz: df11aae8856f95e37e8f1763c74df4bd87558c42938c73b77a91d8f7b9157e4778285062b54e963ffa01523716d0f4bcac2e7200bd75de769b360d1376caf581
6
+ metadata.gz: a1a6cf638f3d390946a3a024b2f26bd0f2e8e72efae674fac8ad4b2010cd2a8506fef0912da974e0cdbcab1f33eb1ed7a8d09d3e5f3d445fd11646398761a54b
7
+ data.tar.gz: 6a2fba55dc62a7203381b9e26d9d7175a8f3a05c64f58a3ed456ab654d0a1086ac0aa9d9b7e40d1107ba48ac8fb5cc7977e62352c74bdba1ef4f06278971bb32
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # CHANGELOG
2
2
 
3
+ ### Version 15.0.2
4
+
5
+ 2019-11-28
6
+
7
+ [Compare changes](https://github.com/codevise/pageflow/compare/v15.0.1...v15.0.2)
8
+
9
+ - Change revision#locale to always return string
10
+ ([#1243](https://github.com/codevise/pageflow/pull/1243))
11
+ - Add text track languages
12
+ ([#1244](https://github.com/codevise/pageflow/pull/1244))
13
+ - Index seed entry data files by perma id
14
+ ([#1245](https://github.com/codevise/pageflow/pull/1245))
15
+
3
16
  ### Version 15.0.1
4
17
 
5
18
  2019-11-04
@@ -4,7 +4,7 @@ pageflow.SeedEntryData = pageflow.EntryData.extend({
4
4
 
5
5
  this.files = _(_.keys(options.files || {})).reduce(function(memo, collectionName) {
6
6
  memo[collectionName] = _(options.files[collectionName]).reduce(function(result, file) {
7
- result[file.id] = file;
7
+ result[file.perma_id] = file;
8
8
  return result;
9
9
  }, {});
10
10
 
@@ -52,8 +52,8 @@ pageflow.SeedEntryData = pageflow.EntryData.extend({
52
52
  return this.theme[name];
53
53
  },
54
54
 
55
- getFile: function(collectionName, id) {
56
- return this.files[collectionName][id];
55
+ getFile: function(collectionName, permaId) {
56
+ return this.files[collectionName][permaId];
57
57
  },
58
58
 
59
59
  getChapterConfiguration: function(id) {
@@ -124,7 +124,7 @@ module Pageflow
124
124
  end
125
125
 
126
126
  def locale
127
- super.presence || I18n.default_locale
127
+ super.presence || I18n.default_locale.to_s
128
128
  end
129
129
 
130
130
  def pages
@@ -1741,17 +1741,24 @@ de:
1741
1741
  el: Griechisch
1742
1742
  en: Englisch
1743
1743
  es: Spanisch
1744
+ fi: Finnisch
1744
1745
  fr: Französisch
1745
1746
  fy: Friesisch
1746
1747
  hi: Hindi
1747
1748
  it: Italienisch
1749
+ ja: Japanisch
1748
1750
  lb: Luxemburgisch
1751
+ nb: Bokmål
1749
1752
  nl: Holländisch
1753
+ nn: Nynorsk
1754
+ 'no': Norwegisch
1750
1755
  pl: Polnisch
1751
1756
  pt: Portugiesisch
1752
1757
  rm: Rätoromanisch
1753
1758
  ru: Russisch
1759
+ se: Nordsamisch
1754
1760
  sr: Serbisch
1761
+ sv: Schwedisch
1755
1762
  tr: Türkisch
1756
1763
  unknown: "(Unbekannt)"
1757
1764
  zh: Chinesisch
@@ -1713,17 +1713,24 @@ en:
1713
1713
  el: Greek
1714
1714
  en: English
1715
1715
  es: Spanish
1716
+ fi: Finnish
1716
1717
  fr: French
1717
1718
  fy: Frisian
1718
1719
  hi: Hindi
1719
1720
  it: Italian
1721
+ ja: Japanese
1720
1722
  lb: Letzeburgesch
1723
+ nb: Norsk Bokmål
1721
1724
  nl: Dutch
1725
+ nn: Norsk Nynorsk
1726
+ 'no': Norsk
1722
1727
  pl: Polish
1723
1728
  pt: Portuguese
1724
1729
  rm: Romansh
1725
1730
  ru: Russian
1731
+ se: Northern Sami
1726
1732
  sr: Serbian
1733
+ sv: Swedish
1727
1734
  tr: Turkish
1728
1735
  unknown: "(Unknown)"
1729
1736
  zh: Chinese
@@ -1,3 +1,3 @@
1
1
  module Pageflow
2
- VERSION = '15.0.1'.freeze
2
+ VERSION = '15.0.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.1
4
+ version: 15.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codevise Solutions Ltd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-04 00:00:00.000000000 Z
11
+ date: 2019-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -2153,7 +2153,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2153
2153
  version: '0'
2154
2154
  requirements: []
2155
2155
  rubyforge_project:
2156
- rubygems_version: 2.7.5
2156
+ rubygems_version: 2.7.10
2157
2157
  signing_key:
2158
2158
  specification_version: 4
2159
2159
  summary: Multimedia story telling for the web.