pageflow 15.3.0 → 15.4.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 +158 -353
- data/README.md +2 -3
- data/app/assets/javascripts/pageflow/dist/ui.js +99 -32
- data/app/assets/javascripts/pageflow/vendor.js +0 -1
- data/app/assets/stylesheets/pageflow/editor/base.scss +3 -2
- data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +1 -1
- data/app/assets/stylesheets/pageflow/editor/select_button.scss +1 -1
- data/app/assets/stylesheets/pageflow/editor/sidebar_footer.scss +1 -1
- data/app/assets/stylesheets/pageflow/entries.scss +1 -1
- data/app/assets/stylesheets/pageflow/loading_spinner.scss +4 -1
- data/app/assets/stylesheets/pageflow/navigation_mobile.scss +4 -4
- data/app/assets/stylesheets/pageflow/themes/default/anchors.scss +1 -1
- data/app/assets/stylesheets/pageflow/themes/default/logo/variant/watermark.scss +1 -1
- data/app/assets/stylesheets/pageflow/themes/default/page/anchors.scss +1 -1
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/control_bar.scss +1 -1
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/info_box.scss +1 -1
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/shared/menu_bar.scss +2 -2
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/control_bar.scss +2 -2
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/info_box.scss +1 -1
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/quality_menu.scss +2 -2
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/waveform/wave.scss +1 -1
- data/app/assets/stylesheets/pageflow/ui/forms.scss +9 -2
- data/app/assets/stylesheets/pageflow/ui/input/extended_select_input.scss +2 -2
- data/app/models/pageflow/account_role_query.rb +1 -1
- data/app/models/pageflow/managed_user_query.rb +1 -1
- data/app/policies/pageflow/folder_policy.rb +2 -2
- data/app/policies/pageflow/membership_policy.rb +2 -2
- data/app/policies/pageflow/theming_policy.rb +2 -2
- data/app/policies/pageflow/user_policy.rb +1 -1
- data/app/views/pageflow/video_files/_video_file.json.jbuilder +8 -1
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/editor.js +103 -36
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/dist/frontend.js +42 -15
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/vendor.js +1 -0
- data/entry_types/paged/app/assets/javascripts/pageflow_paged/videojs.js +6 -0
- data/entry_types/paged/app/views/layouts/pageflow_paged/_loading_spinner_inline_script.html.erb +1 -0
- data/entry_types/paged/app/views/layouts/pageflow_paged/application.html.erb +1 -1
- data/entry_types/paged/app/views/pageflow_paged/editor/entries/_head.html.erb +2 -0
- data/entry_types/paged/lib/tasks/pageflow_paged_tasks.rake +7 -0
- data/{vendor/assets/javascripts → entry_types/paged/vendor/assets/javascripts/pageflow_paged/vendor}/dash.all.min.js +0 -0
- data/{vendor/assets/javascripts → entry_types/paged/vendor/assets/javascripts/pageflow_paged/vendor}/videojs-dash.js +0 -0
- data/{vendor/assets/javascripts → entry_types/paged/vendor/assets/javascripts/pageflow_paged/vendor}/videojs.js +0 -0
- data/entry_types/scrolled/app/controllers/pageflow_scrolled/entries_controller.rb +2 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/editor/seed_html_helper.rb +1 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/favicon_helper.rb +21 -0
- data/entry_types/scrolled/app/helpers/pageflow_scrolled/react_server_side_rendering_helper.rb +12 -5
- data/entry_types/scrolled/app/views/pageflow_scrolled/entries/show.html.erb +5 -7
- data/entry_types/scrolled/app/views/pageflow_scrolled/entry_json_seed/_theme.json.jbuilder +1 -0
- data/entry_types/scrolled/app/views/pageflow_scrolled/favicons/_entry.html.erb +10 -0
- data/entry_types/scrolled/config/locales/de.yml +655 -0
- data/entry_types/scrolled/config/locales/en.yml +522 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/install_generator.rb +5 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/android-chrome-192x192.png +0 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/android-chrome-512x512.png +0 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/apple-touch-icon.png +0 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/browserconfig.xml +9 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/favicon-16x16.png +0 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/favicon-32x32.png +0 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/favicon.ico +0 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/mstile-150x150.png +0 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/safari-pinned-tab.svg +46 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/favicons/site.webmanifest +19 -0
- data/entry_types/scrolled/lib/generators/pageflow_scrolled/install/templates/theme/unmute.mp3 +0 -0
- data/entry_types/scrolled/lib/tasks/pageflow_scrolled_tasks.rake +1 -0
- data/entry_types/scrolled/package/contentElements-editor.js +14 -1
- data/entry_types/scrolled/package/contentElements-frontend.css +1 -1
- data/entry_types/scrolled/package/contentElements-frontend.js +338 -104
- data/entry_types/scrolled/package/editor.js +594 -242
- data/entry_types/scrolled/package/frontend/{EditableText-4264c349.js → EditableText-43c50894.js} +331 -163
- data/entry_types/scrolled/package/frontend/{Wavesurfer-c3c45324.js → Wavesurfer-b88b02e0.js} +0 -3
- data/entry_types/scrolled/package/frontend/{components-cfe6a479.js → components-3ead1b4a.js} +509 -91
- data/entry_types/scrolled/package/frontend/index.css +2 -2
- data/entry_types/scrolled/package/frontend/index.js +2107 -1025
- data/entry_types/scrolled/package/package.json +15 -3
- data/lib/generators/pageflow/initializer/templates/pageflow.rb +2 -1
- data/lib/pageflow/engine.rb +0 -1
- data/lib/pageflow/themes.rb +4 -0
- data/lib/pageflow/version.rb +1 -1
- data/package/config/jest/index.js +7 -2
- data/package/config/webpack.js +1 -2
- data/package/editor.js +4 -4
- data/package/frontend.js +30 -13
- data/package/ui.js +99 -32
- metadata +25 -11
- data/app/assets/javascripts/pageflow/videojs.js +0 -6
- data/entry_types/scrolled/config/locales/new/de.yml +0 -601
- data/entry_types/scrolled/config/locales/new/en.yml +0 -507
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f03a7b8a1dfb0f883c3b74dc65373ddcdda27b3dad7a469b5f0c90dd66a4e7f
|
4
|
+
data.tar.gz: 62c18d804e95fb066746cb1cb482ad1504ca6e89107d63286c2950917a371d48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd94ad6911c8e9c0b0000f4eb294b3d0a06ebc108fa81692c284d0d2f89a53753665827110589979bd7e2a953f659bfd7e6707d35f89f5140821096742895251
|
7
|
+
data.tar.gz: 2ed57089f493c3d3c4773c503852c26473e50c0fe53e61acbbe0d01f2a6d383dc8460fcdaf06bfa349bcc5b17e3fe6960ad6791a629f09665283654037a0fd19
|
data/CHANGELOG.md
CHANGED
@@ -1,383 +1,188 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
### Version 15.
|
3
|
+
### Version 15.4.0
|
4
4
|
|
5
|
-
|
5
|
+
2021-01-08
|
6
6
|
|
7
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/15-
|
7
|
+
[Compare changes](https://github.com/codevise/pageflow/compare/15-3-stable...v15.4.0)
|
8
8
|
|
9
9
|
#### Core
|
10
10
|
|
11
|
-
##### Manual Update Step
|
12
|
-
|
13
|
-
- Entry types must now be registered in the host application
|
14
|
-
([#1556](https://github.com/codevise/pageflow/pull/1556))
|
15
|
-
|
16
|
-
Add the following line to the top of your `pageflow` initializer:
|
17
|
-
|
18
|
-
```ruby
|
19
|
-
config.plugin(PageflowPaged.plugin)
|
20
|
-
```
|
21
|
-
|
22
|
-
If you are already using the experimental Scrolled entry type, also
|
23
|
-
add:
|
24
|
-
|
25
|
-
```ruby
|
26
|
-
config.plugin(PageflowScrolled.plugin)
|
27
|
-
```
|
28
|
-
|
29
|
-
- Install and run migrations.
|
30
|
-
|
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))
|
41
|
-
|
42
11
|
##### Editor
|
43
12
|
|
44
|
-
-
|
45
|
-
([#
|
46
|
-
-
|
47
|
-
([#
|
48
|
-
- Bug fix:
|
49
|
-
([#
|
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))
|
61
|
-
|
62
|
-
##### Documentation
|
63
|
-
|
64
|
-
- Add troubleshooting section to Rails Engine Development docs
|
65
|
-
([#1397](https://github.com/codevise/pageflow/pull/1397))
|
13
|
+
- Improve editor styles
|
14
|
+
([#1629](https://github.com/codevise/pageflow/pull/1629))
|
15
|
+
- Bug fix: Wait for feature detection before booting editor
|
16
|
+
([#1573](https://github.com/codevise/pageflow/pull/1573))
|
17
|
+
- Bug fix: Work around Minicolors problem with updating swatches
|
18
|
+
([#1583](https://github.com/codevise/pageflow/pull/1583))
|
66
19
|
|
67
20
|
##### Internal
|
68
21
|
|
69
|
-
-
|
70
|
-
([#
|
71
|
-
|
72
|
-
|
73
|
-
-
|
74
|
-
([#
|
75
|
-
-
|
76
|
-
([#
|
77
|
-
-
|
78
|
-
([#
|
79
|
-
- No longer pin chrome driver in scrolled Capybara specs
|
80
|
-
([#1380](https://github.com/codevise/pageflow/pull/1380))
|
22
|
+
- String literals in SQL should only be enclosed by single quotes
|
23
|
+
([#1576](https://github.com/codevise/pageflow/pull/1576))
|
24
|
+
- Stub Paperclip by default in specs
|
25
|
+
([#1609](https://github.com/codevise/pageflow/pull/1609))
|
26
|
+
- Retry js specs of pageflow engine
|
27
|
+
([#1608](https://github.com/codevise/pageflow/pull/1608))
|
28
|
+
- Migrate Travis jobs to GitHub actions
|
29
|
+
([#1607](https://github.com/codevise/pageflow/pull/1607))
|
30
|
+
- Fix CI and abort when dummy app generation fails
|
31
|
+
([#1604](https://github.com/codevise/pageflow/pull/1604))
|
81
32
|
|
82
33
|
#### Paged Entry Type
|
83
34
|
|
84
|
-
#####
|
85
|
-
|
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
|
35
|
+
##### Editor
|
92
36
|
|
93
|
-
-
|
94
|
-
([#
|
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))
|
37
|
+
- Fix classic loading spinner preview in editor
|
38
|
+
([#1649](https://github.com/codevise/pageflow/pull/1649))
|
101
39
|
|
102
40
|
#### Scrolled Entry Type
|
103
41
|
|
104
|
-
##### Admin
|
105
|
-
|
106
|
-
- Create scrolled entries
|
107
|
-
([#1361](https://github.com/codevise/pageflow/pull/1361))
|
108
|
-
|
109
42
|
##### Published Entry
|
110
43
|
|
111
|
-
-
|
112
|
-
([#
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
-
|
122
|
-
([#
|
123
|
-
-
|
124
|
-
([#
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
- Improve
|
134
|
-
([#
|
135
|
-
|
136
|
-
|
137
|
-
-
|
138
|
-
([#
|
139
|
-
|
140
|
-
|
141
|
-
-
|
142
|
-
([#
|
143
|
-
-
|
144
|
-
([#
|
145
|
-
[#
|
146
|
-
-
|
147
|
-
([#
|
148
|
-
-
|
149
|
-
([#
|
150
|
-
- Improve
|
151
|
-
([#
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
44
|
+
- Chapter deep linking
|
45
|
+
([#1637](https://github.com/codevise/pageflow/pull/1637))
|
46
|
+
- Lazy load DASH code for Scrolled
|
47
|
+
([#1635](https://github.com/codevise/pageflow/pull/1635))
|
48
|
+
- Deduplicate core-js in yarn.lock
|
49
|
+
([#1634](https://github.com/codevise/pageflow/pull/1634))
|
50
|
+
- Do not move backdrop when navigation is scrolled out of view
|
51
|
+
([#1632](https://github.com/codevise/pageflow/pull/1632))
|
52
|
+
- Navigation bar improvements
|
53
|
+
([#1631](https://github.com/codevise/pageflow/pull/1631))
|
54
|
+
- Do not fall back to file default motif area
|
55
|
+
([#1628](https://github.com/codevise/pageflow/pull/1628))
|
56
|
+
- Improve poster rendering
|
57
|
+
([#1621](https://github.com/codevise/pageflow/pull/1621))
|
58
|
+
- Optimize frontend rendering
|
59
|
+
([#1620](https://github.com/codevise/pageflow/pull/1620))
|
60
|
+
- Do not show scroll position based backdrop shadow initially
|
61
|
+
([#1619](https://github.com/codevise/pageflow/pull/1619))
|
62
|
+
- Prevent state update on unmounted component
|
63
|
+
([#1618](https://github.com/codevise/pageflow/pull/1618))
|
64
|
+
- Do not keep navigation open when focus is within
|
65
|
+
([#1617](https://github.com/codevise/pageflow/pull/1617))
|
66
|
+
- Improve unmute sequence
|
67
|
+
([#1615](https://github.com/codevise/pageflow/pull/1615))
|
68
|
+
- Show logo focus outline
|
69
|
+
([#1613](https://github.com/codevise/pageflow/pull/1613))
|
70
|
+
- Open logo link in new tab
|
71
|
+
([#1612](https://github.com/codevise/pageflow/pull/1612))
|
72
|
+
- Improve handling of untitled chapters
|
73
|
+
([#1610](https://github.com/codevise/pageflow/pull/1610))
|
74
|
+
- Logo link through theme option
|
75
|
+
([#1603](https://github.com/codevise/pageflow/pull/1603))
|
76
|
+
- Improve player controls
|
77
|
+
([#1602](https://github.com/codevise/pageflow/pull/1602),
|
78
|
+
[#1586](https://github.com/codevise/pageflow/pull/1586))
|
79
|
+
- change Email to Mail
|
80
|
+
([#1601](https://github.com/codevise/pageflow/pull/1601))
|
81
|
+
- Prevent parallel playback of media elements
|
82
|
+
([#1599](https://github.com/codevise/pageflow/pull/1599))
|
83
|
+
- Improve navigation tooltips
|
84
|
+
([#1597](https://github.com/codevise/pageflow/pull/1597))
|
85
|
+
- Give backdrops default background color
|
86
|
+
([#1594](https://github.com/codevise/pageflow/pull/1594))
|
87
|
+
- Replace hard coded title and meta tags
|
88
|
+
([#1593](https://github.com/codevise/pageflow/pull/1593))
|
89
|
+
- Prevent resuming atmo of other section
|
90
|
+
([#1591](https://github.com/codevise/pageflow/pull/1591))
|
91
|
+
- Add toggle mute button to navigation
|
92
|
+
([#1589](https://github.com/codevise/pageflow/pull/1589))
|
93
|
+
- Implements skip link for navigation
|
94
|
+
([#1585](https://github.com/codevise/pageflow/pull/1585))
|
95
|
+
- Position backdrop image/video according to motif area
|
96
|
+
([#1582](https://github.com/codevise/pageflow/pull/1582))
|
97
|
+
- Add motif area support for background videos
|
98
|
+
([#1580](https://github.com/codevise/pageflow/pull/1580))
|
99
|
+
- Require user to opt in to see external embeds
|
100
|
+
([#1577](https://github.com/codevise/pageflow/pull/1577))
|
101
|
+
- Renders alt text for media
|
102
|
+
([#1574](https://github.com/codevise/pageflow/pull/1574))
|
103
|
+
- Use theme specific favicons
|
104
|
+
([#1569](https://github.com/codevise/pageflow/pull/1569))
|
105
|
+
- Bug fix: Don't remove media tag when unallocating player in IE 11
|
106
|
+
([#1648](https://github.com/codevise/pageflow/pull/1648))
|
107
|
+
- Allow disabling video or dash via browser feature flag
|
108
|
+
([#1647](https://github.com/codevise/pageflow/pull/1647))
|
109
|
+
- Bug fix: Ensure muted inline media pauses on deactivation
|
110
|
+
([#1646](https://github.com/codevise/pageflow/pull/1646))
|
111
|
+
- Bug fix: Fix for unstable navigation bar on Safari
|
112
|
+
([#1642](https://github.com/codevise/pageflow/pull/1642))
|
113
|
+
- Bug fix: Invisible share links should not be clickable
|
114
|
+
([#1641](https://github.com/codevise/pageflow/pull/1641))
|
115
|
+
- Bug fix: Play unmute sound on iOS
|
116
|
+
([#1640](https://github.com/codevise/pageflow/pull/1640))
|
117
|
+
- Bug fix: Fix scroll flickering on Android Chrome
|
118
|
+
([#1639](https://github.com/codevise/pageflow/pull/1639))
|
119
|
+
- Bug fix: Do not request new player when object position changes
|
120
|
+
([#1638](https://github.com/codevise/pageflow/pull/1638))
|
121
|
+
- Bug fix: Fix "SourceBuffer removed from parent media source" error
|
122
|
+
([#1636](https://github.com/codevise/pageflow/pull/1636))
|
123
|
+
- Bug fix: Prevent overlapping floated elements in centered layout
|
124
|
+
([#1590](https://github.com/codevise/pageflow/pull/1590))
|
125
|
+
- Bug fix: Fix progress indicator in scrolled navigation bar
|
126
|
+
([#1571](https://github.com/codevise/pageflow/pull/1571))
|
167
127
|
|
168
128
|
##### Content Elements
|
169
129
|
|
170
|
-
-
|
171
|
-
([#
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
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)
|
130
|
+
- Fix external links layout narrow screen sizes
|
131
|
+
([#1598](https://github.com/codevise/pageflow/pull/1598))
|
132
|
+
- Improve Datawrapper chart display
|
133
|
+
([#1611](https://github.com/codevise/pageflow/pull/1611))
|
134
|
+
- Never hide audio controls
|
135
|
+
([#1616](https://github.com/codevise/pageflow/pull/1616))
|
136
|
+
- Fixed before after height issue
|
137
|
+
([#1606](https://github.com/codevise/pageflow/pull/1606))
|
138
|
+
- Heading word-wrap and hyphen css
|
139
|
+
([#1605](https://github.com/codevise/pageflow/pull/1605))
|
140
|
+
- Fade out audio element when deactivating
|
141
|
+
([#1592](https://github.com/codevise/pageflow/pull/1592))
|
142
|
+
- Add caption and position options to chart element
|
143
|
+
([#1587](https://github.com/codevise/pageflow/pull/1587))
|
144
|
+
- Bug fix: BeforeAfter safari animation fix
|
145
|
+
([#1623](https://github.com/codevise/pageflow/pull/1623))
|
229
146
|
|
230
147
|
##### Editor
|
231
148
|
|
232
|
-
-
|
233
|
-
([#
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
-
|
241
|
-
([#
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
-
|
254
|
-
([#
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
-
|
259
|
-
([#
|
260
|
-
-
|
261
|
-
([#
|
262
|
-
-
|
263
|
-
([#
|
264
|
-
-
|
265
|
-
([#
|
266
|
-
-
|
267
|
-
([#
|
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))
|
299
|
-
|
300
|
-
##### JavaScript API
|
301
|
-
|
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))
|
324
|
-
|
325
|
-
##### Internal
|
326
|
-
|
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)
|
149
|
+
- Ordering content elements
|
150
|
+
([#1596](https://github.com/codevise/pageflow/pull/1596))
|
151
|
+
- Preserve scroll position when toggling phone preview
|
152
|
+
([#1614](https://github.com/codevise/pageflow/pull/1614))
|
153
|
+
- Show section settings directly when section is selected
|
154
|
+
([#1626](https://github.com/codevise/pageflow/pull/1626))
|
155
|
+
- Make motif area selection snap to grid
|
156
|
+
([#1578](https://github.com/codevise/pageflow/pull/1578))
|
157
|
+
- Extend german help texts
|
158
|
+
([#1625](https://github.com/codevise/pageflow/pull/1625))
|
159
|
+
- Add options for gradient opacity/motif area exposure
|
160
|
+
([#1624](https://github.com/codevise/pageflow/pull/1624))
|
161
|
+
- Add missing translation
|
162
|
+
([#1600](https://github.com/codevise/pageflow/pull/1600))
|
163
|
+
- Bug fix: Apply default configuration when adding to end of section
|
164
|
+
([#1630](https://github.com/codevise/pageflow/pull/1630))
|
165
|
+
- Bug fix: Fix error when merging empty text blocks
|
166
|
+
([#1588](https://github.com/codevise/pageflow/pull/1588))
|
167
|
+
|
168
|
+
###### JavaScript API
|
169
|
+
|
170
|
+
- Split isPrepared state into shouldLoad and shouldPrepare
|
171
|
+
([#1622](https://github.com/codevise/pageflow/pull/1622))
|
172
|
+
|
173
|
+
###### Internal
|
174
|
+
|
175
|
+
- Fix Jest warnings caused by Backbone XHR
|
176
|
+
([#1579](https://github.com/codevise/pageflow/pull/1579))
|
177
|
+
- Remove renderer memoization in development
|
178
|
+
([#1584](https://github.com/codevise/pageflow/pull/1584))
|
179
|
+
- Import scrolled translations into LocaleApp
|
180
|
+
([#1627](https://github.com/codevise/pageflow/pull/1627))
|
181
|
+
- Navigation bar Storybook story
|
182
|
+
([#1557](https://github.com/codevise/pageflow/pull/1557))
|
183
|
+
- Fix storybook documentation
|
184
|
+
([#1540](https://github.com/codevise/pageflow/pull/1540))
|
380
185
|
|
381
186
|
See
|
382
|
-
[15-
|
187
|
+
[15-3-stable branch](https://github.com/codevise/pageflow/blob/15-3-stable/CHANGELOG.md)
|
383
188
|
for previous changes.
|