pageflow 16.0.0 → 16.1.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.
Files changed (145) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +210 -33
  3. data/README.md +0 -1
  4. data/Rakefile +1 -1
  5. data/admins/pageflow/entry.rb +0 -1
  6. data/admins/pageflow/sites.rb +3 -0
  7. data/app/assets/javascripts/pageflow/dist/ui.js +298 -72
  8. data/app/assets/stylesheets/pageflow/admin/permalink_input.scss +10 -0
  9. data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +6 -1
  10. data/app/assets/stylesheets/pageflow/editor/file_thumbnails.scss +4 -0
  11. data/app/assets/stylesheets/pageflow/editor/help.scss +3 -3
  12. data/app/assets/stylesheets/pageflow/editor/info_box.scss +7 -0
  13. data/app/assets/stylesheets/pageflow/editor/inputs/file_input.scss +0 -5
  14. data/app/assets/stylesheets/pageflow/ui/forms.scss +1 -1
  15. data/app/controllers/pageflow/chapters_controller.rb +2 -2
  16. data/app/controllers/pageflow/editor/files_controller.rb +1 -1
  17. data/app/controllers/pageflow/entries_controller.rb +10 -0
  18. data/app/controllers/pageflow/feeds_controller.rb +18 -0
  19. data/app/controllers/pageflow/pages_controller.rb +2 -2
  20. data/app/controllers/pageflow/sitemaps_controller.rb +15 -0
  21. data/app/controllers/pageflow/storylines_controller.rb +2 -2
  22. data/app/helpers/pageflow/entries_helper.rb +2 -1
  23. data/app/helpers/pageflow/feeds_helper.rb +66 -0
  24. data/app/helpers/pageflow/page_types_helper.rb +9 -9
  25. data/app/inputs/pageflow_permalink_input.rb +15 -3
  26. data/app/models/concerns/pageflow/reusable_file.rb +3 -3
  27. data/app/models/pageflow/account.rb +8 -0
  28. data/app/models/pageflow/audio_file_url_templates.rb +2 -1
  29. data/app/models/pageflow/draft_entry.rb +1 -1
  30. data/app/models/pageflow/entries_feed.rb +32 -0
  31. data/app/models/pageflow/image_file.rb +14 -3
  32. data/app/models/pageflow/membership.rb +3 -2
  33. data/app/models/pageflow/other_file.rb +5 -0
  34. data/app/models/pageflow/other_file_url_templates.rb +16 -0
  35. data/app/models/pageflow/published_entry.rb +6 -0
  36. data/app/models/pageflow/revision.rb +4 -0
  37. data/app/models/pageflow/site.rb +8 -0
  38. data/app/models/pageflow/sitemaps.rb +13 -0
  39. data/app/models/pageflow/used_file.rb +2 -2
  40. data/app/models/pageflow/video_file_url_templates.rb +3 -1
  41. data/app/models/pageflow/widget.rb +9 -1
  42. data/app/views/admin/entries/_permalink_inputs.html.erb +1 -2
  43. data/app/views/admin/sites/_attributes_table.html.arb +3 -0
  44. data/app/views/admin/sites/_fields.html.erb +6 -0
  45. data/app/views/components/pageflow/admin/extensible_attributes_table.rb +8 -2
  46. data/app/views/components/pageflow/admin/sites_tab.rb +3 -0
  47. data/app/views/pageflow/editor/config/_seeds.json.jbuilder +1 -0
  48. data/app/views/pageflow/feeds/index.atom.builder +20 -0
  49. data/app/views/pageflow/sitemaps/index.xml.builder +9 -0
  50. data/config/initializers/features.rb +1 -0
  51. data/config/initializers/paperclip.rb +4 -0
  52. data/config/locales/de.yml +27 -6
  53. data/config/locales/en.yml +30 -4
  54. data/config/routes.rb +3 -0
  55. data/config/spring.rb +1 -1
  56. data/db/migrate/20230120092923_create_other_files.rb +23 -0
  57. data/db/migrate/20230323115745_add_feeds_enabled_to_sites.rb +5 -0
  58. data/db/migrate/20230323154323_add_sitemap_enabled_to_sites.rb +5 -0
  59. data/db/migrate/20230331103823_add_title_to_sites.rb +5 -0
  60. data/db/migrate/20230405103612_add_custom_feed_url_to_sites.rb +5 -0
  61. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +445 -109
  62. data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +26 -3
  63. data/entry_types/paged/app/controllers/pageflow_paged/editor/entries_controller.rb +0 -2
  64. data/entry_types/paged/app/controllers/pageflow_paged/entries_controller.rb +1 -0
  65. data/entry_types/paged/app/views/pageflow_paged/entries/show.html.erb +1 -0
  66. data/entry_types/paged/config/initializers/features.rb +0 -1
  67. data/entry_types/paged/lib/pageflow_paged/engine.rb +17 -1
  68. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/chapters_controller.rb +2 -2
  69. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/content_elements_controller.rb +3 -4
  70. data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/sections_controller.rb +13 -6
  71. data/entry_types/scrolled/app/controllers/pageflow_scrolled/entries_controller.rb +2 -0
  72. data/entry_types/scrolled/app/helpers/pageflow_scrolled/cache_helper.rb +11 -0
  73. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/entry_json_seed_helper.rb +42 -0
  74. data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/seed_html_helper.rb +3 -0
  75. data/entry_types/scrolled/app/helpers/pageflow_scrolled/packs_helper.rb +31 -10
  76. data/entry_types/scrolled/app/helpers/pageflow_scrolled/react_server_side_rendering_helper.rb +9 -1
  77. data/entry_types/scrolled/app/helpers/pageflow_scrolled/themes_helper.rb +3 -1
  78. data/entry_types/scrolled/app/models/pageflow_scrolled/chapter.rb +23 -0
  79. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_head.html.erb +6 -1
  80. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_seed.json.jbuilder +1 -5
  81. data/entry_types/scrolled/app/views/pageflow_scrolled/editor/sections/_section_with_content_elements.json.jbuilder +10 -0
  82. data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +44 -41
  83. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_consent_vendors.json.jbuilder +16 -0
  84. data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_entry.json.jbuilder +3 -0
  85. data/entry_types/scrolled/config/initializers/features.rb +5 -0
  86. data/entry_types/scrolled/config/locales/consent_widget.de.yml +4 -0
  87. data/entry_types/scrolled/config/locales/consent_widget.en.yml +4 -0
  88. data/entry_types/scrolled/config/locales/de.yml +189 -8
  89. data/entry_types/scrolled/config/locales/en.yml +207 -2
  90. data/entry_types/scrolled/config/routes.rb +4 -0
  91. data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/install_generator.rb +97 -5
  92. data/entry_types/scrolled/lib/pageflow_scrolled/additional_seed_data.rb +1 -1
  93. data/entry_types/scrolled/lib/pageflow_scrolled/configuration.rb +96 -0
  94. data/entry_types/scrolled/lib/pageflow_scrolled/content_element_consent_vendors.rb +38 -0
  95. data/entry_types/scrolled/lib/pageflow_scrolled/engine.rb +17 -1
  96. data/entry_types/scrolled/lib/pageflow_scrolled/plugin.rb +24 -0
  97. data/entry_types/scrolled/lib/pageflow_scrolled/react_widget_type.rb +6 -1
  98. data/entry_types/scrolled/lib/tasks/pageflow_scrolled/storybook.rake +1 -2
  99. data/entry_types/scrolled/package/contentElements-editor.js +307 -22
  100. data/entry_types/scrolled/package/contentElements-frontend.css +1 -1
  101. data/entry_types/scrolled/package/contentElements-frontend.js +690 -71
  102. data/entry_types/scrolled/package/editor.js +616 -220
  103. data/entry_types/scrolled/package/frontend/{EditableInlineText.module-14c7b097.js → EditableInlineText.module-fa9e3aff.js} +1669 -1674
  104. data/entry_types/scrolled/package/frontend/PhonePlatformContext-10a1d600.js +32 -0
  105. data/entry_types/scrolled/package/frontend/ToggleFullscreenCornerButton-727cce0d.js +107 -0
  106. data/entry_types/scrolled/package/frontend/Viewer-169e14ca.js +154 -0
  107. data/entry_types/scrolled/package/frontend/{Viewer-b6becc57.js → Viewer-ee1aa590.js} +32 -161
  108. data/entry_types/scrolled/package/frontend/arrowRight-92a34ccc.js +77 -0
  109. data/entry_types/scrolled/package/frontend/{components-b3160dd7.js → components-4a09bfa3.js} +185 -45
  110. data/entry_types/scrolled/package/frontend/{PhonePlatformContext-f6093cc6.js → i18n-ddd92820.js} +149 -107
  111. data/entry_types/scrolled/package/frontend/index-02378634.js +118 -0
  112. data/entry_types/scrolled/package/frontend/index.css +1 -1
  113. data/entry_types/scrolled/package/frontend/index.js +206 -54
  114. data/entry_types/scrolled/package/frontend/useContentElementEditorState-63045393.js +52 -0
  115. data/entry_types/scrolled/package/package.json +2 -1
  116. data/entry_types/scrolled/package/testHelpers.js +9 -2
  117. data/entry_types/scrolled/package/values/colors.module.css +15 -0
  118. data/entry_types/scrolled/package/widgets/consentBar.css +1 -0
  119. data/entry_types/scrolled/package/widgets/consentBar.js +426 -0
  120. data/entry_types/scrolled/package/widgets/defaultNavigation.css +1 -1
  121. data/lib/generators/pageflow/resque/resque_generator.rb +1 -1
  122. data/lib/pageflow/ability_mixin.rb +5 -5
  123. data/lib/pageflow/active_admin_can_can_fix.rb +2 -2
  124. data/lib/pageflow/built_in_file_type.rb +7 -0
  125. data/lib/pageflow/configuration.rb +21 -0
  126. data/lib/pageflow/engine.rb +60 -39
  127. data/lib/pageflow/entry_export_import/revision_serialization.rb +1 -1
  128. data/lib/pageflow/file_type.rb +2 -2
  129. data/lib/pageflow/global_config_api.rb +2 -2
  130. data/lib/pageflow/nested_revision_component.rb +23 -5
  131. data/lib/pageflow/rails_version.rb +19 -0
  132. data/lib/pageflow/seeds.rb +10 -7
  133. data/lib/pageflow/version.rb +1 -1
  134. data/lib/pageflow/widget_types.rb +4 -0
  135. data/package/config/webpack5.js +14 -0
  136. data/package/editor.js +141 -30
  137. data/package/frontend.js +26 -2
  138. data/package/testHelpers.js +1 -1
  139. data/package/ui.js +296 -71
  140. data/spec/factories/entries.rb +17 -3
  141. data/spec/factories/sites.rb +3 -0
  142. data/vendor/assets/javascripts/iscroll.js +4 -7
  143. metadata +65 -49
  144. data/app/helpers/pageflow/admin/permalinks_helper.rb +0 -15
  145. data/entry_types/scrolled/package/frontend/arrowRight-78a7cee4.js +0 -42
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f961d4e469b058f29cbba131a2ab69068547a6215111a1e9dae04040b956ddcf
4
- data.tar.gz: 91b70f55119f6c1b8f8b8f4d1b98555f9d58bf73160165d7e4d16f8026384d81
3
+ metadata.gz: 9eecaf374cbaeadfc23532153d00c0a52a936c42d36ab65bbed903991ba6f0cf
4
+ data.tar.gz: 5b59c6b626e32a1fd748fdfea56e96741c9dce6061ec9709b2ac905722dba6ee
5
5
  SHA512:
