pageflow 15.2.2 → 15.3.0
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 +4 -4
- data/CHANGELOG.md +338 -85
- data/admins/pageflow/accounts.rb +1 -98
- data/admins/pageflow/entry.rb +21 -1
- data/admins/pageflow/entry_templates.rb +140 -0
- data/admins/pageflow/membership.rb +12 -0
- data/admins/pageflow/user.rb +5 -3
- data/app/assets/javascripts/pageflow/admin/entries.js +65 -0
- data/app/assets/javascripts/pageflow/admin/users.js +1 -1
- data/app/assets/javascripts/pageflow/asset_urls.js.erb +1 -0
- data/app/assets/javascripts/pageflow/base.js +0 -12
- data/app/assets/javascripts/pageflow/components.js +2 -6
- data/app/assets/javascripts/pageflow/dist/ui.js +47 -14
- data/app/assets/javascripts/pageflow/vendor.js +13 -10
- data/app/assets/stylesheets/pageflow/base.scss +0 -7
- data/app/assets/stylesheets/pageflow/editor/base.scss +2 -0
- data/app/assets/stylesheets/pageflow/editor/composables.scss +5 -1
- data/app/assets/stylesheets/pageflow/editor/emulation_mode_button.scss +44 -55
- data/app/assets/stylesheets/pageflow/editor/help.scss +2 -2
- data/app/assets/stylesheets/pageflow/ui/tooltip.scss +17 -3
- data/app/helpers/pageflow/admin/entries_helper.rb +16 -0
- data/app/helpers/pageflow/structured_data_helper.rb +0 -2
- data/app/models/pageflow/account.rb +21 -1
- data/app/models/pageflow/entry.rb +9 -2
- data/app/models/pageflow/entry_duplicate.rb +1 -0
- data/app/models/pageflow/entry_template.rb +16 -2
- data/app/policies/pageflow/account_policy.rb +10 -0
- data/app/policies/pageflow/entry_template_policy.rb +5 -1
- data/app/views/admin/accounts/_entry_template_details.html.arb +7 -5
- data/app/views/admin/accounts/_form.html.erb +3 -49
- data/app/views/admin/entries/_attributes_table.html.arb +5 -0
- data/app/views/admin/entries/_not_allowed_to_see_entry_types.json.jbuilder +2 -0
- data/app/views/admin/entries/entry_types.json.jbuilder +4 -0
- data/app/views/admin/entry_templates/_form.html.erb +58 -0
- data/app/views/admin/users/_not_allowed_to_see_user_quota.html.erb +3 -0
- data/app/views/components/pageflow/admin/entry_templates_tab.rb +48 -0
- data/app/views/pageflow/admin/users/_quota_exhausted.html.erb +1 -1
- data/config/initializers/admin_resource_tabs.rb +5 -0
- data/config/initializers/help_entries.rb +1 -5
- data/config/locales/de.yml +88 -155
- data/config/locales/en.yml +79 -143
- data/db/migrate/20200515112500_add_constraints_to_entry_templates.rb +21 -0
- data/db/migrate/20200807135200_rename_pageflow_entry_template_entry_type_to_entry_type_name.rb +7 -0
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/components.js +7 -0
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +1479 -1391
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +9218 -0
- data/{app/assets/javascripts/pageflow → entry_types/paged/app/assets/javascripts/pageflow_paged}/dist/react-client.js +1 -1
- data/{app/assets/javascripts/pageflow → entry_types/paged/app/assets/javascripts/pageflow_paged}/dist/react-server.js +3 -3
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/frontend.js +6 -0
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/server_rendering.js +9 -0
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/vendor.js +8 -0
- data/entry_types/paged/app/controllers/pageflow_paged/application_controller.rb +2 -2
- data/{app/helpers/pageflow → entry_types/paged/app/helpers/pageflow_paged}/page_background_asset_helper.rb +4 -3
- data/{app/helpers/pageflow → entry_types/paged/app/helpers/pageflow_paged}/react_server_side_rendering_helper.rb +23 -2
- data/entry_types/paged/app/views/layouts/pageflow_paged/application.html.erb +2 -2
- data/entry_types/paged/app/views/pageflow_paged/editor/entries/_head.html.erb +2 -2
- data/entry_types/paged/app/views/pageflow_paged/entries/_entry.html.erb +1 -1
- data/{app/views/pageflow → entry_types/paged/app/views/pageflow_paged}/page_background_asset/_element.html.erb +0 -0
- data/{app/views/pageflow → entry_types/paged/app/views/pageflow_paged}/react/_widget.html.erb +0 -0
- data/{app/views/pageflow → entry_types/paged/app/views/pageflow_paged}/react/page.html.erb +0 -0
- data/entry_types/paged/config/initializers/features.rb +1 -1
- data/entry_types/paged/config/initializers/help_entries.rb +17 -0
- data/entry_types/paged/config/locales/new/help.de.yml +162 -0
- data/entry_types/paged/config/locales/new/help.en.yml +153 -0
- data/entry_types/paged/lib/pageflow_paged/engine.rb +13 -0
- data/entry_types/paged/lib/pageflow_paged/plugin.rb +5 -1
- data/entry_types/paged/lib/pageflow_paged/react.rb +12 -0
- data/{lib/pageflow → entry_types/paged/lib/pageflow_paged}/react/page_type.rb +2 -2
- data/{lib/pageflow → entry_types/paged/lib/pageflow_paged}/react/widget_type.rb +2 -2
- data/entry_types/paged/vendor/assets/javascripts/development/pageflow_paged/vendor/react-server.js +20613 -0
- data/entry_types/paged/vendor/assets/javascripts/development/pageflow_paged/vendor/react.js +21495 -0
- data/entry_types/paged/vendor/assets/javascripts/production/pageflow_paged/vendor/react-server.js +24 -0
- data/entry_types/paged/vendor/assets/javascripts/production/pageflow_paged/vendor/react.js +24 -0
- data/entry_types/scrolled/app/assets/javascripts/pageflow_scrolled/legacy.js +0 -0
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/chapters_controller.rb +2 -2
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/content_elements_controller.rb +14 -4
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/editor/sections_controller.rb +2 -2
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/entries_controller.rb +8 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/seed_html_helper.rb +6 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/entry_json_seed_helper.rb +2 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/react_server_side_rendering_helper.rb +33 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/themes_helper.rb +8 -0
- data/entry_types/scrolled/app/models/pageflow_scrolled/content_element.rb +38 -0
- data/entry_types/scrolled/app/views/pageflow_scrolled/editor/content_elements/batch.json.jbuilder +2 -0
- data/entry_types/scrolled/app/views/pageflow_scrolled/editor/entries/_head.html.erb +1 -7
- data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +19 -3
- data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_entry.json.jbuilder +3 -0
- data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_theme.json.jbuilder +7 -0
- data/entry_types/scrolled/config/initializers/help_entries.rb +16 -0
- data/entry_types/scrolled/config/locales/new/de.yml +345 -13
- data/entry_types/scrolled/config/locales/new/en.yml +257 -14
- data/entry_types/scrolled/config/routes.rb +1 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/install_generator.rb +28 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/logoDesktop.svg +56 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/logoMobile.svg +22 -0
- data/entry_types/scrolled/lib/pageflow_scrolled/engine.rb +4 -0
- data/entry_types/scrolled/lib/pageflow_scrolled/plugin.rb +3 -1
- data/entry_types/scrolled/lib/pageflow_scrolled/seeds.rb +90 -30
- data/entry_types/scrolled/lib/tasks/pageflow_scrolled_tasks.rake +64 -27
- data/entry_types/scrolled/package/contentElements-editor.js +242 -183
- data/entry_types/scrolled/package/contentElements-frontend.css +1 -0
- data/entry_types/scrolled/package/contentElements-frontend.js +624 -279
- data/entry_types/scrolled/package/editor.js +2561 -363
- data/entry_types/scrolled/package/frontend-server.js +228 -0
- data/entry_types/scrolled/package/frontend/EditableText-4264c349.js +1993 -0
- data/entry_types/scrolled/package/frontend/Wavesurfer-c3c45324.js +378 -0
- data/entry_types/scrolled/package/frontend/components-cfe6a479.js +2115 -0
- data/entry_types/scrolled/package/frontend/getPrototypeOf-63c7c8e8.js +86 -0
- data/entry_types/scrolled/package/frontend/index.css +9 -0
- data/entry_types/scrolled/package/frontend/index.js +4425 -0
- data/entry_types/scrolled/package/package.json +17 -6
- data/entry_types/scrolled/spec/fixtures/audio.m4a +0 -0
- data/entry_types/scrolled/spec/fixtures/video.mp4 +0 -0
- data/lib/generators/pageflow/initializer/templates/pageflow.rb +20 -9
- data/lib/pageflow/ability_mixin.rb +14 -2
- data/lib/pageflow/configuration.rb +6 -5
- data/lib/pageflow/engine.rb +1 -0
- data/lib/pageflow/entry_type_configuration.rb +1 -0
- data/lib/pageflow/global_config_api.rb +5 -4
- data/lib/pageflow/react.rb +4 -2
- data/lib/pageflow/version.rb +1 -1
- data/{packages/pageflow → package}/config/jest/index.js +2 -1
- data/{packages/pageflow → package}/config/jest/transformers/jst.js +0 -0
- data/{packages/pageflow → package}/config/jest/transformers/upwardBabel.js +0 -0
- data/package/config/webpack.js +22 -0
- data/{packages/pageflow → package}/editor.js +480 -1129
- data/package/frontend.js +2525 -0
- data/{packages/pageflow → package}/package.json +3 -0
- data/{packages/pageflow → package}/testHelpers.js +114 -13
- data/{packages/pageflow → package}/ui.js +47 -14
- data/spec/factories/accounts.rb +3 -1
- data/spec/factories/entry_templates.rb +1 -0
- data/spec/factories/published_entries.rb +6 -1
- metadata +62 -26
- data/app/assets/javascripts/pageflow/dist/frontend.js +0 -5800
- data/config/initializers/entry_types.rb +0 -4
- data/entry_types/scrolled/package/frontend.js +0 -2879
- data/packages/pageflow/config/jest/transformers/cssModules.js +0 -1
- data/packages/pageflow/config/webpack.js +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 563d35479fe7b5d74b977e00448f5c9bfd1c62edd743055ea473a6dabe56b4ed
|
4
|
+
data.tar.gz: d1611ba3ee37f2b505fdd83d888b0951411eb2a5b5a58f37466e95722000f976
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f70f3d6102178107779c7d2147bc1566317fa8d96cc9a9638934a0b2d3b36bfa3e27e895d0f7e4a4f3658f16a6a43ed07a099658c3715a87a4e01c52a2bb2387
|
7
|
+
data.tar.gz: ba53127dbfa32c61d32b56d35460671fea12ec70308a1b4efb8e3e1839fe4b492db607c4171790fc8aead0e421ebadadc07c66cb678a72a6236e585152319bcc
|
data/CHANGELOG.md
CHANGED
@@ -1,130 +1,383 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
### Version 15.
|
3
|
+
### Version 15.3.0
|
4
4
|
|
5
|
-
2020-
|
5
|
+
2020-08-21
|
6
6
|
|
7
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/
|
7
|
+
[Compare changes](https://github.com/codevise/pageflow/compare/15-2-stable...v15.3.0)
|
8
8
|
|
9
|
-
|
10
|
-
([#1526](https://github.com/codevise/pageflow/pull/1526))
|
9
|
+
#### Core
|
11
10
|
|
12
|
-
|
11
|
+
##### Manual Update Step
|
13
12
|
|
14
|
-
|
13
|
+
- Entry types must now be registered in the host application
|
14
|
+
([#1556](https://github.com/codevise/pageflow/pull/1556))
|
15
15
|
|
16
|
-
|
16
|
+
Add the following line to the top of your `pageflow` initializer:
|
17
17
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
([#1374](https://github.com/codevise/pageflow/pull/1374))
|
18
|
+
```ruby
|
19
|
+
config.plugin(PageflowPaged.plugin)
|
20
|
+
```
|
22
21
|
|
23
|
-
|
22
|
+
If you are already using the experimental Scrolled entry type, also
|
23
|
+
add:
|
24
24
|
|
25
|
-
|
25
|
+
```ruby
|
26
|
+
config.plugin(PageflowScrolled.plugin)
|
27
|
+
```
|
26
28
|
|
27
|
-
|
29
|
+
- Install and run migrations.
|
28
30
|
|
29
|
-
|
31
|
+
##### Admin
|
32
|
+
|
33
|
+
- Make entry templates editable
|
34
|
+
([#1420](https://github.com/codevise/pageflow/pull/1420),
|
35
|
+
[#1558](https://github.com/codevise/pageflow/pull/1558),
|
36
|
+
[#1553](https://github.com/codevise/pageflow/pull/1553))
|
37
|
+
- Bug fix: Repair user invite form for admin users
|
38
|
+
([#1399](https://github.com/codevise/pageflow/pull/1399))
|
39
|
+
- Bug fix: Fix disabling home button input in account form based on theme
|
40
|
+
([#1375](https://github.com/codevise/pageflow/pull/1375))
|
30
41
|
|
31
42
|
##### Editor
|
32
43
|
|
33
|
-
-
|
34
|
-
([#
|
35
|
-
-
|
36
|
-
([#
|
44
|
+
- Default to empty link url in text area input view
|
45
|
+
([#1549](https://github.com/codevise/pageflow/pull/1549))
|
46
|
+
- Turn emulation menu into toggle
|
47
|
+
([#1563](https://github.com/codevise/pageflow/pull/1563))
|
48
|
+
- Bug fix: Hide vertical scroll bar in editor sidebar
|
49
|
+
([#1479](https://github.com/codevise/pageflow/pull/1479))
|
50
|
+
|
51
|
+
##### JavaScript API
|
52
|
+
|
53
|
+
- Media-API
|
54
|
+
([#1394](https://github.com/codevise/pageflow/pull/1394))
|
55
|
+
- Extend editor api to detect browser
|
56
|
+
([#1510](https://github.com/codevise/pageflow/pull/1510))
|
57
|
+
- Add logic to detect IOS 13 Safari on iPad
|
58
|
+
([#1519](https://github.com/codevise/pageflow/pull/1519))
|
59
|
+
- Extend the existing user agent detection code for desktop browsers
|
60
|
+
([#1512](https://github.com/codevise/pageflow/pull/1512))
|
37
61
|
|
38
62
|
##### Documentation
|
39
63
|
|
40
|
-
-
|
41
|
-
([#
|
42
|
-
- Move troubleshooting to docs
|
43
|
-
([#1327](https://github.com/codevise/pageflow/pull/1327))
|
64
|
+
- Add troubleshooting section to Rails Engine Development docs
|
65
|
+
([#1397](https://github.com/codevise/pageflow/pull/1397))
|
44
66
|
|
45
67
|
##### Internal
|
46
68
|
|
47
|
-
-
|
48
|
-
([#
|
49
|
-
|
50
|
-
|
51
|
-
-
|
52
|
-
([#
|
69
|
+
- Decouple shared frontend code from jQuery and Backbone
|
70
|
+
([#1396](https://github.com/codevise/pageflow/pull/1396),
|
71
|
+
[#1480](https://github.com/codevise/pageflow/pull/1480),
|
72
|
+
[#1560](https://github.com/codevise/pageflow/pull/1560))
|
73
|
+
- Update edge script
|
74
|
+
([#1402](https://github.com/codevise/pageflow/pull/1402))
|
75
|
+
- Fix dummy app generation with Thor 1.0
|
76
|
+
([#1522](https://github.com/codevise/pageflow/pull/1522))
|
77
|
+
- Add inline documentation to membership admin
|
78
|
+
([#1425](https://github.com/codevise/pageflow/pull/1425))
|
79
|
+
- No longer pin chrome driver in scrolled Capybara specs
|
80
|
+
([#1380](https://github.com/codevise/pageflow/pull/1380))
|
53
81
|
|
54
82
|
#### Paged Entry Type
|
55
83
|
|
56
84
|
##### Published Entry
|
57
85
|
|
58
|
-
-
|
59
|
-
([#
|
60
|
-
-
|
61
|
-
|
62
|
-
|
86
|
+
- Loading spinner configurable animation time
|
87
|
+
([#1481](https://github.com/codevise/pageflow/pull/1481))
|
88
|
+
- Loading spinner image positioning
|
89
|
+
([#1378](https://github.com/codevise/pageflow/pull/1378))
|
90
|
+
|
91
|
+
##### Internal
|
92
|
+
|
93
|
+
- Rename pageflow-react to pageflow-paged-react
|
94
|
+
([#1387](https://github.com/codevise/pageflow/pull/1387))
|
95
|
+
- Update package path in jshintignore
|
96
|
+
([#1395](https://github.com/codevise/pageflow/pull/1395))
|
97
|
+
- Refactor and move paged specific js from pageflow/frontend to pageflow-paged/frontend package
|
98
|
+
([#1370](https://github.com/codevise/pageflow/pull/1370))
|
99
|
+
- Rewrite build scripts to use gemspec files
|
100
|
+
([#1415](https://github.com/codevise/pageflow/pull/1415))
|
63
101
|
|
64
102
|
#### Scrolled Entry Type
|
65
103
|
|
66
|
-
#####
|
104
|
+
##### Admin
|
67
105
|
|
68
|
-
-
|
69
|
-
([#
|
70
|
-
- dataWrapperChart content element
|
71
|
-
([#1349](https://github.com/codevise/pageflow/pull/1349),
|
72
|
-
[#1355](https://github.com/codevise/pageflow/pull/1355))
|
73
|
-
- External link content element
|
74
|
-
([#1346](https://github.com/codevise/pageflow/pull/1346))
|
75
|
-
- Add videoEmbed content element
|
76
|
-
([#1336](https://github.com/codevise/pageflow/pull/1336))
|
106
|
+
- Create scrolled entries
|
107
|
+
([#1361](https://github.com/codevise/pageflow/pull/1361))
|
77
108
|
|
78
|
-
#####
|
109
|
+
##### Published Entry
|
110
|
+
|
111
|
+
- Server side rendering for scrolled entries
|
112
|
+
([#1552](https://github.com/codevise/pageflow/pull/1552),
|
113
|
+
[#1551](https://github.com/codevise/pageflow/pull/1551))
|
114
|
+
- Add meta tags in scrolled
|
115
|
+
([#1539](https://github.com/codevise/pageflow/pull/1539))
|
116
|
+
- Make link color match inverted text color
|
117
|
+
([#1516](https://github.com/codevise/pageflow/pull/1516))
|
118
|
+
- Atmo for scrolled entries
|
119
|
+
([#1500](https://github.com/codevise/pageflow/pull/1500),
|
120
|
+
[#1531](https://github.com/codevise/pageflow/pull/1531))
|
121
|
+
- Structured data for scrolled entries
|
122
|
+
([#1555](https://github.com/codevise/pageflow/pull/1555))
|
123
|
+
- Waveform Player Controls
|
124
|
+
([#1541](https://github.com/codevise/pageflow/pull/1541),
|
125
|
+
[#1564](https://github.com/codevise/pageflow/pull/1564))
|
126
|
+
- Hide mobile sharing icons on desktop
|
127
|
+
([#1559](https://github.com/codevise/pageflow/pull/1559))
|
128
|
+
- Let first chapter begin at the very top
|
129
|
+
([#1568](https://github.com/codevise/pageflow/pull/1568))
|
130
|
+
- Only show focus outline after keyboard input
|
131
|
+
([#1503](https://github.com/codevise/pageflow/pull/1503),
|
132
|
+
[#1508](https://github.com/codevise/pageflow/pull/1508))
|
133
|
+
- Improve cards appearance variant
|
134
|
+
([#1507](https://github.com/codevise/pageflow/pull/1507),
|
135
|
+
[#1517](https://github.com/codevise/pageflow/pull/1517),
|
136
|
+
[#1477](https://github.com/codevise/pageflow/pull/1477))
|
137
|
+
- Improve gradient shadow appearance variant
|
138
|
+
([#1487](https://github.com/codevise/pageflow/pull/1487),
|
139
|
+
[#1483](https://github.com/codevise/pageflow/pull/1483),
|
140
|
+
[#1478](https://github.com/codevise/pageflow/pull/1478))
|
141
|
+
- Use consistent margins around content elements
|
142
|
+
([#1476](https://github.com/codevise/pageflow/pull/1476))
|
143
|
+
- Media Blessed Player Pool
|
144
|
+
([#1452](https://github.com/codevise/pageflow/pull/1452),
|
145
|
+
[#1474](https://github.com/codevise/pageflow/pull/1474))
|
146
|
+
- Ensure empty paragraphs have height
|
147
|
+
([#1468](https://github.com/codevise/pageflow/pull/1468))
|
148
|
+
- Support headings of different levels
|
149
|
+
([#1364](https://github.com/codevise/pageflow/pull/1364))
|
150
|
+
- Improve Backdrop videos
|
151
|
+
([#1461](https://github.com/codevise/pageflow/pull/1461),
|
152
|
+
[#1454](https://github.com/codevise/pageflow/pull/1454),
|
153
|
+
[#1441](https://github.com/codevise/pageflow/pull/1441),
|
154
|
+
[#1534](https://github.com/codevise/pageflow/pull/1534))
|
155
|
+
- Mute media in background
|
156
|
+
([#1521](https://github.com/codevise/pageflow/pull/1521))
|
157
|
+
- Improve Safari/IE 11 compatibility of reveal transitions
|
158
|
+
([#1391](https://github.com/codevise/pageflow/pull/1391))
|
159
|
+
- Install polyfills to make scrolled frontend work in IE 11
|
160
|
+
([#1389](https://github.com/codevise/pageflow/pull/1389))
|
161
|
+
- Bug fix: Prevent empty space below entry
|
162
|
+
([#1561](https://github.com/codevise/pageflow/pull/1561))
|
163
|
+
- Bug fix: Prevent display of horizontal scroll bar
|
164
|
+
([#1464](https://github.com/codevise/pageflow/pull/1464))
|
165
|
+
- Bug fix: Deal with duplicated rules in extracted CSS
|
166
|
+
([#1562](https://github.com/codevise/pageflow/pull/1562))
|
167
|
+
|
168
|
+
##### Content Elements
|
79
169
|
|
80
|
-
-
|
81
|
-
([#
|
170
|
+
- Responsive Datawrapper chart height
|
171
|
+
([#1533](https://github.com/codevise/pageflow/pull/1533),
|
172
|
+
[#1547](https://github.com/codevise/pageflow/pull/1547))
|
173
|
+
- Fix heading default value logic
|
174
|
+
([#1536](https://github.com/codevise/pageflow/pull/1536))
|
175
|
+
- Improve inline media
|
176
|
+
([#1523](https://github.com/codevise/pageflow/pull/1523))
|
177
|
+
- Display text tracks in inline videos and audios
|
178
|
+
([#1502](https://github.com/codevise/pageflow/pull/1502))
|
179
|
+
- Add quality menu to inline video player controls
|
180
|
+
([#1497](https://github.com/codevise/pageflow/pull/1497))
|
181
|
+
- Menus and accessibily improvements for player controls
|
182
|
+
([#1496](https://github.com/codevise/pageflow/pull/1496))
|
183
|
+
- Add text tracks menu to player controls
|
184
|
+
([#1501](https://github.com/codevise/pageflow/pull/1501))
|
185
|
+
- Prevent progress bar with more than 100%
|
186
|
+
([#1515](https://github.com/codevise/pageflow/pull/1515))
|
187
|
+
- Fix segfault on media playback in Chrome
|
188
|
+
([#1511](https://github.com/codevise/pageflow/pull/1511))
|
189
|
+
- Display black poster in empty inline video
|
190
|
+
([#1506](https://github.com/codevise/pageflow/pull/1506))
|
191
|
+
- Make player controls visible on boxes
|
192
|
+
([#1505](https://github.com/codevise/pageflow/pull/1505))
|
193
|
+
- Use active quality in VideoPlayer
|
194
|
+
([#1504](https://github.com/codevise/pageflow/pull/1504))
|
195
|
+
- Display pillar boxes for full width inline images
|
196
|
+
([#1471](https://github.com/codevise/pageflow/pull/1471))
|
197
|
+
- Use smaller variants for inline images
|
198
|
+
([#1466](https://github.com/codevise/pageflow/pull/1466))
|
199
|
+
- Lazy load inline images
|
200
|
+
([#1465](https://github.com/codevise/pageflow/pull/1465))
|
201
|
+
- Inline audio with posterframe
|
202
|
+
([#1457](https://github.com/codevise/pageflow/pull/1457))
|
203
|
+
- Display black pillar boxes for full width embed videos
|
204
|
+
([#1456](https://github.com/codevise/pageflow/pull/1456))
|
205
|
+
- Use lifecycle hook in media content elements
|
206
|
+
([#1458](https://github.com/codevise/pageflow/pull/1458))
|
207
|
+
- Improve video embed content element
|
208
|
+
([#1450](https://github.com/codevise/pageflow/pull/1450))
|
209
|
+
- Chart content element fixes
|
210
|
+
([#1449](https://github.com/codevise/pageflow/pull/1449))
|
211
|
+
- External links fixes
|
212
|
+
([#1447](https://github.com/codevise/pageflow/pull/1447))
|
213
|
+
- Added placeholder images for before/after
|
214
|
+
([#1445](https://github.com/codevise/pageflow/pull/1445))
|
215
|
+
- Replace useOnScreen with useContentElementLifecycle in before/after
|
216
|
+
([#1451](https://github.com/codevise/pageflow/pull/1451))
|
217
|
+
- Remove css custom properties in before/after
|
218
|
+
([#1436](https://github.com/codevise/pageflow/pull/1436))
|
219
|
+
- Give height to element in case of no images
|
220
|
+
([#1435](https://github.com/codevise/pageflow/pull/1435))
|
221
|
+
- Delay label fadeout on mousedown/touchstart
|
222
|
+
([#1434](https://github.com/codevise/pageflow/pull/1434))
|
223
|
+
- Removed label dependency for before/after
|
224
|
+
([#1433](https://github.com/codevise/pageflow/pull/1433))
|
225
|
+
- Player controls component
|
226
|
+
([#1400](https://github.com/codevise/pageflow/pull/1400))
|
227
|
+
- Hide player controls after timeout for full width content elements
|
228
|
+
([#1472])(https://github.com/codevise/pageflow/pull/1472)
|
82
229
|
|
83
230
|
##### Editor
|
84
231
|
|
85
|
-
-
|
86
|
-
([#
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
232
|
+
- Add blank slate for scrolled entries
|
233
|
+
([#1550](https://github.com/codevise/pageflow/pull/1550),
|
234
|
+
[#1565](https://github.com/codevise/pageflow/pull/1565))
|
235
|
+
- Add phone emulation mode to scrolled editor
|
236
|
+
([#1340](https://github.com/codevise/pageflow/pull/1340))
|
237
|
+
- Preview thumbnails for section transitions
|
238
|
+
([#1499](https://github.com/codevise/pageflow/pull/1499),
|
239
|
+
[#1470](https://github.com/codevise/pageflow/pull/1470))
|
240
|
+
- Support inserting text links
|
241
|
+
([#1443](https://github.com/codevise/pageflow/pull/1443),
|
242
|
+
[#1524](https://github.com/codevise/pageflow/pull/1524))
|
243
|
+
- Improve section defaults
|
244
|
+
([#1469](https://github.com/codevise/pageflow/pull/1469))
|
245
|
+
- Display insert button when section is selected
|
246
|
+
([#1486](https://github.com/codevise/pageflow/pull/1486))
|
247
|
+
- Hide background position option for inline image
|
248
|
+
([#1548](https://github.com/codevise/pageflow/pull/1548))
|
249
|
+
- Wrap content elements in error boundary
|
250
|
+
([#1535](https://github.com/codevise/pageflow/pull/1535))
|
251
|
+
- Render placeholder for content element of missing type
|
252
|
+
([#1406](https://github.com/codevise/pageflow/pull/1406))
|
253
|
+
- Inline text editing
|
254
|
+
([#1410](https://github.com/codevise/pageflow/pull/1410),
|
255
|
+
[#1529](https://github.com/codevise/pageflow/pull/1529),
|
256
|
+
[#1408](https://github.com/codevise/pageflow/pull/1408),
|
257
|
+
[#1546](https://github.com/codevise/pageflow/pull/1546))
|
258
|
+
- Display content element type selection in dialog
|
259
|
+
([#1407](https://github.com/codevise/pageflow/pull/1407))
|
260
|
+
- Improve section handling in editor
|
261
|
+
([#1473](https://github.com/codevise/pageflow/pull/1473))
|
262
|
+
- Allow selecting processing images
|
263
|
+
([#1514](https://github.com/codevise/pageflow/pull/1514))
|
264
|
+
- Separate scrolled and paged help entries
|
265
|
+
([#1527](https://github.com/codevise/pageflow/pull/1527))
|
266
|
+
- Debounce saving editable text also when rerendered
|
267
|
+
([#1485](https://github.com/codevise/pageflow/pull/1485))
|
268
|
+
- Modify browser not supported view and make it responsive.
|
269
|
+
([#1513](https://github.com/codevise/pageflow/pull/1513))
|
270
|
+
- Fix external link file selection handler referer
|
271
|
+
([#1467](https://github.com/codevise/pageflow/pull/1467))
|
272
|
+
- Add imageMobile configuration for section
|
273
|
+
([#1459](https://github.com/codevise/pageflow/pull/1459))
|
274
|
+
- Make delete button remove text block elements
|
275
|
+
([#1440](https://github.com/codevise/pageflow/pull/1440))
|
276
|
+
- Allow overriding 100vh height of Fullscreen component
|
277
|
+
([#1438](https://github.com/codevise/pageflow/pull/1438))
|
278
|
+
- Allow editing motif areas in scrolled editor
|
279
|
+
([#1430](https://github.com/codevise/pageflow/pull/1430),
|
280
|
+
[#1463](https://github.com/codevise/pageflow/pull/1463),
|
281
|
+
[#1544](https://github.com/codevise/pageflow/pull/1544),
|
282
|
+
[#1570](https://github.com/codevise/pageflow/pull/1570))
|
283
|
+
- Handle available section transitions
|
284
|
+
([#1428](https://github.com/codevise/pageflow/pull/1428))
|
285
|
+
- Inline editing for section and transtions
|
286
|
+
([#1427](https://github.com/codevise/pageflow/pull/1427))
|
287
|
+
- Drag handles for chapter and section outline items
|
288
|
+
([#1567](https://github.com/codevise/pageflow/pull/1567))
|
289
|
+
- Improve editor inline help and labels
|
290
|
+
([#1566](https://github.com/codevise/pageflow/pull/1566))
|
291
|
+
|
292
|
+
##### Engine Config
|
293
|
+
|
294
|
+
- Theme specific navigation logo for scrolled entries
|
295
|
+
([#1554](https://github.com/codevise/pageflow/pull/1554))
|
296
|
+
- Widgets for scrolled entries
|
297
|
+
([#1446](https://github.com/codevise/pageflow/pull/1446),
|
298
|
+
[#1532](https://github.com/codevise/pageflow/pull/1532))
|
93
299
|
|
94
300
|
##### JavaScript API
|
95
301
|
|
96
|
-
-
|
97
|
-
([#
|
98
|
-
-
|
99
|
-
([#
|
100
|
-
-
|
101
|
-
([#
|
102
|
-
-
|
103
|
-
([#
|
104
|
-
-
|
105
|
-
([#
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
-
|
111
|
-
([#
|
112
|
-
|
113
|
-
|
302
|
+
- Turn react and react-dom into peer dependencies of pageflow-scrolled
|
303
|
+
([#1545](https://github.com/codevise/pageflow/pull/1545))
|
304
|
+
- React media api
|
305
|
+
([#1398](https://github.com/codevise/pageflow/pull/1398))
|
306
|
+
- Improve handling of light and dark backgrounds
|
307
|
+
([#1509](https://github.com/codevise/pageflow/pull/1509))
|
308
|
+
- Viewport dependent pillar boxes
|
309
|
+
([#1442](https://github.com/codevise/pageflow/pull/1442))
|
310
|
+
- Add useContentElementLifecycle hook
|
311
|
+
([#1444](https://github.com/codevise/pageflow/pull/1444))
|
312
|
+
- Add useContentElementEditorState hook
|
313
|
+
([#1439](https://github.com/codevise/pageflow/pull/1439))
|
314
|
+
- Make useEntryStructure/useSectionStructure hooks private
|
315
|
+
([#1431](https://github.com/codevise/pageflow/pull/1431))
|
316
|
+
- Add supportedPositions option for content element types
|
317
|
+
([#1429](https://github.com/codevise/pageflow/pull/1429))
|
318
|
+
- Let content elements update their own configuration
|
319
|
+
([#1424](https://github.com/codevise/pageflow/pull/1424))
|
320
|
+
- Media player state hook
|
321
|
+
([#1412](https://github.com/codevise/pageflow/pull/1412))
|
322
|
+
- Media player context data
|
323
|
+
([#1520](https://github.com/codevise/pageflow/pull/1520))
|
114
324
|
|
115
325
|
##### Internal
|
116
326
|
|
117
|
-
-
|
118
|
-
([#
|
119
|
-
-
|
120
|
-
([#
|
121
|
-
-
|
122
|
-
([#
|
123
|
-
-
|
124
|
-
([#
|
125
|
-
-
|
126
|
-
([#
|
327
|
+
- Provide locale via separate context
|
328
|
+
([#1492](https://github.com/codevise/pageflow/pull/1492))
|
329
|
+
- Add story to test media autoplay
|
330
|
+
([#1525](https://github.com/codevise/pageflow/pull/1525))
|
331
|
+
- Use empty inline images in appearance stories
|
332
|
+
([#1518](https://github.com/codevise/pageflow/pull/1518))
|
333
|
+
- Remove unused CSS
|
334
|
+
([#1488](https://github.com/codevise/pageflow/pull/1488))
|
335
|
+
- Sync entry metadata model into entry state
|
336
|
+
([#1530](https://github.com/codevise/pageflow/pull/1530))
|
337
|
+
- Decompose Entry spec into feature specs
|
338
|
+
([#1482](https://github.com/codevise/pageflow/pull/1482))
|
339
|
+
- Add stories for appearance/layout/positions
|
340
|
+
([#1475](https://github.com/codevise/pageflow/pull/1475))
|
341
|
+
- Introduce fakeMedia test helpers
|
342
|
+
([#1460](https://github.com/codevise/pageflow/pull/1460))
|
343
|
+
- Hide Datawrapper chart in Percy snapshot
|
344
|
+
([#1448](https://github.com/codevise/pageflow/pull/1448))
|
345
|
+
- Make scrolled API respond with no content for PUT/DELETE
|
346
|
+
([#1423](https://github.com/codevise/pageflow/pull/1423))
|
347
|
+
- Ignore new records in watchCollection
|
348
|
+
([#1422](https://github.com/codevise/pageflow/pull/1422))
|
349
|
+
- Use batch action to destroy content elements
|
350
|
+
([#1421](https://github.com/codevise/pageflow/pull/1421))
|
351
|
+
- Add batch endpoint to edit content elements
|
352
|
+
([#1403](https://github.com/codevise/pageflow/pull/1403))
|
353
|
+
- Enable scrolled entry type for storybook seed
|
354
|
+
([#1419](https://github.com/codevise/pageflow/pull/1419))
|
355
|
+
- Update Babel preset to fix duplicate helpers in build output
|
356
|
+
([#1413](https://github.com/codevise/pageflow/pull/1413))
|
357
|
+
- Memoize section properties
|
358
|
+
([#1409](https://github.com/codevise/pageflow/pull/1409))
|
359
|
+
- Lazy load inline editing components in editor
|
360
|
+
([#1404](https://github.com/codevise/pageflow/pull/1404))
|
361
|
+
- Publish pageflow-scrolled storybook via Travis
|
362
|
+
([#1393](https://github.com/codevise/pageflow/pull/1393),
|
363
|
+
[#1392](https://github.com/codevise/pageflow/pull/1392))
|
364
|
+
- Decouple scrolled editor from paged frontend code
|
365
|
+
([#1385](https://github.com/codevise/pageflow/pull/1385))
|
366
|
+
- Add stories for section transitions
|
367
|
+
([#1390](https://github.com/codevise/pageflow/pull/1390))
|
368
|
+
- Add audio file reference in storybook seed tasks
|
369
|
+
([#1382](https://github.com/codevise/pageflow/pull/1382))
|
370
|
+
- Abort and retry scrolled Capybara specs when Chromedriver hangs
|
371
|
+
([#1383](https://github.com/codevise/pageflow/pull/1383))
|
372
|
+
- Seed data integration for audio files
|
373
|
+
([#1377](https://github.com/codevise/pageflow/pull/1377))
|
374
|
+
- Include scrolled content element js files in gem
|
375
|
+
([#1373](https://github.com/codevise/pageflow/pull/1373))
|
376
|
+
- Entry state integration for video files
|
377
|
+
([#1345](https://github.com/codevise/pageflow/pull/1345))
|
378
|
+
- Use files in CI/storybook seed
|
379
|
+
([#1401])(https://github.com/codevise/pageflow/pull/1401)
|
127
380
|
|
128
381
|
See
|
129
|
-
[15-
|
382
|
+
[15-2-stable branch](https://github.com/codevise/pageflow/blob/15-2-stable/CHANGELOG.md)
|
130
383
|
for previous changes.
|