scrollytelling-pageflow-navigation 0.1.1 → 1.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 702689423563b36b8ed9f8d61f8255a0c56fada3
4
- data.tar.gz: 3d70150242acea9581bf33225cfd699e69ff6e84
3
+ metadata.gz: 5e00b1bd6a6ed7e629eb214497f15cbaaeb3fdbd
4
+ data.tar.gz: d7f783a4045770633e4cb4067c542f43aaea3ded
5
5
  SHA512:
6
- metadata.gz: c416e9ffdb47812fed4a33acb4763af693dc6fb9c7173b879bded5ce087df5b353e25aabd4e07fc9fc3f68bc6c7fdb5d87c7ae27c00669d3c4e9dd5ce3589abd
7
- data.tar.gz: f4babb048fd17ba2a91bbc054e72938b4bc060ff105728667e17eee8232c498d5b57695cd6893b06c6096a6e01393476f1ac9c0eb892210c087cd92e5bbc8d4f
6
+ metadata.gz: 2f4e0f26d33e7b0c587a44af33552dde7410a8cae75c13ca3c3b644b868c8e1293dd06d9f88ff7f52b2522e6e600ba1ffd9f35b2653e825b7dd5508af2ef33c4
7
+ data.tar.gz: 95b9b416be22b8a7816a8492ba2998b40699200c60646501631733a889306dd070a04f071d302b4798c21921efec4b02022785cda21d6a66c4b1609510774735
data/README.md CHANGED
@@ -35,6 +35,13 @@ config.plugin(Scrollytelling::Pageflow::Navigation::Plugin.new)
35
35
  @import "scrollytelling/pageflow/navigation";
36
36
  ```
37
37
 
38
+ Furthermore after installing any Pageflow plugin it's a good idea to change your asset version. This will invalidate all server-side cache, most notably the cache that `i18n-js` uses to render the editor UI.
39
+
40
+ ```
41
+ # config/initializers/assets.rb
42
+ Rails.application.config.assets.version = 'x.x.x'
43
+ ```
44
+
38
45
  After all that, restart your application server.
39
46
 
40
47
  ## Development
@@ -0,0 +1,4 @@
1
+ de:
2
+ pageflow:
3
+ scrollytelling_pageflow_navigation:
4
+ widget_type_name: Scrollytelling Punkte mit Tooltips
@@ -0,0 +1,4 @@
1
+ en:
2
+ pageflow:
3
+ scrollytelling_pageflow_navigation:
4
+ widget_type_name: Scrollytelling dots with tooltips
@@ -1,7 +1,7 @@
1
1
  module Scrollytelling
2
2
  module Pageflow
3
3
  module Navigation
4
- VERSION = "0.1.1"
4
+ VERSION = "1.0.0"
5
5
  end
6
6
  end
7
7
  end
@@ -5,7 +5,7 @@ module Scrollytelling
5
5
  module Navigation
6
6
  class WidgetType < ::Pageflow::WidgetType
7
7
  def name
8
- 'scrollytelling-pageflow-navigation'
8
+ 'scrollytelling_pageflow_navigation'
9
9
  end
10
10
 
11
11
  def roles
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scrollytelling-pageflow-navigation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joost Baaij
@@ -101,6 +101,8 @@ files:
101
101
  - app/views/scrollytelling/pageflow/navigation/_widget.html.erb
102
102
  - bin/console
103
103
  - bin/setup
104
+ - config/locales/de.yml
105
+ - config/locales/en.yml
104
106
  - lib/scrollytelling/pageflow/navigation.rb
105
107
  - lib/scrollytelling/pageflow/navigation/engine.rb
106
108
  - lib/scrollytelling/pageflow/navigation/plugin.rb