6
- metadata.gz: 82ac9717c4501f56715a6afc1a855ea9ce82f8cf1d3b6c3627ca8785960753a2967ba5114f5c348aa95608160c70b59edf338b9ea21d94fe1aee98cd7704adba
7
- data.tar.gz: 0abd22f0d5bf02e29f6ac4b9fb6bc03732eec4a5e3cbd596aed79498f218e333a915bbbe1eee3b923bfe14ce213767f380c433c22180e5cb6294e38aa2694ab8
6
+ metadata.gz: 331856460e25d862e8dd49b835ae55fb838bea2db00de10a59d45a1ae5d501ccdb9e671b81714d832cc5dfe741d3e6dc96e261bb3732bae2b60827ece4766f27
7
+ data.tar.gz: 9b9119cd2f1ac7db1daeaf3273210b6b02a2d2e00633ae432213a6c828a4798ac8db6926fb608116dbdf653326385e8adfb312eeeb664d40c7ecad2fef82ba46
data/CHANGELOG.md CHANGED
@@ -1,55 +1,232 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 16.0.0
3
+ ### Version 16.1.0
4
4
 
5
- 2023-01-11
5
+ 2023-10-25
6
6
 
7
- [Compare changes](https://github.com/codevise/pageflow/compare/15-x-stable...v16.0.0)
7
+ [Compare changes](https://github.com/codevise/pageflow/compare/16-0-stable...v16.1.0)
8
8
 
9
9
  #### Core
10
10
 
11
- ##### Breaking Changes
11
+ ##### Published Entry
12
12
 
13
- - The `Theming` model has been renamed to `Site`.
14
- ([#1903](https://github.com/codevise/pageflow/pull/1903),
15
- [#1914](https://github.com/codevise/pageflow/pull/1914))
13
+ - Add feature flag to use HLS in all Desktop browsers
14
+ ([#1924](https://github.com/codevise/pageflow/pull/1924))
15
+ - Atom feeds
16
+ ([#1941](https://github.com/codevise/pageflow/pull/1941),
17
+ [#1949](https://github.com/codevise/pageflow/pull/1949))
18
+ - Add XML sitemaps for sites
19
+ ([#1944](https://github.com/codevise/pageflow/pull/1944),
20
+ [#1945](https://github.com/codevise/pageflow/pull/1945))
21
+ ([#1924](https://github.com/codevise/pageflow/pull/1924))
22
+ - Allow using custom feeds urls for sites
23
+ ([#1952](https://github.com/codevise/pageflow/pull/1952),
24
+ [#1953](https://github.com/codevise/pageflow/pull/1953))
16
25
 
17
- Related associations like `Entry#theming` or
18
- `Account#default_theming` have been renamed to `Entry#site` and
19
- `Account#default_site` accordingly.
26
+ ##### Admin
20
27
 
21
- - Entry templates and theme customizations now belong to sites instead
22
- of accounts.
23
- ([#1904](https://github.com/codevise/pageflow/pull/1904),
24
- [#1915](https://github.com/codevise/pageflow/pull/1915))
28
+ - Hide permalink directory drop down with single item
29
+ ([#1917](https://github.com/codevise/pageflow/pull/1917))
25
30
 
26
- Accounts can now contain multiple sites with their own set of
27
- templates and customized theme.
31
+ ##### Editor
32
+
33
+ - Allow turning default widgets off
34
+ ([#1965](https://github.com/codevise/pageflow/pull/1965))
35
+ - Use short label for editor help button
36
+ ([#1970](https://github.com/codevise/pageflow/pull/1970))
37
+ - Filter out widgets of unknown widget types
38
+ ([#1961](https://github.com/codevise/pageflow/pull/1961))
39
+ - Bug fix: Prevent normalizing color input too early
40
+ ([#1992](https://github.com/codevise/pageflow/pull/1992))
41
+ - Bug fix: Do not scale images up when creating panorama styles
42
+ ([#1920](https://github.com/codevise/pageflow/pull/1920))
43
+
44
+ ##### Rails Engine
45
+
46
+ - Add public_entry_cache_control_header config option
47
+ ([#1999](https://github.com/codevise/pageflow/pull/1999))
48
+ - Make default published until duration configurable
49
+ ([#1955](https://github.com/codevise/pageflow/pull/1955))
50
+ - Exclude react-rails 2.7 from supported versions
51
+ ([#1963](https://github.com/codevise/pageflow/pull/1963))
52
+ - Allow any 2.6 version of react-rails
53
+ ([#1964](https://github.com/codevise/pageflow/pull/1964))
54
+
55
+ ##### JavaScript API
56
+
57
+ - Add throttled media events
58
+ ([#1939](https://github.com/codevise/pageflow/pull/1939))
59
+
60
+ ##### Documentation
61
+
62
+ - Make CORS config json
63
+ ([#1956](https://github.com/codevise/pageflow/pull/1956))
28
64
 
29
65
  ##### Internal
30
66
 
31
- - Add reusable GitHub workflow to run RSpec tests
32
- ([#1905](https://github.com/codevise/pageflow/pull/1905))
67
+ - Run core specs agains Rails 6.1/Ruby 3.2
68
+ ([#1998](https://github.com/codevise/pageflow/pull/1998))
69
+ - Fix Zeitwerk compatibility
70
+ ([#2013](https://github.com/codevise/pageflow/pull/2013))
71
+ - Run plugin specs in reusable workflow against Rails 6.1
72
+ ([#2012](https://github.com/codevise/pageflow/pull/2012))
73
+ - Move RailsVersion helper from support to core gem
74
+ ([#2006](https://github.com/codevise/pageflow/pull/2006))
75
+ - Fix paged specs for Rails 6
76
+ ([#2004](https://github.com/codevise/pageflow/pull/2004))
77
+ - Fix scrolled specs for Rails 6
78
+ ([#2003](https://github.com/codevise/pageflow/pull/2003))
79
+ - Fix core specs for Rails 6
80
+ ([#2000](https://github.com/codevise/pageflow/pull/2000))
81
+ - Fix Active Record errors deprecation warning
82
+ ([#2015](https://github.com/codevise/pageflow/pull/2015))
83
+ - Fix SSR webpack-dev-server client code removal for Webpack 5
84
+ ([#2018](https://github.com/codevise/pageflow/pull/2018))
85
+ - Support both Webpacker and Shakapacker
86
+ ([#2017](https://github.com/codevise/pageflow/pull/2017))
87
+ - Remove Coveralls integration
88
+ ([#2016](https://github.com/codevise/pageflow/pull/2016))
89
+ - Fix webdrivers for Chrome 115
90
+ ([#1983](https://github.com/codevise/pageflow/pull/1983))
91
+
92
+ #### Paged Entry Type
93
+
94
+ ##### Published Entry
95
+
96
+ - Bug fix: Fix scrolling classic page content on Windows 10 with touch screen
97
+ ([#1916](https://github.com/codevise/pageflow/pull/1916))
98
+
99
+ ##### Internal
100
+
101
+ - Allow seeding text to paged entries
102
+ ([#1929](https://github.com/codevise/pageflow/pull/1929))
33
103
 
34
104
  #### Scrolled Entry Type
35
105
 
36
- - Simplify borders in default navigation mobile chapter menu
37
- ([#1913](https://github.com/codevise/pageflow/pull/1913))
38
- - Add theme property for chapter link separator color
39
- ([#1912](https://github.com/codevise/pageflow/pull/1912))
40
- - Add widget slot to default navigation
41
- ([#1911](https://github.com/codevise/pageflow/pull/1911))
42
- - Improve theme property for default navigation progress bar height
43
- ([#1910](https://github.com/codevise/pageflow/pull/1910))
44
- - Add theme option to use smaller menu icon variant
45
- ([#1909](https://github.com/codevise/pageflow/pull/1909))
46
- - Allow using custom icons for share options
47
- ([#1907](https://github.com/codevise/pageflow/pull/1907))
106
+ ##### Published Entry
107
+
108
+ - Support portrait backdrop videos
109
+ ([#1930](https://github.com/codevise/pageflow/pull/1930))
110
+ - Clear inlined float
111
+ ([#1995](https://github.com/codevise/pageflow/pull/1995))
112
+ - Allow placing floated elements side by side
113
+ ([#1979](https://github.com/codevise/pageflow/pull/1979))
114
+ - Improve blessing media elements for iOS
115
+ ([#1928](https://github.com/codevise/pageflow/pull/1928))
116
+ - Make feature flag to enforce FullHD videos available for scrolled
117
+ ([#1927](https://github.com/codevise/pageflow/pull/1927))
118
+ - Upgrade to video.js 7.21 and http-streaming 2.16
119
+ ([#1925](https://github.com/codevise/pageflow/pull/1925))- Decrease external link font size on mobile
120
+ ([#1926](https://github.com/codevise/pageflow/pull/1926))
121
+ - Reduce spacing between list items
122
+ ([#1938](https://github.com/codevise/pageflow/pull/1938))
123
+ - Make text block spacing more consistent between editor and published entry
124
+ ([#1997](https://github.com/codevise/pageflow/pull/1997))
125
+ - Improve onVisible/onInvisible callbacks
126
+ ([#1947](https://github.com/codevise/pageflow/pull/1947),
127
+ [#1950](https://github.com/codevise/pageflow/pull/1950))
128
+ - Set text direction attribute for scrolled entries
129
+ ([#1975](https://github.com/codevise/pageflow/pull/1975))
130
+ - Use Rails fragment cache for scrolled entries
131
+ ([#2001](https://github.com/codevise/pageflow/pull/2001))
132
+ - Fix two column motif area content measuring
133
+ ([#1990](https://github.com/codevise/pageflow/pull/1990))
134
+ - Bug fix: Ignore volume setting in Scrolled
135
+ ([#1921](https://github.com/codevise/pageflow/pull/1921))
136
+ - Bug fix: Prevent line artifact between sections on Chrome
137
+ ([#1935](https://github.com/codevise/pageflow/pull/1935))
138
+ - Bug fix: Remove legacy clip for revealed sections
139
+ ([#1993](https://github.com/codevise/pageflow/pull/1993))
140
+
141
+ ##### Content Elements
142
+
143
+ - Enable full screen view for inline images
144
+ ([#1902](https://github.com/codevise/pageflow/pull/1902))
145
+ - Add stand-alone quote element
146
+ ([#1931](https://github.com/codevise/pageflow/pull/1931),
147
+ [#1932](https://github.com/codevise/pageflow/pull/1932),
148
+ [#1958](https://github.com/codevise/pageflow/pull/1958),
149
+ [#1982](https://github.com/codevise/pageflow/pull/1982))
150
+ - Add counter content element
151
+ ([#1934](https://github.com/codevise/pageflow/pull/1934),
152
+ [#1940](https://github.com/codevise/pageflow/pull/1940),
153
+ [#1943](https://github.com/codevise/pageflow/pull/1943),
154
+ [#1984](https://github.com/codevise/pageflow/pull/1984),
155
+ [#2007](https://github.com/codevise/pageflow/pull/2007))
156
+ - Add image gallery content element
157
+ ([#1966](https://github.com/codevise/pageflow/pull/1966),
158
+ [#1980](https://github.com/codevise/pageflow/pull/1980),
159
+ [#1968](https://github.com/codevise/pageflow/pull/1968),
160
+ [#1969](https://github.com/codevise/pageflow/pull/1969),
161
+ [#1978](https://github.com/codevise/pageflow/pull/1978))
162
+ - Custom margin for image galleries
163
+ ([#1971](https://github.com/codevise/pageflow/pull/1971),
164
+ [#1972](https://github.com/codevise/pageflow/pull/1972),
165
+ [#1973](https://github.com/codevise/pageflow/pull/1973))
166
+ - Content element widths
167
+ ([#1989](https://github.com/codevise/pageflow/pull/1989))
168
+ - Consent opt-in for iframe embed element
169
+ ([#2005](https://github.com/codevise/pageflow/pull/2005))
170
+ - Bug fix: Prevent white lines around external link image
171
+ ([#1994](https://github.com/codevise/pageflow/pull/1994))
172
+ - Allow setting portrait version for inline videos
173
+ ([#2019](https://github.com/codevise/pageflow/pull/2019))
174
+
175
+ ##### Widgets
176
+
177
+ - Display rights of all files in credits box
178
+ ([#1959](https://github.com/codevise/pageflow/pull/1959))
179
+ - Extract scrolled consent bar into widget
180
+ ([#1976](https://github.com/codevise/pageflow/pull/1976))
181
+
182
+ ##### Editor
183
+
184
+ - Display and edit section transitions via outline
185
+ ([#2009](https://github.com/codevise/pageflow/pull/2009),
186
+ [#2010](https://github.com/codevise/pageflow/pull/2010),
187
+ [#2011](https://github.com/codevise/pageflow/pull/2011))
188
+ - Duplicating sections
189
+ ([#2008](https://github.com/codevise/pageflow/pull/2008))
190
+ - Add file type drop down to link dialog
191
+ ([#1919](https://github.com/codevise/pageflow/pull/1919))
192
+ - File links
193
+ ([#1918](https://github.com/codevise/pageflow/pull/1918))
194
+ - Introduce palettes
195
+ ([#1936](https://github.com/codevise/pageflow/pull/1936),
196
+ [#1946](https://github.com/codevise/pageflow/pull/1946))
197
+ - Introduce file type priorities to fix text track upload in scrolled
198
+ ([#1962](https://github.com/codevise/pageflow/pull/1962))
199
+ - Do not display single item position drop down
200
+ ([#1996](https://github.com/codevise/pageflow/pull/1996))
201
+
202
+ ##### Theme API
203
+
204
+ - Improve content color properties
205
+ ([#1923](https://github.com/codevise/pageflow/pull/1923))
206
+ - Make content text color available in custom property
207
+ ([#1937](https://github.com/codevise/pageflow/pull/1937))
208
+ - Add theme properties for quote mark font family and color
209
+ ([#1977](https://github.com/codevise/pageflow/pull/1977))
210
+ - Add list related theme properties
211
+ ([#1981](https://github.com/codevise/pageflow/pull/1981))
212
+ - Add theme property for marker color of unordered list items
213
+ ([#1985](https://github.com/codevise/pageflow/pull/1985))
214
+ - Allow changing light and dark text color of headings
215
+ ([#1987](https://github.com/codevise/pageflow/pull/1987))
216
+ - Allow using SVG data URLs as quote marks
217
+ ([#1988](https://github.com/codevise/pageflow/pull/1988))
218
+ - Allow coloring SVG quote mark symbol with palette colors
219
+ ([#2002](https://github.com/codevise/pageflow/pull/2002))
220
+ - Let themes use quote variant with centered quote mark
221
+ ([#2014](https://github.com/codevise/pageflow/pull/2014))
48
222
 
49
- [Compare changes](https://github.com/codevise/pageflow/compare/15-x-stable...master)
223
+ ##### Internal
50
224
 
51
- None so far.
225
+ - Support scopes in storybook theme properties
226
+ ([#1986](https://github.com/codevise/pageflow/pull/1986))
227
+ - Use different widths in appearance stories
228
+ ([#1991](https://github.com/codevise/pageflow/pull/1991))
52
229
 
53
230
  See
54
- [15-x-stable branch](https://github.com/codevise/pageflow/blob/15-x-stable/CHANGELOG.md)
231
+ [16-0-stable branch](https://github.com/codevise/pageflow/blob/16-0-stable/CHANGELOG.md)
55
232
  for previous changes.
data/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/pageflow.svg)](http://badge.fury.io/rb/pageflow)
4
4
  [![Build Status](https://github.com/codevise/pageflow/workflows/tests/badge.svg)](https://github.com/codevise/pageflow/actions)
5
- [![Coverage Status](https://coveralls.io/repos/github/codevise/pageflow/badge.svg?branch=master)](https://coveralls.io/github/codevise/pageflow?branch=master)
6
5
  [![Code Climate](https://codeclimate.com/github/codevise/pageflow/badges/gpa.svg)](https://codeclimate.com/github/codevise/pageflow)
7
6
  [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)
8
7
 
data/Rakefile CHANGED
@@ -30,7 +30,7 @@ end
30
30
  require File.expand_path('spec/support/pageflow/dummy/app', File.dirname(__FILE__))
31
31
  APP_RAKEFILE = File.expand_path("../#{Pageflow::Dummy::App.new.directory}/Rakefile", __FILE__)
32
32
 
33
- load 'rails/tasks/engine.rake' if File.exists?(APP_RAKEFILE)
33
+ load 'rails/tasks/engine.rake' if File.exist?(APP_RAKEFILE)
34
34
  load File.expand_path('lib/tasks/pageflow_tasks.rake', File.dirname(__FILE__))
35
35
 
36
36
  Bundler::GemHelper.install_tasks
@@ -204,7 +204,6 @@ module Pageflow
204
204
  helper Admin::FeaturesHelper
205
205
  helper Admin::FormHelper
206
206
  helper Admin::MembershipsHelper
207
- helper Admin::PermalinksHelper
208
207
  helper Admin::RevisionsHelper
209
208
 
210
209
  helper_method :account_policy_scope
@@ -19,8 +19,11 @@ module Pageflow
19
19
  permit_params do
20
20
  [
21
21
  :name,
22
+ :title,
22
23
  :cname,
23
24
  :additional_cnames,
25
+ :feeds_enabled,
26
+ :sitemap_enabled,
24
27
  :imprint_link_url,
25
28
  :imprint_link_label,
26
29
  :copyright_link_url,