pageflow 0.11.4 → 12.0.0.rc1
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 +224 -1207
- data/README.md +7 -3
- data/Rakefile +2 -0
- data/admins/pageflow/accounts.rb +27 -8
- data/admins/pageflow/entry.rb +130 -47
- data/admins/pageflow/folder.rb +28 -17
- data/admins/pageflow/membership.rb +58 -6
- data/admins/pageflow/user.rb +105 -98
- data/app/assets/fonts/pageflow/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/fontawesome-webfont.svg +644 -463
- data/app/assets/fonts/pageflow/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/fontawesome-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.svg +2864 -696
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.svg +2572 -613
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.svg +2977 -779
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.woff +0 -0
- data/app/assets/javascripts/pageflow/admin/entries.js +21 -3
- data/app/assets/javascripts/pageflow/audio.js +30 -15
- data/app/assets/javascripts/pageflow/audio/multi_player.js +12 -1
- data/app/assets/javascripts/pageflow/audio_player.js +15 -1
- data/app/assets/javascripts/pageflow/audio_player/rewind_method.js +3 -1
- data/app/assets/javascripts/pageflow/base.js +4 -1
- data/app/assets/javascripts/pageflow/browser.js +3 -0
- data/app/assets/javascripts/pageflow/browser/autoplay_support.js +3 -0
- data/app/assets/javascripts/pageflow/browser/facebook.js +1 -2
- data/app/assets/javascripts/pageflow/browser/ios_platform.js +5 -0
- data/app/assets/javascripts/pageflow/browser/video.js +4 -0
- data/app/assets/javascripts/pageflow/components.js +7 -0
- data/app/assets/javascripts/pageflow/cookies.js +1 -4
- data/app/assets/javascripts/pageflow/dist/react.js +4724 -5808
- data/app/assets/javascripts/pageflow/editor/api.js +201 -161
- data/app/assets/javascripts/pageflow/editor/api/errors.js +80 -0
- data/app/assets/javascripts/pageflow/editor/api/failure.js +9 -0
- data/app/assets/javascripts/pageflow/editor/api/failures.js +25 -2
- data/app/assets/javascripts/pageflow/editor/api/file_type.js +42 -3
- data/app/assets/javascripts/pageflow/editor/api/file_types.js +75 -46
- data/app/assets/javascripts/pageflow/editor/base.js +8 -0
- data/app/assets/javascripts/pageflow/editor/collections/file_types_collection.js +37 -0
- data/app/assets/javascripts/pageflow/editor/collections/files_collection.js +32 -1
- data/app/assets/javascripts/pageflow/editor/collections/mixins/ordered_collection.js +1 -1
- data/app/assets/javascripts/pageflow/editor/collections/multi_collection.js +4 -6
- data/app/assets/javascripts/pageflow/editor/collections/nested_files_collection.js +27 -0
- data/app/assets/javascripts/pageflow/editor/collections/pages_collection.js +21 -1
- data/app/assets/javascripts/pageflow/editor/collections/subset_collection.js +8 -2
- data/app/assets/javascripts/pageflow/editor/controllers/sidebar_controller.js +3 -2
- data/app/assets/javascripts/pageflow/editor/initializers/error_listener.js +10 -5
- data/app/assets/javascripts/pageflow/editor/initializers/routing.js +3 -1
- data/app/assets/javascripts/pageflow/editor/initializers/setup_collections.js +3 -0
- data/app/assets/javascripts/pageflow/editor/initializers/setup_file_types.js +136 -6
- data/app/assets/javascripts/pageflow/editor/initializers/setup_file_uploader.js +10 -0
- data/app/assets/javascripts/pageflow/editor/initializers/setup_hotkeys.js +5 -7
- data/app/assets/javascripts/pageflow/editor/initializers/stylesheet_reloading.js +1 -1
- data/app/assets/javascripts/pageflow/editor/models/configuration.js +1 -0
- data/app/assets/javascripts/pageflow/editor/models/entry.js +34 -26
- data/app/assets/javascripts/pageflow/editor/models/file_configuration.js +10 -0
- data/app/assets/javascripts/pageflow/editor/models/file_reuse.js +23 -0
- data/app/assets/javascripts/pageflow/editor/models/file_uploader.js +69 -0
- data/app/assets/javascripts/pageflow/editor/models/mixins/retryable.js +1 -1
- data/app/assets/javascripts/pageflow/editor/models/page.js +13 -0
- data/app/assets/javascripts/pageflow/editor/models/text_track_file.js +48 -0
- data/app/assets/javascripts/pageflow/editor/models/uploaded_file.js +62 -11
- data/app/assets/javascripts/pageflow/editor/routers/sidebar_router.js +1 -0
- data/app/assets/javascripts/pageflow/editor/templates/confirm_upload.jst.ejs +18 -0
- data/app/assets/javascripts/pageflow/editor/templates/delete_row_table_cell.jst.ejs +1 -0
- data/app/assets/javascripts/pageflow/editor/templates/drop_down_button.jst.ejs +0 -2
- data/app/assets/javascripts/pageflow/editor/templates/drop_down_button_item.jst.ejs +1 -0
- data/app/assets/javascripts/pageflow/editor/templates/edit_entry.jst.ejs +3 -1
- data/app/assets/javascripts/pageflow/editor/templates/edit_file.jst.ejs +0 -0
- data/app/assets/javascripts/pageflow/editor/templates/file_item.jst.ejs +1 -6
- data/app/assets/javascripts/pageflow/editor/templates/file_meta_data_item_value_view.jst.ejs +3 -0
- data/app/assets/javascripts/pageflow/editor/templates/file_settings_dialog.jst.ejs +10 -0
- data/app/assets/javascripts/pageflow/editor/templates/files_blank_slate.jst.ejs +1 -1
- data/app/assets/javascripts/pageflow/editor/templates/filtered_files.jst.ejs +10 -0
- data/app/assets/javascripts/pageflow/{ui → editor}/templates/inputs/file_input.jst.ejs +1 -1
- data/app/assets/javascripts/pageflow/editor/templates/inputs/reference.jst.ejs +2 -2
- data/app/assets/javascripts/pageflow/editor/templates/nested_files.jst.ejs +1 -0
- data/app/assets/javascripts/pageflow/editor/templates/table_cell.jst.ejs +0 -0
- data/app/assets/javascripts/pageflow/editor/templates/text_tracks.jst.ejs +13 -0
- data/app/assets/javascripts/pageflow/editor/templates/uploadable_files.jst.ejs +1 -0
- data/app/assets/javascripts/pageflow/editor/utils/form_data_utils.js +19 -0
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/audio.js +5 -2
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/background_image.js +3 -2
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/background.js +35 -0
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/options.js +7 -9
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/video.js +6 -5
- data/app/assets/javascripts/pageflow/editor/views/confirm_upload_view.js +69 -0
- data/app/assets/javascripts/pageflow/editor/views/confirmable_file_item_view.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/drop_down_button_item_list_view.js +9 -0
- data/app/assets/javascripts/pageflow/editor/views/drop_down_button_item_view.js +14 -1
- data/app/assets/javascripts/pageflow/editor/views/drop_down_button_view.js +51 -20
- data/app/assets/javascripts/pageflow/editor/views/edit_entry_view.js +21 -2
- data/app/assets/javascripts/pageflow/editor/views/edit_file_view.js +52 -0
- data/app/assets/javascripts/pageflow/editor/views/edit_storyline_view.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/entry_preview_view.js +15 -7
- data/app/assets/javascripts/pageflow/editor/views/file_item_view.js +33 -22
- data/app/assets/javascripts/pageflow/editor/views/file_meta_data_item_value_view.js +49 -0
- data/app/assets/javascripts/pageflow/editor/views/file_meta_data_item_view.js +16 -5
- data/app/assets/javascripts/pageflow/editor/views/file_settings_dialog_view.js +31 -0
- data/app/assets/javascripts/pageflow/editor/views/files_explorer_view.js +6 -7
- data/app/assets/javascripts/pageflow/editor/views/files_view.js +13 -14
- data/app/assets/javascripts/pageflow/editor/views/filtered_files_view.js +75 -0
- data/app/assets/javascripts/pageflow/editor/views/help_view.js +3 -0
- data/app/assets/javascripts/pageflow/editor/views/inputs/file_input_view.js +217 -0
- data/app/assets/javascripts/pageflow/editor/views/inputs/page_link_input_view.js +6 -0
- data/app/assets/javascripts/pageflow/editor/views/inputs/reference_input_view.js +13 -2
- data/app/assets/javascripts/pageflow/editor/views/list_view.js +24 -14
- data/app/assets/javascripts/pageflow/editor/views/model_thumbnail_view.js +4 -1
- data/app/assets/javascripts/pageflow/editor/views/nested_files_view.js +94 -0
- data/app/assets/javascripts/pageflow/editor/views/page_preview_view.js +7 -2
- data/app/assets/javascripts/pageflow/editor/views/text_file_meta_data_item_value_view.js +25 -0
- data/app/assets/javascripts/pageflow/editor/views/text_tracks_file_meta_data_item_value_view.js +12 -0
- data/app/assets/javascripts/pageflow/editor/views/text_tracks_view.js +65 -0
- data/app/assets/javascripts/pageflow/editor/views/uploadable_files_view.js +56 -0
- data/app/assets/javascripts/pageflow/editor/views/uploader_view.js +13 -10
- data/app/assets/javascripts/pageflow/features.js +8 -12
- data/app/assets/javascripts/pageflow/focus_outline.js +2 -0
- data/app/assets/javascripts/pageflow/media_player/volume_binding.js +2 -0
- data/app/assets/javascripts/pageflow/media_player/volume_fading.js +6 -0
- data/app/assets/javascripts/pageflow/page_type.js +0 -1
- data/app/assets/javascripts/pageflow/phone_landscape_fullscreen.js +34 -0
- data/app/assets/javascripts/pageflow/react.js +4 -0
- data/app/assets/javascripts/pageflow/ready.js +3 -0
- data/app/assets/javascripts/pageflow/seed_entry_data.js +4 -1
- data/app/assets/javascripts/pageflow/slideshow.js +1 -0
- data/app/assets/javascripts/pageflow/slideshow/adjacent_preparer.js +7 -5
- data/app/assets/javascripts/pageflow/slideshow/atmo.js +3 -3
- data/app/assets/javascripts/pageflow/slideshow/hidden_text_indicator_widget.js +4 -2
- data/app/assets/javascripts/pageflow/slideshow/hide_text.js +8 -4
- data/app/assets/javascripts/pageflow/slideshow/lazy_page_widget.js +5 -0
- data/app/assets/javascripts/pageflow/slideshow/scroller_widget.js +11 -18
- data/app/assets/javascripts/pageflow/ui.js +6 -0
- data/app/assets/javascripts/pageflow/ui/templates/inputs/url_display.jst.ejs +7 -0
- data/app/assets/javascripts/pageflow/ui/templates/table.jst.ejs +7 -0
- data/app/assets/javascripts/pageflow/ui/templates/table_blank_slate.jst.ejs +3 -0
- data/app/assets/javascripts/pageflow/ui/utils/i18n_utils.js +97 -2
- data/app/assets/javascripts/pageflow/ui/views/collection_view.js +8 -1
- data/app/assets/javascripts/pageflow/ui/views/inputs/check_box_input_view.js +12 -1
- data/app/assets/javascripts/pageflow/ui/views/inputs/proxy_url_input_view.js +51 -5
- data/app/assets/javascripts/pageflow/ui/views/inputs/select_input_view.js +80 -2
- data/app/assets/javascripts/pageflow/ui/views/inputs/slider_input_view.js +8 -1
- data/app/assets/javascripts/pageflow/ui/views/inputs/text_area_input_view.js +17 -1
- data/app/assets/javascripts/pageflow/ui/views/inputs/text_input_view.js +47 -4
- data/app/assets/javascripts/pageflow/ui/views/inputs/url_display_view.js +42 -0
- data/app/assets/javascripts/pageflow/ui/views/inputs/url_input_view.js +20 -2
- data/app/assets/javascripts/pageflow/ui/views/mixins/input_view.js +74 -46
- data/app/assets/javascripts/pageflow/ui/views/table_cells/delete_row_table_cell_view.js +63 -0
- data/app/assets/javascripts/pageflow/ui/views/table_cells/enum_table_cell_view.js +26 -0
- data/app/assets/javascripts/pageflow/ui/views/table_cells/icon_table_cell_view.js +40 -0
- data/app/assets/javascripts/pageflow/ui/views/table_cells/presence_table_cell_view.js +31 -0
- data/app/assets/javascripts/pageflow/ui/views/table_cells/table_cell_view.js +101 -0
- data/app/assets/javascripts/pageflow/ui/views/table_cells/table_header_cell_view.js +10 -0
- data/app/assets/javascripts/pageflow/ui/views/table_cells/text_table_cell_view.js +46 -0
- data/app/assets/javascripts/pageflow/ui/views/table_row_view.js +47 -0
- data/app/assets/javascripts/pageflow/ui/views/table_view.js +47 -0
- data/app/assets/javascripts/pageflow/video_player.js +9 -5
- data/app/assets/javascripts/pageflow/video_player/buffer_underrun_waiting.js +15 -13
- data/app/assets/javascripts/pageflow/video_player/cue_settings_methods.js +33 -0
- data/app/assets/javascripts/pageflow/video_player/dash.js +3 -0
- data/app/assets/javascripts/pageflow/video_player/filter_sources.js +1 -1
- data/app/assets/javascripts/pageflow/video_player/lazy.js +3 -9
- data/app/assets/javascripts/pageflow/video_player/prebuffering.js +11 -2
- data/app/assets/javascripts/pageflow/video_player/use_slim_controls_during_phone_playback.js +16 -0
- data/app/assets/javascripts/pageflow/videojs.js +6 -0
- data/app/assets/javascripts/pageflow/widgets.js +41 -7
- data/app/assets/stylesheets/pageflow/admin.scss +7 -4
- data/app/assets/stylesheets/pageflow/admin/{entries/user_badge_list.scss → badge_list.scss} +6 -9
- data/app/assets/stylesheets/pageflow/admin/embed_code.scss +13 -0
- data/app/assets/stylesheets/pageflow/admin/entries.scss +1 -2
- data/app/assets/stylesheets/pageflow/admin/hint.scss +20 -0
- data/app/assets/stylesheets/pageflow/admin/tooltip_bubble.scss +34 -0
- data/app/assets/stylesheets/pageflow/editor/base.scss +4 -4
- data/app/assets/stylesheets/pageflow/editor/confirm_upload.scss +66 -0
- data/app/assets/stylesheets/pageflow/editor/dialogs.scss +9 -1
- data/app/assets/stylesheets/pageflow/editor/drop_down_button.scss +56 -20
- data/app/assets/stylesheets/pageflow/editor/file_meta_data.scss +26 -6
- data/app/assets/stylesheets/pageflow/editor/file_settings_dialog.scss +32 -0
- data/app/assets/stylesheets/pageflow/editor/files.scss +5 -0
- data/app/assets/stylesheets/pageflow/editor/filtered_files.scss +25 -0
- data/app/assets/stylesheets/pageflow/editor/inputs.scss +2 -1
- data/app/assets/stylesheets/pageflow/editor/inputs/file_input.scss +65 -0
- data/app/assets/stylesheets/pageflow/editor/inputs/reference.scss +2 -2
- data/app/assets/stylesheets/pageflow/editor/text_tracks.scss +39 -0
- data/app/assets/stylesheets/pageflow/entries.scss +1 -0
- data/app/assets/stylesheets/pageflow/mixins/buttons.scss +77 -5
- data/app/assets/stylesheets/pageflow/mixins/icons/fontawesome.scss +3 -1
- data/app/assets/stylesheets/pageflow/page_types.scss +0 -4
- data/app/assets/stylesheets/pageflow/page_types/video.scss +5 -1
- data/app/assets/stylesheets/pageflow/page_types/video/content_hiding.scss +1 -0
- data/app/assets/stylesheets/pageflow/themes/default/base.scss +1 -0
- data/app/assets/stylesheets/pageflow/themes/default/built_in_page_types.scss +0 -2
- data/app/assets/stylesheets/pageflow/themes/default/definitions.scss +1 -0
- data/app/assets/stylesheets/pageflow/themes/default/loading_spinner.scss +31 -12
- data/app/assets/stylesheets/pageflow/themes/default/logo.scss +9 -1
- data/app/assets/stylesheets/pageflow/themes/default/logo/variant/background_image.scss +8 -2
- data/app/assets/stylesheets/pageflow/themes/default/logo/variant/watermark.scss +21 -0
- data/app/assets/stylesheets/pageflow/themes/default/mixins/cue_margins.scss +43 -0
- data/app/assets/stylesheets/pageflow/themes/default/mixins/indicator_typography.scss +7 -3
- data/app/assets/stylesheets/pageflow/themes/default/page.scss +20 -2
- data/app/assets/stylesheets/pageflow/themes/default/player_controls.scss +4 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic.scss +4 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/container.scss +8 -6
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/control_bar.scss +18 -3
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/cue_margins.scss +1 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/icons/custom.scss +14 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/icons/icon_font.scss +4 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/icons/sprite.scss +4 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/info_box.scss +2 -2
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/classic/menu_bar.scss +5 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/shared/menu_bar.scss +121 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim.scss +2 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/container.scss +2 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/control_bar.scss +74 -12
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/cue_margins.scss +3 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/info_box.scss +31 -5
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/menu_bar.scss +13 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/slim/quality_menu.scss +116 -0
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/vjs_mapping.scss +13 -3
- data/app/assets/stylesheets/pageflow/themes/default/player_controls/widget_margins.scss +8 -3
- data/app/assets/stylesheets/pageflow/themes/default/text_track_cues.scss +25 -0
- data/app/assets/stylesheets/pageflow/themes/default/variables/widgets.scss +2 -2
- data/app/assets/stylesheets/pageflow/themes/default/video_player/vjs_base.scss +122 -79
- data/app/assets/stylesheets/pageflow/themes/default/video_wrapper.scss +16 -7
- data/app/assets/stylesheets/pageflow/ui.scss +5 -1
- data/app/assets/stylesheets/pageflow/ui/forms.scss +5 -58
- data/app/assets/stylesheets/pageflow/ui/table_cells/delete_row_table_cell.scss +7 -0
- data/app/assets/stylesheets/pageflow/ui/table_cells/icon_table_cell.scss +16 -0
- data/app/assets/stylesheets/pageflow/ui/table_cells/presence_table_cell.scss +8 -0
- data/app/assets/stylesheets/pageflow/ui/table_view.scss +33 -0
- data/app/assets/stylesheets/pageflow/ui/tooltip.scss +1 -1
- data/app/controllers/pageflow/editor/encoding_confirmations_controller.rb +3 -3
- data/app/controllers/pageflow/editor/entry_publications_controller.rb +3 -3
- data/app/controllers/pageflow/editor/files_controller.rb +72 -14
- data/app/controllers/pageflow/editor/widgets_controller.rb +1 -1
- data/app/controllers/pageflow/entries_controller.rb +12 -2
- data/app/controllers/pageflow/files_controller.rb +1 -1
- data/app/helpers/pageflow/admin/entries_helper.rb +17 -0
- data/app/helpers/pageflow/admin/form_helper.rb +1 -1
- data/app/helpers/pageflow/admin/memberships_helper.rb +117 -13
- data/app/helpers/pageflow/common_entry_seed_helper.rb +36 -5
- data/app/helpers/pageflow/embed_code_helper.rb +32 -0
- data/app/helpers/pageflow/entries_helper.rb +1 -1
- data/app/helpers/pageflow/entry_json_seed_helper.rb +6 -16
- data/app/helpers/pageflow/files_helper.rb +5 -2
- data/app/helpers/pageflow/folders_helper.rb +26 -2
- data/app/helpers/pageflow/page_background_asset_helper.rb +8 -0
- data/app/helpers/pageflow/quota_helper.rb +1 -1
- data/app/helpers/pageflow/video_files_helper.rb +0 -5
- data/app/jobs/pageflow/poll_zencoder_job.rb +1 -1
- data/app/jobs/pageflow/process_file_job.rb +18 -0
- data/app/mailers/pageflow/user_mailer.rb +4 -2
- data/app/models/concerns/pageflow/hosted_file.rb +9 -0
- data/app/models/concerns/pageflow/output_source.rb +60 -0
- data/app/models/concerns/pageflow/uploaded_file.rb +33 -5
- data/app/models/pageflow/account.rb +3 -1
- data/app/models/pageflow/audio_file_url_templates.rb +21 -0
- data/app/models/pageflow/draft_entry.rb +19 -9
- data/app/models/pageflow/entry.rb +2 -1
- data/app/models/pageflow/entry_duplicate.rb +2 -2
- data/app/models/pageflow/entry_role_query.rb +81 -0
- data/app/models/pageflow/file_reuse.rb +25 -0
- data/app/models/pageflow/file_usage.rb +7 -1
- data/app/models/pageflow/image_file.rb +7 -1
- data/app/models/pageflow/image_file_url_templates.rb +19 -0
- data/app/models/pageflow/invited_user.rb +2 -0
- data/app/models/pageflow/membership.rb +46 -3
- data/app/models/pageflow/published_entry.rb +2 -2
- data/app/models/pageflow/revision.rb +16 -5
- data/app/models/pageflow/roles.rb +36 -0
- data/app/models/pageflow/text_track_file.rb +45 -0
- data/app/models/pageflow/text_track_file_url_templates.rb +16 -0
- data/app/models/pageflow/thumbnail_file_resolver.rb +22 -2
- data/app/models/pageflow/url_template.rb +13 -0
- data/app/models/pageflow/used_file.rb +21 -0
- data/app/models/pageflow/video_file.rb +72 -27
- data/app/models/pageflow/video_file_url_templates.rb +34 -0
- data/app/policies/pageflow/account_policy.rb +145 -0
- data/app/policies/pageflow/admin/admin_only_tab_policy.rb +16 -0
- data/app/policies/pageflow/admin/entry_tab_policy.rb +25 -0
- data/app/policies/pageflow/application_policy.rb +11 -0
- data/app/policies/pageflow/entry_policy.rb +138 -0
- data/app/policies/pageflow/file_policy.rb +42 -0
- data/app/policies/pageflow/folder_policy.rb +54 -0
- data/app/policies/pageflow/membership_policy.rb +105 -0
- data/app/policies/pageflow/theming_policy.rb +57 -0
- data/app/policies/pageflow/user_policy.rb +69 -0
- data/app/state_machines/pageflow/encoded_file_state_machine.rb +4 -0
- data/app/state_machines/pageflow/image_file_state_machine.rb +5 -1
- data/app/views/admin/entries/_attributes_table.html.arb +21 -2
- data/app/views/admin/entries/_links.html.arb +1 -1
- data/app/views/admin/memberships/_entity_account_input.html.erb +5 -0
- data/app/views/admin/memberships/_entity_entry_input.html.erb +5 -0
- data/app/views/admin/memberships/_form.html.erb +16 -5
- data/app/views/admin/memberships/_role_hint.html.arb +2 -0
- data/app/views/admin/users/_form.html.erb +29 -20
- data/app/views/components/pageflow/admin/add_membership_button_if_needed.rb +62 -0
- data/app/views/components/pageflow/admin/embed_code_field.rb +15 -0
- data/app/views/components/pageflow/admin/entry_user_badge_list.rb +15 -7
- data/app/views/components/pageflow/admin/grouped_folder_list.rb +20 -16
- data/app/views/components/pageflow/admin/members_tab.rb +22 -11
- data/app/views/components/pageflow/admin/membership_role_with_tooltip.rb +21 -0
- data/app/views/components/pageflow/admin/tabs_view.rb +13 -13
- data/app/views/components/pageflow/admin/user_account_badge_list.rb +43 -0
- data/app/views/components/pageflow/admin/user_accounts_tab.rb +46 -0
- data/app/views/components/pageflow/admin/user_entries_tab.rb +50 -0
- data/app/views/components/pageflow/admin/users_tab.rb +32 -4
- data/app/views/layouts/pageflow/application.html.erb +3 -2
- data/app/views/pageflow/config/_editor_seeds.json.jbuilder +15 -2
- data/app/views/pageflow/editor/entries/_entry.json.jbuilder +1 -0
- data/app/views/pageflow/editor/files/_file.json.jbuilder +10 -2
- data/app/views/pageflow/entries/show.css.erb +4 -11
- data/app/views/pageflow/entries/show.json.jbuilder +1 -1
- data/app/views/pageflow/entry_json_seed/_entry.json.jbuilder +19 -0
- data/app/views/pageflow/file_types/_thumbnails.css.erb +1 -1
- data/app/views/pageflow/files/_file.json.jbuilder +12 -0
- data/app/views/pageflow/page_background_asset/_element.html.erb +3 -0
- data/app/views/pageflow/page_types/_page_type.json.jbuilder +7 -0
- data/app/views/pageflow/react/_widget.html.erb +1 -0
- data/app/views/pageflow/react/page.html.erb +6 -0
- data/app/views/pageflow/video_files/_video_file.json.jbuilder +2 -0
- data/config/initializers/admin_resource_tabs.rb +8 -1
- data/config/initializers/features.rb +1 -4
- data/config/initializers/help_entries.rb +2 -1
- data/config/initializers/paperclip.rb +4 -0
- data/config/initializers/zencoder.rb +5 -2
- data/config/locales/de.yml +370 -108
- data/config/locales/en.yml +333 -83
- data/config/routes.rb +18 -10
- data/db/migrate/20150825133449_update_audio_loop_pages_to_use_atmo.rb +24 -0
- data/db/migrate/20160304072911_rename_membership_entry_and_make_polymorphic.rb +19 -0
- data/db/migrate/20160304151327_add_role_to_membership.rb +19 -0
- data/db/migrate/20160504093145_replace_role_and_account_on_user.rb +42 -0
- data/db/migrate/20160531152500_update_users_count.rb +27 -0
- data/db/migrate/20160707125400_add_output_presences_to_video_files.rb +5 -0
- data/db/migrate/20160824115000_add_parent_file_to_video_files.rb +8 -0
- data/db/migrate/20160824115100_add_parent_file_to_audio_files.rb +8 -0
- data/db/migrate/20160824115200_add_parent_file_to_image_files.rb +8 -0
- data/db/migrate/20160929102700_add_configuration_to_files.rb +7 -0
- data/db/migrate/20161007144500_add_text_track_files.rb +31 -0
- data/db/migrate/20161216175734_move_configuration_from_file_to_file_usage.rb +27 -0
- data/db/migrate/20161230144429_add_processed_attachment_to_text_track_files.rb +8 -0
- data/db/migrate/20170222124848_update_video_file_output_presences.rb +12 -0
- data/db/migrate/20170421112300_turn_background_video_pages_into_background_image_pages.rb +22 -0
- data/lib/generators/pageflow/assets/assets_generator.rb +2 -0
- data/lib/generators/pageflow/assets/templates/components.js +4 -0
- data/lib/generators/pageflow/initializer/templates/pageflow.rb +23 -20
- data/lib/generators/pageflow/seeds/templates/seeds.rb +81 -15
- data/lib/pageflow.rb +8 -0
- data/lib/pageflow/ability_mixin.rb +196 -62
- data/lib/pageflow/admin/tab.rb +21 -0
- data/lib/pageflow/admin/tabs.rb +31 -6
- data/lib/pageflow/built_in_file_type.rb +39 -0
- data/lib/pageflow/built_in_page_types_plugin.rb +80 -0
- data/lib/pageflow/configuration.rb +13 -1
- data/lib/pageflow/engine.rb +6 -1
- data/lib/pageflow/file_type.rb +60 -15
- data/lib/pageflow/file_types.rb +20 -2
- data/lib/pageflow/page_type.rb +53 -4
- data/lib/pageflow/page_types.rb +4 -0
- data/lib/pageflow/paperclip_processors/vtt.rb +35 -0
- data/lib/pageflow/react.rb +11 -0
- data/lib/pageflow/react/page_type.rb +26 -0
- data/lib/pageflow/react/widget_type.rb +20 -0
- data/lib/pageflow/seeds.rb +59 -15
- data/lib/pageflow/user_mixin.rb +18 -25
- data/lib/pageflow/version.rb +1 -1
- data/lib/pageflow/zencoder_api.rb +18 -4
- data/lib/pageflow/zencoder_video_output_definition.rb +375 -127
- data/lib/tasks/pageflow_tasks.rake +7 -0
- data/spec/factories/accounts.rb +36 -3
- data/spec/factories/entries.rb +22 -4
- data/spec/factories/invited_user.rb +3 -4
- data/spec/factories/memberships.rb +34 -2
- data/spec/factories/text_track_files.rb +40 -0
- data/spec/factories/users.rb +32 -7
- data/spec/factories/video_files.rb +7 -1
- data/spec/fixtures/sample.srt +12 -0
- data/spec/fixtures/sample.vtt +40 -0
- data/vendor/assets/javascripts/dash.all.min.js +14 -0
- data/vendor/assets/javascripts/polyfills/bind.js +17 -11
- data/vendor/assets/javascripts/videojs-dash.js +302 -0
- data/vendor/assets/javascripts/videojs.js +26804 -0
- metadata +187 -49
- data/app/assets/images/pageflow/themes/default/page_type_pictograms/audio_loop/sprite.png +0 -0
- data/app/assets/images/pageflow/themes/default/page_type_pictograms/audio_loop/wide.png +0 -0
- data/app/assets/javascripts/pageflow/editor/collections/file_usages_collection.js +0 -21
- data/app/assets/javascripts/pageflow/editor/models/file_usage.js +0 -8
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/audio_loop.js +0 -20
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/background_video.js +0 -24
- data/app/assets/javascripts/pageflow/page_types/audio.js +0 -135
- data/app/assets/javascripts/pageflow/page_types/audio_loop.js +0 -102
- data/app/assets/javascripts/pageflow/page_types/background_image.js +0 -44
- data/app/assets/javascripts/pageflow/page_types/background_video.js +0 -137
- data/app/assets/javascripts/pageflow/page_types/video.js +0 -277
- data/app/assets/javascripts/pageflow/ui/views/inputs/file_input_view.js +0 -79
- data/app/assets/javascripts/pageflow/video_player/play_button_patch.js +0 -39
- data/app/assets/javascripts/pageflow/video_player/player_buffered_patch.js +0 -47
- data/app/assets/javascripts/pageflow/video_player/src_from_options_method.js +0 -31
- data/app/assets/stylesheets/pageflow/page_types/audio_loop.scss +0 -18
- data/app/assets/stylesheets/pageflow/page_types/background-video.scss +0 -50
- data/app/controllers/pageflow/editor/file_usages_controller.rb +0 -37
- data/app/jobs/pageflow/process_image_file_job.rb +0 -18
- data/app/views/pageflow/pages/templates/_audio.html.erb +0 -69
- data/app/views/pageflow/pages/templates/_audio_loop.html.erb +0 -34
- data/app/views/pageflow/pages/templates/_background_image.html.erb +0 -24
- data/app/views/pageflow/pages/templates/_background_video.html.erb +0 -32
- data/app/views/pageflow/pages/templates/_video.html.erb +0 -42
- data/lib/pageflow/built_in_page_type.rb +0 -79
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f93b87e1697a6eb8c06a64e0e354fdd1265f0eef
|
4
|
+
data.tar.gz: e3e1d1606282bf57c6f00d186e0ff6f1fad73e4a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5d1f331a9462c36b8b99ad2a765c7ed50a1ddbf8df492d432f1431c3156297585044991bfbba2d536492ad8f6256d2d02d0eb5d17bc6a7d8413b297fc0904b5
|
7
|
+
data.tar.gz: f2ce626a72cd771ff1680019c6eb7d3037ea3f7e6d706e7497df90fb830c12063cdf6bc9eed1c345e6f6815dc2a06379fd3380a2f0d3a25266880b80cc4534e5
|
data/CHANGELOG.md
CHANGED
@@ -1,1239 +1,256 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
### Version 0.
|
3
|
+
### Version 12.0.0.rc1
|
4
4
|
|
5
|
-
2017-
|
5
|
+
2017-04-25
|
6
6
|
|
7
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/
|
8
|
-
|
9
|
-
- Allow using `state_machine_job` gem 1.x
|
10
|
-
([#819](https://github.com/codevise/pageflow/pull/819))
|
11
|
-
- Improve `pageflow-support` gem
|
12
|
-
([#818](https://github.com/codevise/pageflow/pull/818))
|
13
|
-
- Update semmy
|
14
|
-
([#820](https://github.com/codevise/pageflow/pull/820))
|
15
|
-
|
16
|
-
### Version 0.11.3
|
17
|
-
|
18
|
-
2016-11-02
|
19
|
-
|
20
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.11.2...v0.11.3)
|
21
|
-
|
22
|
-
- Bug fix: Fix css class collision in widget scroll indicators
|
23
|
-
([#668](https://github.com/codevise/pageflow/pull/668))
|
24
|
-
|
25
|
-
### Version 0.11.2
|
26
|
-
|
27
|
-
2016-10-24
|
28
|
-
|
29
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.11.1...v0.11.2)
|
30
|
-
|
31
|
-
- Bug fix: Fix video loop on safari 10 on el capitan.
|
32
|
-
([#664](https://github.com/codevise/pageflow/pull/664))
|
33
|
-
- Bug fix: Fix sharing menu in mobile navigation
|
34
|
-
([#662](https://github.com/codevise/pageflow/pull/662))
|
35
|
-
|
36
|
-
### Version 0.11.1
|
37
|
-
|
38
|
-
2016-10-05
|
39
|
-
|
40
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.11.0...v0.11.1)
|
41
|
-
|
42
|
-
- Bug fix: Show account filter to admins only
|
43
|
-
([#639](https://github.com/codevise/pageflow/pull/639))
|
44
|
-
- Bug fix: Extend facebook in-app-browser fix to ios platform
|
45
|
-
([#638](https://github.com/codevise/pageflow/pull/638))
|
46
|
-
|
47
|
-
### Version 0.11.0
|
48
|
-
|
49
|
-
2016-09-09
|
50
|
-
|
51
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.10.0...v0.11.0)
|
7
|
+
[Compare changes](https://github.com/codevise/pageflow/compare/0-11-stable...v12.0.0.rc1)
|
52
8
|
|
53
9
|
##### Breaking Changes
|
54
10
|
|
55
|
-
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
([#
|
60
|
-
|
61
|
-
- Active Admin/Devise have been updated. The `gem` entries for
|
62
|
-
`activeadmin`, `ransack`, `inherited_resources` and `formtastic`
|
63
|
-
have to be removed. Furthermore, delete the following line from the
|
64
|
-
Pageflow initializer:
|
65
|
-
|
66
|
-
ActiveAdmin.application.load_paths.unshift(Dir[Pageflow::Engine.root.join('admins')])
|
67
|
-
|
68
|
-
Instead insert the following line at the top of the Active Admin
|
69
|
-
initializer:
|
70
|
-
|
71
|
-
ActiveAdmin.application.load_paths.unshift(Pageflow.active_admin_load_path)
|
72
|
-
|
73
|
-
See the
|
74
|
-
[Active Admin changelog](https://github.com/activeadmin/activeadmin/blob/master/CHANGELOG.md)
|
75
|
-
for instructions on how to upgrade the Active Admin initializer.
|
76
|
-
([#500](https://github.com/codevise/pageflow/pull/500))
|
77
|
-
|
78
|
-
- Error pages now live in the `public` directory of the host
|
79
|
-
application. Run the following generator to copy the default error
|
80
|
-
pages to `public/pageflow/error_pages`:
|
81
|
-
|
82
|
-
$ bin/rails generate pageflow:error_pages
|
83
|
-
|
84
|
-
Feel free to change the generated files however you like.
|
85
|
-
([#572](https://github.com/codevise/pageflow/pull/572))
|
86
|
-
|
87
|
-
- The default theme has partly been rewritten. See
|
88
|
-
[the new theme guide](https://github.com/codevise/pageflow/blob/master/doc/creating_themes.md)
|
89
|
-
for instructions on how to build themes that are decoupled from
|
90
|
-
Pageflow implementation details.
|
91
|
-
([#470](https://github.com/codevise/pageflow/pull/470),
|
92
|
-
[#576](https://github.com/codevise/pageflow/pull/576),
|
93
|
-
[#586](https://github.com/codevise/pageflow/pull/586),
|
94
|
-
[#590](https://github.com/codevise/pageflow/pull/590),
|
95
|
-
[#591](https://github.com/codevise/pageflow/pull/591),
|
96
|
-
[#592](https://github.com/codevise/pageflow/pull/592),
|
97
|
-
[#593](https://github.com/codevise/pageflow/pull/593),
|
98
|
-
[#594](https://github.com/codevise/pageflow/pull/594),
|
99
|
-
[#596](https://github.com/codevise/pageflow/pull/596),
|
100
|
-
[#597](https://github.com/codevise/pageflow/pull/597),
|
101
|
-
[#598](https://github.com/codevise/pageflow/pull/598),
|
102
|
-
[#626](https://github.com/codevise/pageflow/pull/626),
|
103
|
-
[#618](https://github.com/codevise/pageflow/pull/618),
|
104
|
-
[#600](https://github.com/codevise/pageflow/pull/600))
|
11
|
+
- The `pageflow-react` gem has been merged into the core `pageflow`
|
12
|
+
gem. Remove the `pageflow-react` entry from your `Gemfile` if one
|
13
|
+
exists and make sure you update all gems that depend on
|
14
|
+
`pageflow-react` to versions that only depend on `pageflow` instead.
|
15
|
+
([#721](https://github.com/codevise/pageflow/pull/721),
|
16
|
+
[#744](https://github.com/codevise/pageflow/pull/744))
|
105
17
|
|
106
|
-
|
107
|
-
|
108
|
-
- Rebrush default theme
|
109
|
-
([#612](https://github.com/codevise/pageflow/pull/612),
|
110
|
-
[#611](https://github.com/codevise/pageflow/pull/611),
|
111
|
-
[#588](https://github.com/codevise/pageflow/pull/588))
|
112
|
-
- Minimalistic player controls
|
113
|
-
([#558](https://github.com/codevise/pageflow/pull/558))
|
114
|
-
- Move share button in mobile navigation to bottom
|
115
|
-
([#551](https://github.com/codevise/pageflow/pull/551))
|
116
|
-
- Scroll to active item in overview item
|
117
|
-
([#555](https://github.com/codevise/pageflow/pull/555))
|
118
|
-
- Improve hide text css
|
119
|
-
([#541](https://github.com/codevise/pageflow/pull/541))
|
120
|
-
- Improve focus outline handling
|
121
|
-
([#543](https://github.com/codevise/pageflow/pull/543))
|
122
|
-
- Increase fastclick compatibility of share menu
|
123
|
-
([#548](https://github.com/codevise/pageflow/pull/548))
|
124
|
-
- Disable atmo on mobile platform
|
125
|
-
([#554](https://github.com/codevise/pageflow/pull/554))
|
126
|
-
- Ensure facebook app does not crop viewport
|
127
|
-
([#607](https://github.com/codevise/pageflow/pull/607))
|
128
|
-
- Apply widget margin to mobile scroll indicator
|
129
|
-
([#606](https://github.com/codevise/pageflow/pull/606))
|
130
|
-
- Bug fix: Fix keyboard access to sub share menu
|
131
|
-
([#553](https://github.com/codevise/pageflow/pull/553))
|
132
|
-
- Bug fix: Do not set video src on video page activate
|
133
|
-
([#547](https://github.com/codevise/pageflow/pull/547))
|
134
|
-
- Bug fix: Prevent native scrolling on multimedia alert
|
135
|
-
([#550](https://github.com/codevise/pageflow/pull/550))
|
136
|
-
- Bug fix: Ensure entry cache is invalidated when theming changes
|
137
|
-
([#627](https://github.com/codevise/pageflow/pull/627))
|
138
|
-
|
139
|
-
##### Admin
|
140
|
-
|
141
|
-
- Improve filtering, sorting and pagination of admin tables
|
142
|
-
([#568](https://github.com/codevise/pageflow/pull/568),
|
143
|
-
[#567](https://github.com/codevise/pageflow/pull/567),
|
144
|
-
[#563](https://github.com/codevise/pageflow/pull/563))
|
145
|
-
- Allow setting defaults for meta tags per theming
|
146
|
-
([#538](https://github.com/codevise/pageflow/pull/538),
|
147
|
-
[#573](https://github.com/codevise/pageflow/pull/573))
|
148
|
-
- Improve revisions table on entry admin page
|
149
|
-
([#619](https://github.com/codevise/pageflow/pull/619))
|
150
|
-
|
151
|
-
##### Editor
|
152
|
-
|
153
|
-
- Allow specifying custom share url
|
154
|
-
([#581](https://github.com/codevise/pageflow/pull/581))
|
155
|
-
- Add option to hide overview button
|
156
|
-
([#556](https://github.com/codevise/pageflow/pull/556))
|
157
|
-
- Display warning for ie 9 in editor
|
158
|
-
([#552](https://github.com/codevise/pageflow/pull/552))
|
159
|
-
- Bug fix: Prevent scrolling preview while focus in sidebar
|
160
|
-
([#549](https://github.com/codevise/pageflow/pull/549))
|
161
|
-
|
162
|
-
##### Rails Engine
|
163
|
-
|
164
|
-
- Update activeadmin to 1.0.pre4
|
165
|
-
([#617](https://github.com/codevise/pageflow/pull/617),
|
166
|
-
[#610](https://github.com/codevise/pageflow/pull/610))
|
167
|
-
- Update sass to 3.4
|
168
|
-
([#540](https://github.com/codevise/pageflow/pull/540))
|
169
|
-
- Switch to cancancan from cancan
|
170
|
-
([#615](https://github.com/codevise/pageflow/pull/615))
|
171
|
-
- Add config option to forbid deleting user account
|
172
|
-
([#535](https://github.com/codevise/pageflow/pull/535))
|
173
|
-
- Encapsulate active admin load path setup
|
174
|
-
([#570](https://github.com/codevise/pageflow/pull/570))
|
175
|
-
- Add off event emitter method to pageflow.hidetext.
|
176
|
-
([#542](https://github.com/codevise/pageflow/pull/542))
|
177
|
-
- Introduce widgets api
|
178
|
-
([#544](https://github.com/codevise/pageflow/pull/544))
|
179
|
-
- Introduce widget margins
|
180
|
-
([#557](https://github.com/codevise/pageflow/pull/557))
|
181
|
-
- Add page css classes for scroller boundary position
|
182
|
-
([#545](https://github.com/codevise/pageflow/pull/545))
|
183
|
-
- Allow overriding logic to determine highlightes page
|
184
|
-
([#605](https://github.com/codevise/pageflow/pull/605))
|
185
|
-
- Theme generator for configurable default theme
|
186
|
-
([#560](https://github.com/codevise/pageflow/pull/560))
|
187
|
-
- Prevent account with entries being deleted
|
188
|
-
([#599](https://github.com/codevise/pageflow/pull/599))
|
189
|
-
- Correct the documentation for js widget types
|
190
|
-
([#571](https://github.com/codevise/pageflow/pull/571))
|
191
|
-
- Update ruby version requirement in readme
|
192
|
-
([#620](https://github.com/codevise/pageflow/pull/620))
|
193
|
-
- Make sliderinputview more configurable
|
194
|
-
([#602](https://github.com/codevise/pageflow/pull/602))
|
195
|
-
- Add classnames to title bar action-items
|
196
|
-
([#608](https://github.com/codevise/pageflow/pull/608))
|
197
|
-
- Add browser agent based detection for ie up to 11
|
198
|
-
([#601](https://github.com/codevise/pageflow/pull/601))
|
199
|
-
- Generate procfile
|
200
|
-
([#579](https://github.com/codevise/pageflow/pull/579))
|
201
|
-
|
202
|
-
##### Internals
|
203
|
-
|
204
|
-
- Upgrade to rspec 3
|
205
|
-
([#569](https://github.com/codevise/pageflow/pull/569))
|
206
|
-
- Add ruby 2.3.1 to travis file
|
207
|
-
([#609](https://github.com/codevise/pageflow/pull/609))
|
208
|
-
- Use parallel coverall builds
|
209
|
-
([#614](https://github.com/codevise/pageflow/pull/614))
|
210
|
-
- Generator unit tests
|
211
|
-
([#574](https://github.com/codevise/pageflow/pull/574))
|
212
|
-
- Generate theme documentation
|
213
|
-
([#559](https://github.com/codevise/pageflow/pull/559))
|
214
|
-
- Install coveralls test coverage reporter
|
215
|
-
([#561](https://github.com/codevise/pageflow/pull/561))
|
216
|
-
- Import new rubocop default from hound repository
|
217
|
-
([#580](https://github.com/codevise/pageflow/pull/580))
|
218
|
-
- Add scss_lint and rubocop to development dependency
|
219
|
-
([#625](https://github.com/codevise/pageflow/pull/625))
|
220
|
-
- Rename .css.scss files to just .scss
|
221
|
-
([#613](https://github.com/codevise/pageflow/pull/613))
|
222
|
-
- Ignore a few more files
|
223
|
-
([#565](https://github.com/codevise/pageflow/pull/565))
|
224
|
-
- Increase the test coverage
|
225
|
-
([#603](https://github.com/codevise/pageflow/pull/603),
|
226
|
-
[#604](https://github.com/codevise/pageflow/pull/604))
|
227
|
-
- Bug fix: Narrow sprockets-rails version
|
228
|
-
([#546](https://github.com/codevise/pageflow/pull/546))
|
18
|
+
In the Pageflow initializer, delete all lines that register page
|
19
|
+
types from `Pageflow::BuiltInPageType`, i.e. lines of the form:
|
229
20
|
|
230
|
-
|
21
|
+
config.page_types.register(Pageflow::BuiltInPageType.background_image)
|
231
22
|
|
232
|
-
|
23
|
+
Insert the following single line instead:
|
233
24
|
|
234
|
-
|
25
|
+
config.plugin(Pageflow.built_in_page_types_plugin)
|
235
26
|
|
236
|
-
|
237
|
-
|
238
|
-
- Except for icon fonts, Pageflow now only packages the Source Sans
|
239
|
-
Pro font, which is used by the default theme. If your theme depends
|
240
|
-
on one of the additional fonts that were included so far, you need
|
241
|
-
to supply these in your own app from now on.
|
242
|
-
([#498](https://github.com/codevise/pageflow/pull/498))
|
243
|
-
|
244
|
-
- HTML meta tags for published entries can now be configured in the
|
245
|
-
Pageflow initializer. The partial
|
246
|
-
`layouts/pageflow/_meta_tags.html.erb` is no longer used and can be
|
247
|
-
removed.
|
248
|
-
([#508](https://github.com/codevise/pageflow/pull/508),
|
249
|
-
[#517](https://github.com/codevise/pageflow/pull/517))
|
250
|
-
|
251
|
-
##### Manual Update Step
|
27
|
+
Finally, in `app/assets/javascript/components.js` replace
|
252
28
|
|
253
|
-
|
254
|
-
new `thumbnail_large` styles
|
255
|
-
([#466](https://github.com/codevise/pageflow/pull/466)) are present:
|
29
|
+
//= require pageflow/react/components
|
256
30
|
|
257
|
-
|
258
|
-
CLASS=Pageflow::ImageFile \
|
259
|
-
ATTACHMENT=processed_attachment \
|
260
|
-
STYLES=thumbnail_large
|
31
|
+
with
|
261
32
|
|
262
|
-
|
263
|
-
CLASS=Pageflow::VideoFile \
|
264
|
-
ATTACHMENT=poster \
|
265
|
-
STYLES=thumbnail_large
|
33
|
+
//= require pageflow/components
|
266
34
|
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
35
|
+
- The background audio page type has been replaced by the atmo
|
36
|
+
feature. There is a migration turning all background audio pages
|
37
|
+
into background image pages with a atmo audio. The atmo settings are
|
38
|
+
no longer guarded by a feature flag. If you used
|
39
|
+
`Pageflow::Features#enabled_by_default` to enable the feature for
|
40
|
+
all accounts, you need to remove that call from your
|
41
|
+
initializer.
|
42
|
+
([#748](https://github.com/codevise/pageflow/pull/748))
|
271
43
|
|
272
|
-
|
273
|
-
|
44
|
+
- All page types that used to support only background images can now
|
45
|
+
display a background video as well. The background video page type
|
46
|
+
accordingly has been removed. There is a migration to turn
|
47
|
+
background video pages into pages with video background type.
|
48
|
+
([#748](https://github.com/codevise/pageflow/pull/748))
|
274
49
|
|
275
50
|
##### Public Site
|
276
51
|
|
277
|
-
-
|
278
|
-
([#
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
-
|
288
|
-
|
289
|
-
|
290
|
-
[#
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
([#
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
-
|
311
|
-
([#
|
312
|
-
-
|
313
|
-
([#
|
52
|
+
- Embed entries as iframes
|
53
|
+
([#665](https://github.com/codevise/pageflow/pull/665))
|
54
|
+
- Use slim controls as android phone player
|
55
|
+
([#745](https://github.com/codevise/pageflow/pull/745))
|
56
|
+
|
57
|
+
Media stack:
|
58
|
+
|
59
|
+
- FullHD/4k video variants
|
60
|
+
([#653](https://github.com/codevise/pageflow/pull/653),
|
61
|
+
[#741](https://github.com/codevise/pageflow/pull/741))
|
62
|
+
- Update Video.js and add Dash support
|
63
|
+
([#678](https://github.com/codevise/pageflow/pull/678),
|
64
|
+
[#677](https://github.com/codevise/pageflow/pull/677),
|
65
|
+
[#746](https://github.com/codevise/pageflow/pull/746))
|
66
|
+
- Allow displaying text tracks on videos and audio pages
|
67
|
+
([#721](https://github.com/codevise/pageflow/pull/721),
|
68
|
+
[#747](https://github.com/codevise/pageflow/pull/747),
|
69
|
+
[#743](https://github.com/codevise/pageflow/pull/743))
|
70
|
+
- Add feature detection for mobile video features
|
71
|
+
([#742](https://github.com/codevise/pageflow/pull/742))
|
72
|
+
- Add ultra variant to image file and video file posters
|
73
|
+
([#706](https://github.com/codevise/pageflow/pull/706))
|
74
|
+
- Bug fix: Fix video loop on safari 10 on el capitan.
|
75
|
+
([#663](https://github.com/codevise/pageflow/pull/663))
|
76
|
+
- Bug fix: Prevent prebuffer/volume fading from failing on dispose
|
77
|
+
([#719](https://github.com/codevise/pageflow/pull/719))
|
78
|
+
- Do not filter sources for audio tags
|
79
|
+
([#709](https://github.com/codevise/pageflow/pull/709))
|
80
|
+
- Bug fix: Continue prebuffer on media tag init
|
81
|
+
([#740](https://github.com/codevise/pageflow/pull/740))
|
82
|
+
|
83
|
+
Theme:
|
84
|
+
|
85
|
+
- Add theme option to hide glow behind loading spinner logo
|
86
|
+
([#675](https://github.com/codevise/pageflow/pull/675))
|
87
|
+
- Add logo theme option to fade in with header
|
88
|
+
([#666](https://github.com/codevise/pageflow/pull/666))
|
89
|
+
- Logo theme options
|
90
|
+
([#733](https://github.com/codevise/pageflow/pull/733))
|
91
|
+
- Update to more complete variant of source sans pro font
|
92
|
+
([#676](https://github.com/codevise/pageflow/pull/676))
|
93
|
+
- Allow setting hide text related css classes on wrapper
|
94
|
+
([#651](https://github.com/codevise/pageflow/pull/651))
|
95
|
+
- Use svg icon for slim loading spinner
|
96
|
+
([#718](https://github.com/codevise/pageflow/pull/718))
|
97
|
+
- Allow overriding typography of slim control bar text
|
98
|
+
([#726](https://github.com/codevise/pageflow/pull/726))
|
99
|
+
- Style text track cues
|
100
|
+
([#713](https://github.com/codevise/pageflow/pull/713))
|
101
|
+
- Theme for player controls menu bar
|
102
|
+
([#717](https://github.com/codevise/pageflow/pull/717))
|
103
|
+
- Hide audio page content when text tracks are displayed
|
104
|
+
([#698](https://github.com/codevise/pageflow/pull/698))
|
105
|
+
- Add css class to page background with controls
|
106
|
+
([#722](https://github.com/codevise/pageflow/pull/722))
|
107
|
+
- Bug fix: Fix css class collision in widget scroll indicators
|
108
|
+
([#667](https://github.com/codevise/pageflow/pull/667))
|
109
|
+
- Bug fix: Allow overriding widget theme options
|
110
|
+
([#723](https://github.com/codevise/pageflow/pull/723))
|
111
|
+
|
112
|
+
JavaScript API:
|
113
|
+
|
114
|
+
- Allow to programatically re-enable atmo on mobile devices
|
115
|
+
([#670](https://github.com/codevise/pageflow/pull/670))
|
116
|
+
- Trigger event when widgets are updated
|
117
|
+
([#712](https://github.com/codevise/pageflow/pull/712))
|
118
|
+
- Trigger event when slideshow is resized
|
119
|
+
([#707](https://github.com/codevise/pageflow/pull/707))
|
120
|
+
- Only fire hidetext events on state changes
|
121
|
+
([#701](https://github.com/codevise/pageflow/pull/701))
|
122
|
+
- Trigger event when seed data is available
|
123
|
+
([#687](https://github.com/codevise/pageflow/pull/687))
|
124
|
+
- Ensure page is unprepared if it was not activated
|
125
|
+
([#650](https://github.com/codevise/pageflow/pull/650))
|
126
|
+
|
127
|
+
Seed data:
|
128
|
+
|
129
|
+
- Reorganize file seed data
|
130
|
+
([#686](https://github.com/codevise/pageflow/pull/686))
|
131
|
+
- Add video file url to templates and json
|
132
|
+
([#714](https://github.com/codevise/pageflow/pull/714))
|
133
|
+
- Add is_ready flag to file json representation
|
134
|
+
([#704](https://github.com/codevise/pageflow/pull/704))
|
135
|
+
- Include entry slug in common seed
|
136
|
+
([#702](https://github.com/codevise/pageflow/pull/702))
|
137
|
+
- Render storylines as array in seed data
|
138
|
+
([#680](https://github.com/codevise/pageflow/pull/680))
|
139
|
+
- Bug fix: Set position for seeded chapters
|
140
|
+
([#643](https://github.com/codevise/pageflow/pull/643))
|
141
|
+
|
142
|
+
Widgets:
|
143
|
+
|
144
|
+
- Player controls improvements
|
145
|
+
([#699](https://github.com/codevise/pageflow/pull/699),
|
146
|
+
[#720](https://github.com/codevise/pageflow/pull/720),
|
147
|
+
[#739](https://github.com/codevise/pageflow/pull/739))
|
148
|
+
- Prevent videojs controls from being displayed
|
149
|
+
([#697](https://github.com/codevise/pageflow/pull/697))
|
150
|
+
- Bug fix: Prevent line wrap in scroll indicator
|
151
|
+
([#729](https://github.com/codevise/pageflow/pull/729))
|
152
|
+
- Bug fix: Fix sharing menu in mobile navigation
|
153
|
+
([#661](https://github.com/codevise/pageflow/pull/661))
|
154
|
+
- Bug fix: Fix page widget index for analytics adapters
|
155
|
+
([#652](https://github.com/codevise/pageflow/pull/652))
|
156
|
+
- Bug fix: Extend Facebook in-app browser fix to iOS platform
|
157
|
+
([#637](https://github.com/codevise/pageflow/pull/637))
|
314
158
|
|
315
159
|
##### Admin
|
316
160
|
|
317
|
-
-
|
318
|
-
([#
|
319
|
-
|
320
|
-
|
321
|
-
- Improve feature state inheritance
|
322
|
-
([#528](https://github.com/codevise/pageflow/pull/528))
|
323
|
-
- Add inline help for account default widgets form
|
324
|
-
([#522](https://github.com/codevise/pageflow/pull/522))
|
161
|
+
- Role based account memberships
|
162
|
+
([#634](https://github.com/codevise/pageflow/pull/634),
|
163
|
+
[#641](https://github.com/codevise/pageflow/pull/641),
|
164
|
+
[#640](https://github.com/codevise/pageflow/pull/640))
|
325
165
|
|
326
166
|
##### Editor
|
327
167
|
|
328
|
-
-
|
329
|
-
([#
|
330
|
-
|
331
|
-
|
332
|
-
-
|
333
|
-
([#
|
334
|
-
-
|
335
|
-
([#
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
-
|
365
|
-
([#
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
- Allow
|
374
|
-
([#
|
375
|
-
- Add
|
376
|
-
([#
|
377
|
-
-
|
378
|
-
([#
|
379
|
-
-
|
380
|
-
([#
|
381
|
-
- Add image css classes to lazy load thumbnails
|
382
|
-
([#488](https://github.com/codevise/pageflow/pull/488))
|
383
|
-
- Add cleanup page type hook
|
384
|
-
([#489](https://github.com/codevise/pageflow/pull/489))
|
385
|
-
- Reorganize seed data
|
386
|
-
([#465](https://github.com/codevise/pageflow/pull/465),
|
387
|
-
[#532](https://github.com/codevise/pageflow/pull/532))
|
388
|
-
- Allow using i18n-js in published entries.
|
389
|
-
([#531](https://github.com/codevise/pageflow/pull/531))
|
390
|
-
- Default implementation for editor page links collection and views
|
391
|
-
([#415](https://github.com/codevise/pageflow/pull/415))
|
392
|
-
- Implement options for disabling rich text and links in TextAreaInputView
|
393
|
-
([#404](https://github.com/codevise/pageflow/pull/404))
|
394
|
-
- Trigger event on editor api when chapter or page is added
|
395
|
-
([#457](https://github.com/codevise/pageflow/pull/457))
|
396
|
-
- Set PAGEFLOW_EDITOR global
|
397
|
-
([#428](https://github.com/codevise/pageflow/pull/428))
|
398
|
-
- Improve page navigation list widget
|
399
|
-
([#443](https://github.com/codevise/pageflow/pull/443))
|
400
|
-
- Also set filter css class on navigation bar item
|
401
|
-
([#459](https://github.com/codevise/pageflow/pull/459))
|
402
|
-
- Optionally specify a host for the dummy instance
|
403
|
-
([#503](https://github.com/codevise/pageflow/pull/503))
|
404
|
-
- Ensure multijson uses yajl JSON adapter.
|
405
|
-
([#487](https://github.com/codevise/pageflow/pull/487))
|
406
|
-
- Improve guides and specs
|
407
|
-
([#502](https://github.com/codevise/pageflow/pull/502),
|
408
|
-
[#501](https://github.com/codevise/pageflow/pull/501),
|
409
|
-
[#473](https://github.com/codevise/pageflow/pull/473),
|
410
|
-
[#472](https://github.com/codevise/pageflow/pull/472),
|
411
|
-
[#514](https://github.com/codevise/pageflow/pull/514))
|
412
|
-
- Improve test coverage of page type interface
|
413
|
-
([#518](https://github.com/codevise/pageflow/pull/518))
|
414
|
-
- Bug fix: Destroy dependent account objects
|
415
|
-
([#493](https://github.com/codevise/pageflow/pull/493))
|
416
|
-
- Bug fix: Prevent incorrectly called page type hook on manual start
|
417
|
-
([#441](https://github.com/codevise/pageflow/pull/441))
|
418
|
-
- Bug fix: Explicitly set available locales in config
|
419
|
-
([#452](https://github.com/codevise/pageflow/pull/452))
|
420
|
-
- Bug fix: Fix migration rename command in readme
|
421
|
-
([#448](https://github.com/codevise/pageflow/pull/448))
|
422
|
-
|
423
|
-
##### Internals
|
424
|
-
|
425
|
-
- Install semmy release rake tasks
|
426
|
-
([#534](https://github.com/codevise/pageflow/pull/534))
|
427
|
-
- Update travis to use ruby 2.1
|
428
|
-
([#506](https://github.com/codevise/pageflow/pull/506))
|
429
|
-
|
430
|
-
### Version 0.9.0
|
431
|
-
|
432
|
-
2015-10-23
|
433
|
-
|
434
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.8.0..v0.9.0)
|
435
|
-
|
436
|
-
##### Breaking Changes
|
437
|
-
|
438
|
-
- The internal links page type has been extracted to the
|
439
|
-
[`pageflow-internal-links`](https://github.com/codevise/pageflow-internal-links)
|
440
|
-
gem. ([#316](https://github.com/codevise/pageflow/pull/316)) Remove
|
441
|
-
the following line from your Pageflow initializer:
|
442
|
-
|
443
|
-
config.register_page_type(Pageflow::BuiltInPageType.internal_links)
|
444
|
-
|
445
|
-
Then follow the instructions found in the gem's
|
446
|
-
[README](https://github.com/codevise/pageflow-internal-links) to
|
447
|
-
install the extracted page type.
|
448
|
-
|
449
|
-
##### Deprecations
|
450
|
-
|
451
|
-
- The configuration API for registering new page types has
|
452
|
-
changed. Turn calls of the form
|
453
|
-
|
454
|
-
config.register_page_type(Pageflow::Some.page_type)
|
455
|
-
|
456
|
-
into
|
457
|
-
|
458
|
-
config.page_types.register(Pageflow::Some.page_type)
|
459
|
-
|
460
|
-
The old method still exists for now, but will be removed before
|
461
|
-
version 1.0.
|
462
|
-
([#297](https://github.com/codevise/pageflow/pull/297))
|
463
|
-
|
464
|
-
##### Manual Update Step
|
465
|
-
|
466
|
-
- Some of the new features have to be enabled manually via the new
|
467
|
-
feature toggle UI inside the admin. Visit the _Features_ tab on the
|
468
|
-
account's admin page to view a list of available feature
|
469
|
-
toggles.
|
470
|
-
- Image file Paperclip attachments need to be refreshed to ensure the
|
471
|
-
new panorama styles
|
472
|
-
([#344](https://github.com/codevise/pageflow/pull/344)) are present:
|
473
|
-
|
474
|
-
$ bin/rake paperclip:refresh:thumbnails \
|
475
|
-
CLASS=Pageflow::ImageFile \
|
476
|
-
ATTACHMENT=processed_attachment \
|
477
|
-
STYLES=panorama_large,panorama_medium
|
478
|
-
|
479
|
-
##### Public Site
|
480
|
-
|
481
|
-
- Password protection for published entries.
|
482
|
-
([#301](https://github.com/codevise/pageflow/pull/301),
|
483
|
-
[#304](https://github.com/codevise/pageflow/pull/304))
|
484
|
-
- Atmo audios spanning multiple pages.
|
485
|
-
([#332](https://github.com/codevise/pageflow/pull/332),
|
486
|
-
[#361](https://github.com/codevise/pageflow/pull/361),
|
487
|
-
[#422](https://github.com/codevise/pageflow/pull/422))
|
488
|
-
- Option to automatically change page on video end.
|
489
|
-
([#334](https://github.com/codevise/pageflow/pull/334),
|
490
|
-
[#339](https://github.com/codevise/pageflow/pull/339))
|
491
|
-
- Option to fade in page titles after a delay.
|
492
|
-
([#338](https://github.com/codevise/pageflow/pull/338))
|
493
|
-
- Additional page transitions.
|
494
|
-
([#326](https://github.com/codevise/pageflow/pull/326),
|
495
|
-
[#363](https://github.com/codevise/pageflow/pull/363),
|
496
|
-
[#423](https://github.com/codevise/pageflow/pull/423))
|
497
|
-
- Make https mode configurable
|
498
|
-
([#403](https://github.com/codevise/pageflow/pull/403))
|
499
|
-
- Improve display of file rights.
|
500
|
-
([#300](https://github.com/codevise/pageflow/pull/300))
|
501
|
-
- Slideshow optimization to improve initial load time in large
|
502
|
-
entries.
|
503
|
-
([#330](https://github.com/codevise/pageflow/pull/330),
|
504
|
-
[#352](https://github.com/codevise/pageflow/pull/352))
|
505
|
-
- Minor improvements to the video page type.
|
506
|
-
([#355](https://github.com/codevise/pageflow/pull/355),
|
507
|
-
[#333](https://github.com/codevise/pageflow/pull/333),
|
508
|
-
[#357](https://github.com/codevise/pageflow/pull/357),
|
509
|
-
[#353](https://github.com/codevise/pageflow/pull/353),
|
510
|
-
[#331](https://github.com/codevise/pageflow/pull/331))
|
511
|
-
- Bug fix: Use large link thumbnail if hero argument is true
|
512
|
-
([#417](https://github.com/codevise/pageflow/pull/417))
|
513
|
-
- Bug fix: Use the current locale in meta tags
|
514
|
-
([#412](https://github.com/codevise/pageflow/pull/412))
|
515
|
-
- Bug fix: Ensure hidden text indicator is only visible on mobile
|
516
|
-
([#391](https://github.com/codevise/pageflow/pull/391))
|
517
|
-
- Bug fix: Fix copyright links in mobile navigation.
|
518
|
-
([#377](https://github.com/codevise/pageflow/pull/377))
|
519
|
-
- Bug fix: Find share target page in published revision
|
520
|
-
([#375](https://github.com/codevise/pageflow/pull/375))
|
521
|
-
- Bug fix: Improve local storage detection to prevent failure in
|
522
|
-
Safari.
|
523
|
-
([#360](https://github.com/codevise/pageflow/pull/360))
|
524
|
-
|
525
|
-
##### Admin/Editor
|
526
|
-
|
527
|
-
- Duplicating entries.
|
528
|
-
([#372](https://github.com/codevise/pageflow/pull/372))
|
529
|
-
- Hotkey to edit the current page.
|
530
|
-
([#340](https://github.com/codevise/pageflow/pull/340))
|
531
|
-
- Optimized video resouce management in editor for large entries.
|
532
|
-
([#337](https://github.com/codevise/pageflow/pull/337))
|
533
|
-
- Implement remembering of scroll position in chapter overview
|
534
|
-
([#405](https://github.com/codevise/pageflow/pull/405))
|
535
|
-
- Prefill depublication date field to one year from now
|
536
|
-
([#392](https://github.com/codevise/pageflow/pull/392))
|
537
|
-
- Implement loading spinner for file reuse panel
|
538
|
-
([#387](https://github.com/codevise/pageflow/pull/387))
|
539
|
-
- Bug fix: Make edit widget view handle widgets with no available
|
540
|
-
widget types
|
541
|
-
([#383](https://github.com/codevise/pageflow/pull/383))
|
542
|
-
|
543
|
-
##### Rails Engine
|
544
|
-
|
545
|
-
Public APIs to be used by Pageflow plugins:
|
546
|
-
|
547
|
-
- Introduce features API.
|
548
|
-
([#297](https://github.com/codevise/pageflow/pull/297),
|
549
|
-
[#320](https://github.com/codevise/pageflow/pull/320),
|
550
|
-
[#325](https://github.com/codevise/pageflow/pull/325),
|
551
|
-
[#416](https://github.com/codevise/pageflow/pull/416))
|
552
|
-
- Introduce API for audio playback.
|
553
|
-
([#319](https://github.com/codevise/pageflow/pull/319),
|
554
|
-
[#356](https://github.com/codevise/pageflow/pull/356))
|
555
|
-
- Add API to add inputs to admin forms.
|
556
|
-
([#421](https://github.com/codevise/pageflow/pull/421))
|
557
|
-
- Enhance API for page types to configure their scroller.
|
558
|
-
([#321](https://github.com/codevise/pageflow/pull/321),
|
559
|
-
[#327](https://github.com/codevise/pageflow/pull/327),
|
560
|
-
[#336](https://github.com/codevise/pageflow/pull/336))
|
561
|
-
- Introduce API to display multimedia alert.
|
562
|
-
([#359](https://github.com/codevise/pageflow/pull/359))
|
563
|
-
- Introduce API to register new page transitions.
|
564
|
-
([#326](https://github.com/codevise/pageflow/pull/326))
|
565
|
-
- Introduce history API with adapters for hash, push state and
|
566
|
-
simulation.
|
567
|
-
([#322](https://github.com/codevise/pageflow/pull/322))
|
568
|
-
- Introduce page type API to manage internal links.
|
569
|
-
([#324](https://github.com/codevise/pageflow/pull/324))
|
570
|
-
- Introduce API to customize page change behavior via scrolling.
|
571
|
-
([#323](https://github.com/codevise/pageflow/pull/323))
|
572
|
-
- Record when an entry has first been published
|
573
|
-
([#419](https://github.com/codevise/pageflow/pull/419))
|
574
|
-
- Promote `pageflow.Object` to `application.js`.
|
575
|
-
([#296](https://github.com/codevise/pageflow/pull/296),
|
576
|
-
[#298](https://github.com/codevise/pageflow/pull/298))
|
577
|
-
- Dispatch `page:update` event via `pageflow.events`.
|
578
|
-
([#302](https://github.com/codevise/pageflow/pull/302))
|
579
|
-
- Panorama image file style.
|
580
|
-
([#344](https://github.com/codevise/pageflow/pull/344))
|
581
|
-
|
582
|
-
Theme options:
|
583
|
-
|
584
|
-
- Add theme option to disable page change by scrolling.
|
585
|
-
([#349](https://github.com/codevise/pageflow/pull/349))
|
586
|
-
- Let themes disable hide text on swipe functionality.
|
587
|
-
([#358](https://github.com/codevise/pageflow/pull/358))
|
588
|
-
- Add theme options to configure orientation and display of scroll
|
589
|
-
indicators.
|
590
|
-
([#329](https://github.com/codevise/pageflow/pull/329),
|
591
|
-
[#397](https://github.com/codevise/pageflow/pull/397))
|
592
|
-
- For themes that support non-linear Pagefows, chapters can now be
|
593
|
-
organized in a hierachy.
|
594
|
-
([#318](https://github.com/codevise/pageflow/pull/318),
|
595
|
-
[#345](https://github.com/codevise/pageflow/pull/345),
|
596
|
-
[#348](https://github.com/codevise/pageflow/pull/348))
|
597
|
-
|
598
|
-
Extracted reusable jQuery widgets:
|
599
|
-
|
600
|
-
- Fullscreen button.
|
601
|
-
([#350](https://github.com/codevise/pageflow/pull/350))
|
602
|
-
- Parent page button.
|
603
|
-
([#347](https://github.com/codevise/pageflow/pull/347))
|
604
|
-
- Additional player controls buttons.
|
605
|
-
([#346](https://github.com/codevise/pageflow/pull/346),
|
606
|
-
[#362](https://github.com/codevise/pageflow/pull/362),
|
607
|
-
[#354](https://github.com/codevise/pageflow/pull/354))
|
608
|
-
- Use top button to go to landing page.
|
609
|
-
([#351](https://github.com/codevise/pageflow/pull/351))
|
610
|
-
- Extract social share links into reusable partials.
|
611
|
-
([#335](https://github.com/codevise/pageflow/pull/335))
|
612
|
-
|
613
|
-
Reusable components for the editor Backbone application:
|
614
|
-
|
615
|
-
- Generic button and list views.
|
616
|
-
([#343](https://github.com/codevise/pageflow/pull/343))
|
617
|
-
- Generic reference input view.
|
618
|
-
([#342](https://github.com/codevise/pageflow/pull/342))
|
619
|
-
- Page attribute translation key prefixes
|
620
|
-
([#395](https://github.com/codevise/pageflow/pull/395))
|
621
|
-
- Add visible option for input backbone views.
|
622
|
-
([#341](https://github.com/codevise/pageflow/pull/341))
|
623
|
-
- Options for configuration editor tab groups.
|
624
|
-
([#328](https://github.com/codevise/pageflow/pull/328))
|
625
|
-
- Allow displaying custom views in the editor main region.
|
626
|
-
([#317](https://github.com/codevise/pageflow/pull/317))
|
627
|
-
- Add `appendSubview` method.
|
628
|
-
([#310](https://github.com/codevise/pageflow/pull/310))
|
629
|
-
- Improve `SubsetCollection`.
|
630
|
-
([#309](https://github.com/codevise/pageflow/pull/309))
|
631
|
-
- Bug fix: Fix editor bug in collection_view.js
|
632
|
-
([#382](https://github.com/codevise/pageflow/pull/382))
|
633
|
-
- Bug fix: Fix editor bug related to underscore.js
|
634
|
-
([#381](https://github.com/codevise/pageflow/pull/381))
|
635
|
-
- Bug fix: Set `isDestroying` before triggering `destroying` event.
|
636
|
-
([#312](https://github.com/codevise/pageflow/pull/312))
|
637
|
-
- Bug fix: Save `TextiInputView` on close.
|
638
|
-
([#311](https://github.com/codevise/pageflow/pull/311))
|
639
|
-
|
640
|
-
Enhancements for app development:
|
641
|
-
|
642
|
-
- Allow overriding attachments scope name.
|
643
|
-
([#303](https://github.com/codevise/pageflow/pull/303))
|
644
|
-
- Bug fix: Add spec fixtures required by factory girl to gem files.
|
645
|
-
([#370](https://github.com/codevise/pageflow/pull/370),
|
646
|
-
[#371](https://github.com/codevise/pageflow/pull/371),
|
647
|
-
[#368](https://github.com/codevise/pageflow/pull/368))
|
648
|
-
- Use environment variables for api keys in generated initializer.
|
649
|
-
([#306](https://github.com/codevise/pageflow/pull/306))
|
650
|
-
- Bug fix: Fix theme name replacement in generator
|
651
|
-
([#385](https://github.com/codevise/pageflow/pull/385))
|
652
|
-
|
653
|
-
##### Internals
|
654
|
-
|
655
|
-
- Include pageflow version in entry css url to invalidate CDN on gem
|
656
|
-
updates.
|
657
|
-
([#376](https://github.com/codevise/pageflow/pull/376))
|
658
|
-
- Allow adding pageflow configure blocks in tests.
|
659
|
-
([#420](https://github.com/codevise/pageflow/pull/420))
|
660
|
-
- Improve stability of feature specs.
|
661
|
-
([#299](https://github.com/codevise/pageflow/pull/299))
|
662
|
-
- Disable bandwidth feature detection in test environment.
|
663
|
-
([#308](https://github.com/codevise/pageflow/pull/308))
|
664
|
-
- Add config files to perform rubocop checks with hound
|
665
|
-
([#390](https://github.com/codevise/pageflow/pull/390))
|
666
|
-
- Rename binstub directory back to bin
|
667
|
-
([#389](https://github.com/codevise/pageflow/pull/389))
|
668
|
-
- Replaced sample video with smaller file
|
669
|
-
([#386](https://github.com/codevise/pageflow/pull/386))
|
670
|
-
- Bug fix: Fix paperclip version to 4.2 until 4.3 issues are resolved.
|
671
|
-
([#307](https://github.com/codevise/pageflow/pull/307))
|
672
|
-
|
673
|
-
### Version 0.8.0
|
674
|
-
|
675
|
-
2015-05-28
|
676
|
-
|
677
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.7.2...v0.8.0)
|
678
|
-
|
679
|
-
##### Public Site
|
680
|
-
|
681
|
-
- Bug fix: Do not hang at loading spinner if local storage is not
|
682
|
-
available.
|
683
|
-
([#295](https://github.com/codevise/pageflow/pull/295))
|
684
|
-
- Bug fix: Ensure correct social sharing images and descriptions are
|
685
|
-
used.
|
686
|
-
([#288](https://github.com/codevise/pageflow/pull/288))
|
687
|
-
- Bug fix: Ensure audio page text is not hidden by player controls on
|
688
|
-
mobile.
|
689
|
-
([#263](https://github.com/codevise/pageflow/pull/263),
|
690
|
-
[#267](https://github.com/codevise/pageflow/pull/267))
|
691
|
-
|
692
|
-
##### Admin/Editor
|
693
|
-
|
694
|
-
- Use locale from request header if user has not selected one.
|
695
|
-
([#265](https://github.com/codevise/pageflow/pull/265))
|
696
|
-
- Performance improvement: Speed up file polling requests in editor.
|
697
|
-
([#276](https://github.com/codevise/pageflow/pull/276))
|
698
|
-
|
699
|
-
##### Rails Engine
|
700
|
-
|
701
|
-
- Allow exluding widgets from being rendered in the preview.
|
702
|
-
([#271](https://github.com/codevise/pageflow/pull/271))
|
703
|
-
- Authorize display of entry admin tabs.
|
704
|
-
([#272](https://github.com/codevise/pageflow/pull/272))
|
705
|
-
- Trigger `pageflow.events` Event when the multimedia alert is closed.
|
706
|
-
([#260](https://github.com/codevise/pageflow/pull/260))
|
707
|
-
- Pass page widget in context option of media events.
|
708
|
-
([#273](https://github.com/codevise/pageflow/pull/273))
|
709
|
-
|
710
|
-
##### Internals
|
711
|
-
|
712
|
-
- Upgrade to Paperclip 4.2 to improve temp file removal.
|
713
|
-
([#289](https://github.com/codevise/pageflow/pull/289))
|
714
|
-
- Include teaspoon javascript tests in travis run.
|
715
|
-
([#264](https://github.com/codevise/pageflow/pull/264),
|
716
|
-
[#294](https://github.com/codevise/pageflow/pull/294))
|
717
|
-
- Use container based travis infrastructure and cache gem bundle
|
718
|
-
between test runs.
|
719
|
-
([#270](https://github.com/codevise/pageflow/pull/270))
|
720
|
-
- Improve install instructions in README.
|
721
|
-
([#283](https://github.com/codevise/pageflow/pull/283),
|
722
|
-
[#285](https://github.com/codevise/pageflow/pull/285),
|
723
|
-
[#293](https://github.com/codevise/pageflow/pull/293))
|
724
|
-
- Bug fix: Reset capybara session before cleaning the database in
|
725
|
-
tests.
|
726
|
-
([#269](https://github.com/codevise/pageflow/pull/269))
|
727
|
-
- Bug fix: Prevent order dependent test suite failures.
|
728
|
-
([#274](https://github.com/codevise/pageflow/pull/274))
|
729
|
-
|
730
|
-
### Version 0.7.2
|
731
|
-
|
732
|
-
2015-02-25
|
733
|
-
|
734
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.7.1...v0.7.2)
|
735
|
-
|
736
|
-
- Bug fix: Depend on version 1.x of `aws-sdk` gem.
|
737
|
-
([#259](https://github.com/codevise/pageflow/pull/259))
|
738
|
-
|
739
|
-
### Version 0.7.1
|
740
|
-
|
741
|
-
2015-02-19
|
742
|
-
|
743
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.7.0...v0.7.1)
|
744
|
-
|
745
|
-
- Bug fix: Make gem versions more specific.
|
746
|
-
([#254](https://github.com/codevise/pageflow/pull/254),
|
747
|
-
[#256](https://github.com/codevise/pageflow/pull/256))
|
748
|
-
- Bug fix: Loosen JBuilder dependency.
|
749
|
-
([#257](https://github.com/codevise/pageflow/pull/257))
|
750
|
-
- Bug fix: Make custom Backbone Marionette renderer accept functions
|
751
|
-
as templates.
|
752
|
-
([#252](https://github.com/codevise/pageflow/pull/252))
|
753
|
-
|
754
|
-
### Version 0.7.0
|
755
|
-
|
756
|
-
2015-02-03
|
757
|
-
|
758
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.6.0...v0.7.0)
|
759
|
-
|
760
|
-
##### Manual Update Step
|
761
|
-
|
762
|
-
- The locale can now be changed on a per user and per entry basis.
|
763
|
-
([#220](https://github.com/codevise/pageflow/pull/220))
|
764
|
-
|
765
|
-
For language selection to work inside the admin, you need to add the
|
766
|
-
following line to the setup block inside your
|
767
|
-
`config/initializers/active_admin.rb` file:
|
768
|
-
|
769
|
-
ActiveAdmin.setup do |config|
|
770
|
-
Pageflow.active_admin_settings(config)
|
771
|
-
|
772
|
-
# ...
|
773
|
-
end
|
774
|
-
|
775
|
-
So far `en` and `de` locales are supported. The default locale can
|
776
|
-
be configured in your `config/application.rb` file just like for any
|
777
|
-
other Rails app:
|
778
|
-
|
779
|
-
config.i18n.default_locale = :de
|
780
|
-
|
781
|
-
If you do not wish to allow users to change the locale setting, add
|
782
|
-
the following line to your `config/initializers/pageflow.rb` file:
|
783
|
-
|
784
|
-
# Make only some locales available
|
785
|
-
config.available_locales = [:de]
|
786
|
-
|
787
|
-
- DOM Change: The
|
788
|
-
[overview close button](https://github.com/codevise/pageflow/pull/220/files#diff-ff2814e1f24a8bc9a279aebdda1094cdR3)
|
789
|
-
and
|
790
|
-
[the scroll/hidden text indicators](https://github.com/codevise/pageflow/pull/220/files#diff-59509a460b3b5b90c4d7b46bcb906befL13)
|
791
|
-
now use localizable texts instead of relying on text in
|
792
|
-
images. Custom themes must either hide or style these texts.
|
793
|
-
|
794
|
-
##### Public Site
|
795
|
-
|
796
|
-
- Twitter share cards support.
|
797
|
-
([#218](https://github.com/codevise/pageflow/pull/218))
|
798
|
-
- Bug fix: Cache head fragment for different share targets.
|
799
|
-
([#243](https://github.com/codevise/pageflow/pull/243))
|
800
|
-
- Bug fix: Improve social sharing buttons.
|
801
|
-
([#246](https://github.com/codevise/pageflow/pull/246))
|
802
|
-
- Bug fix: Ensure target blank for content links.
|
803
|
-
([#233](https://github.com/codevise/pageflow/pull/233))
|
804
|
-
- Bug fix: Improve top margin of pages without title.
|
805
|
-
([#223](https://github.com/codevise/pageflow/pull/223))
|
806
|
-
- Bug fix: Correct width of title elements with text position right.
|
807
|
-
([#224](https://github.com/codevise/pageflow/pull/224))
|
808
|
-
- Bug fix: Correct logo height on mobile devices.
|
809
|
-
([#234](https://github.com/codevise/pageflow/pull/234))
|
810
|
-
- Bug fix: Prevent illegal UTF8 characters from causing javascript
|
811
|
-
syntax errors.
|
812
|
-
([#238](https://github.com/codevise/pageflow/pull/238),
|
813
|
-
[#239](https://github.com/codevise/pageflow/pull/239))
|
814
|
-
|
815
|
-
##### Admin/Editor
|
816
|
-
|
817
|
-
- Improved page type select drop down menu.
|
818
|
-
([#249](https://github.com/codevise/pageflow/pull/249))
|
819
|
-
- Improved extensible help dialog.
|
820
|
-
([#248](https://github.com/codevise/pageflow/pull/248))
|
821
|
-
- Update rich text editor.
|
822
|
-
([#232](https://github.com/codevise/pageflow/pull/232))
|
823
|
-
- Allow mailto protocol in content links.
|
824
|
-
([#245](https://github.com/codevise/pageflow/pull/245))
|
825
|
-
- Bug fix: Remove unused additional info box fields for background
|
826
|
-
audio page type.
|
827
|
-
([#226](https://github.com/codevise/pageflow/pull/226))
|
828
|
-
- Bug fix: Allow unsetting the custom share image.
|
829
|
-
([#230](https://github.com/codevise/pageflow/pull/230))
|
830
|
-
- Bug fix: Do not display outdated data when visiting editor with
|
831
|
-
browser back.
|
832
|
-
([#239](https://github.com/codevise/pageflow/pull/239))
|
833
|
-
- Bug fix: Stop edit lock polling when session expires.
|
834
|
-
([#240](https://github.com/codevise/pageflow/pull/240))
|
835
|
-
- Bug fix: Add missing en translations.
|
836
|
-
([#237](https://github.com/codevise/pageflow/pull/237),
|
837
|
-
[#247](https://github.com/codevise/pageflow/pull/247))
|
838
|
-
|
839
|
-
##### Rails Engine
|
840
|
-
|
841
|
-
- New plugin method for configuration API.
|
842
|
-
([#244](https://github.com/codevise/pageflow/pull/244))
|
843
|
-
- Refactor default theme to ease importing additional files.
|
844
|
-
([#229](https://github.com/codevise/pageflow/pull/229))
|
845
|
-
- Dispatch media events on video/audio playback.
|
846
|
-
([#227](https://github.com/codevise/pageflow/pull/227))
|
847
|
-
- Remove unused page type engine base class.
|
848
|
-
([#225](https://github.com/codevise/pageflow/pull/225))
|
849
|
-
- Bug fix: Depend on working jquery-fileupload-rails patch level
|
850
|
-
version.
|
851
|
-
([#235](https://github.com/codevise/pageflow/pull/235))
|
852
|
-
|
853
|
-
### Version 0.6.0
|
854
|
-
|
855
|
-
2014-12-15
|
856
|
-
|
857
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.5.0...v0.6.0)
|
858
|
-
|
859
|
-
##### Public Site
|
860
|
-
|
861
|
-
- Allow displaying a different poster image for video pages on mobile
|
862
|
-
devices where autoplay is not supported.
|
863
|
-
([#143](https://github.com/codevise/pageflow/pull/143))
|
864
|
-
- Animate scrolling indicator initially.
|
865
|
-
([#144](https://github.com/codevise/pageflow/pull/144))
|
866
|
-
- Improve Facebook open graph meta tags.
|
867
|
-
([#157](https://github.com/codevise/pageflow/pull/157))
|
868
|
-
- Allow sharing individual pages and changing the share image.
|
869
|
-
([#206](https://github.com/codevise/pageflow/pull/206))
|
870
|
-
- Allow configuring position of background videos.
|
871
|
-
([#176](https://github.com/codevise/pageflow/pull/176))
|
872
|
-
- Allow emphasizing recently added pages.
|
873
|
-
([#195](https://github.com/codevise/pageflow/pull/195),
|
874
|
-
[#214](https://github.com/codevise/pageflow/pull/214))
|
875
|
-
- Start at bottom of page when scrolling backwards.
|
876
|
-
([#178](https://github.com/codevise/pageflow/pull/178),
|
877
|
-
[#184](https://github.com/codevise/pageflow/pull/184),
|
878
|
-
[#185](https://github.com/codevise/pageflow/pull/185))
|
879
|
-
- Prevent search engine indexing of video/audio file pages.
|
880
|
-
([#219](https://github.com/codevise/pageflow/pull/219))
|
881
|
-
- Improve iOS 8 compatability.
|
882
|
-
([#186](https://github.com/codevise/pageflow/pull/186),
|
883
|
-
[#199](https://github.com/codevise/pageflow/pull/199))
|
884
|
-
- Improve IE 11 compatability.
|
885
|
-
([#189](https://github.com/codevise/pageflow/pull/189))
|
886
|
-
- Bug fix: Let Favicon path point into theme directoy.
|
887
|
-
([#164](https://github.com/codevise/pageflow/pull/164))
|
888
|
-
- Bug fix: Correct position of video loading spinner.
|
889
|
-
([#141](https://github.com/codevise/pageflow/pull/141))
|
890
|
-
- Bug fix: Audio loop page did not loop.
|
891
|
-
([#147](https://github.com/codevise/pageflow/pull/147))
|
892
|
-
- Bug fix: Prevent resolving ready promise before dom ready event.
|
893
|
-
([#167](https://github.com/codevise/pageflow/pull/167))
|
894
|
-
|
895
|
-
##### Admin/Editor
|
896
|
-
|
897
|
-
- New background positioning dialog.
|
898
|
-
([#212](https://github.com/codevise/pageflow/pull/212))
|
899
|
-
- Extensible tab concept for account and entry admin view.
|
900
|
-
([#165](https://github.com/codevise/pageflow/pull/165))
|
901
|
-
- Improve editor preview when sidebar causes narrow display.
|
902
|
-
([#196](https://github.com/codevise/pageflow/pull/196))
|
903
|
-
- Editor UI improvements.
|
904
|
-
([#182](https://github.com/codevise/pageflow/pull/182),
|
905
|
-
[#194](https://github.com/codevise/pageflow/pull/194),
|
906
|
-
[#200](https://github.com/codevise/pageflow/pull/200),
|
907
|
-
[#203](https://github.com/codevise/pageflow/pull/203),
|
908
|
-
[#207](https://github.com/codevise/pageflow/pull/207),
|
909
|
-
[#208](https://github.com/codevise/pageflow/pull/208),
|
910
|
-
[#210](https://github.com/codevise/pageflow/pull/210),
|
911
|
-
[#215](https://github.com/codevise/pageflow/pull/215))
|
912
|
-
- Bug fix: Audio kept playing in editor when chaning page type.
|
913
|
-
([#149](https://github.com/codevise/pageflow/pull/149))
|
914
|
-
- Bug fix: Do not display edit lock warning after reopening an entry
|
915
|
-
in the same tab.
|
916
|
-
([#202](https://github.com/codevise/pageflow/pull/202))
|
917
|
-
- Bug fix: Do not pass obsolete page configurations to page type
|
918
|
-
hooks.
|
919
|
-
([#204](https://github.com/codevise/pageflow/pull/204))
|
920
|
-
- Bug fix: Return to correct tab after file selection.
|
921
|
-
([#211](https://github.com/codevise/pageflow/pull/211))
|
168
|
+
- File configuration
|
169
|
+
([#654](https://github.com/codevise/pageflow/pull/654),
|
170
|
+
[#703](https://github.com/codevise/pageflow/pull/703),
|
171
|
+
[#673](https://github.com/codevise/pageflow/pull/673))
|
172
|
+
- Add alt text attribute to files
|
173
|
+
([#685](https://github.com/codevise/pageflow/pull/685))
|
174
|
+
- Manage text track files as nested files
|
175
|
+
([#660](https://github.com/codevise/pageflow/pull/660),
|
176
|
+
[#684](https://github.com/codevise/pageflow/pull/684),
|
177
|
+
[#683](https://github.com/codevise/pageflow/pull/683),
|
178
|
+
[#682](https://github.com/codevise/pageflow/pull/682),
|
179
|
+
[#688](https://github.com/codevise/pageflow/pull/688),
|
180
|
+
[#716](https://github.com/codevise/pageflow/pull/716))
|
181
|
+
- File filters
|
182
|
+
([#659](https://github.com/codevise/pageflow/pull/659))
|
183
|
+
- Let file selection handler abort navigation
|
184
|
+
([#736](https://github.com/codevise/pageflow/pull/736))
|
185
|
+
- Add background inputs group
|
186
|
+
([#711](https://github.com/codevise/pageflow/pull/711))
|
187
|
+
- Improve editor page lifecycle during delete
|
188
|
+
([#710](https://github.com/codevise/pageflow/pull/710))
|
189
|
+
- Make editor play nicely with Redux
|
190
|
+
([#700](https://github.com/codevise/pageflow/pull/700))
|
191
|
+
- Improve html translation support in i18nUtils
|
192
|
+
([#671](https://github.com/codevise/pageflow/pull/671))
|
193
|
+
- Add interpolation support for i18nUtils.findTranslation
|
194
|
+
([#648](https://github.com/codevise/pageflow/pull/648))
|
195
|
+
- Bug fix: Use correct Backbone sync parameter to trigger retry
|
196
|
+
([#696](https://github.com/codevise/pageflow/pull/696))
|
197
|
+
- Bug fix: Do not overwrite file rights when polling
|
198
|
+
([#715](https://github.com/codevise/pageflow/pull/715))
|
199
|
+
- Bug fix: Improve special character handling in formDataUtils
|
200
|
+
([#690](https://github.com/codevise/pageflow/pull/690))
|
201
|
+
|
202
|
+
Backbone Views:
|
203
|
+
|
204
|
+
- Improve DropDownButton
|
205
|
+
([#681](https://github.com/codevise/pageflow/pull/681))
|
206
|
+
- Ensure select input view displays default
|
207
|
+
([#725](https://github.com/codevise/pageflow/pull/725))
|
208
|
+
- Add disabled option to referenceinputview
|
209
|
+
([#734](https://github.com/codevise/pageflow/pull/734))
|
210
|
+
|
211
|
+
Help:
|
212
|
+
|
213
|
+
- Allow external links in editor help
|
214
|
+
([#649](https://github.com/codevise/pageflow/pull/649))
|
215
|
+
- Add inline help for background inputs
|
216
|
+
([#728](https://github.com/codevise/pageflow/pull/728))
|
217
|
+
- Add help entry for text tracks
|
218
|
+
([#727](https://github.com/codevise/pageflow/pull/727))
|
219
|
+
- Improve inline help for rights and alt text field
|
220
|
+
([#724](https://github.com/codevise/pageflow/pull/724))
|
922
221
|
|
923
222
|
##### Rails Engine
|
924
223
|
|
925
|
-
-
|
926
|
-
([#
|
927
|
-
|
928
|
-
|
929
|
-
-
|
930
|
-
([#
|
931
|
-
|
932
|
-
|
933
|
-
([#171](https://github.com/codevise/pageflow/pull/171))
|
934
|
-
- Allow widget types to add content to page head.
|
935
|
-
([#217](https://github.com/codevise/pageflow/pull/217))
|
936
|
-
- Richer CSS classes for theming of progress bars.
|
937
|
-
([#177](https://github.com/codevise/pageflow/pull/177))
|
938
|
-
- Allow special theming of first page of chapter.
|
939
|
-
([#151](https://github.com/codevise/pageflow/pull/151),
|
940
|
-
[#209](https://github.com/codevise/pageflow/pull/209))
|
941
|
-
- Allow page types to control whether an inverted scrolling indicator
|
942
|
-
is used.
|
943
|
-
([#180](https://github.com/codevise/pageflow/pull/180))
|
944
|
-
- Give page types access to scroller properties.
|
945
|
-
([#181](https://github.com/codevise/pageflow/pull/181))
|
224
|
+
- Introduce conditional thumbnail candidates
|
225
|
+
([#705](https://github.com/codevise/pageflow/pull/705))
|
226
|
+
- Add option to skip smil output
|
227
|
+
([#645](https://github.com/codevise/pageflow/pull/645))
|
228
|
+
- Improve hls options fallback
|
229
|
+
([#708](https://github.com/codevise/pageflow/pull/708))
|
230
|
+
- Link to plugins wiki page from readme
|
231
|
+
([#674](https://github.com/codevise/pageflow/pull/674))
|
946
232
|
|
947
233
|
##### Internals
|
948
234
|
|
949
|
-
-
|
950
|
-
([#
|
951
|
-
-
|
952
|
-
([#
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
- Improve playback of certain videos in Firefox.
|
973
|
-
([#116](https://github.com/codevise/pageflow/pull/116))
|
974
|
-
- Add audio loop page type.
|
975
|
-
([#120](https://github.com/codevise/pageflow/pull/120))
|
976
|
-
- Allow page thumbnails to be explictly defined.
|
977
|
-
([#121](https://github.com/codevise/pageflow/pull/121))
|
978
|
-
- Reword multimedia alert.
|
979
|
-
([#122](https://github.com/codevise/pageflow/pull/122))
|
980
|
-
- Background shadow position always left on phones.
|
981
|
-
([#123](https://github.com/codevise/pageflow/pull/123))
|
982
|
-
- Do not display chapter headings in overview if only one chapter
|
983
|
-
exists. Improve display of multiline chapter titles in overview.
|
984
|
-
([#130](https://github.com/codevise/pageflow/pull/130))
|
985
|
-
- Improve styling of player controls on mobile platforms.
|
986
|
-
([#132](https://github.com/codevise/pageflow/pull/132))
|
987
|
-
- Allow hiding social media links in themes by adding a CSS class.
|
988
|
-
([#135](https://github.com/codevise/pageflow/pull/135))
|
989
|
-
- Add `data-theme` attribute to DOM so page types can determine the
|
990
|
-
current theme name.
|
991
|
-
([#136](https://github.com/codevise/pageflow/pull/136))
|
992
|
-
- Bug fix: Correct color of links in additional info box.
|
993
|
-
([#117](https://github.com/codevise/pageflow/pull/117))
|
994
|
-
- Bug fix: iOS 8 window.onload bug workaround.
|
995
|
-
([#119](https://github.com/codevise/pageflow/pull/119),
|
996
|
-
[#131](https://github.com/codevise/pageflow/pull/131))
|
997
|
-
- Bug fix: Add missing overview pictogram for internal links page.
|
998
|
-
([#137](https://github.com/codevise/pageflow/pull/137))
|
999
|
-
|
1000
|
-
##### Admin/Editor
|
1001
|
-
|
1002
|
-
- Display an error message if an uploaded file cannot be matched to a
|
1003
|
-
file type.
|
1004
|
-
([#133](https://github.com/codevise/pageflow/pull/133))
|
1005
|
-
- Bug fix: Spelling error in form input label.
|
1006
|
-
([#128](https://github.com/codevise/pageflow/pull/128))
|
1007
|
-
- Bug fix: Do not escape HTML in preview of thumbnail hover texts in
|
1008
|
-
internal links page.
|
1009
|
-
([#134](https://github.com/codevise/pageflow/pull/134))
|
1010
|
-
|
1011
|
-
##### Rails Engine
|
1012
|
-
|
1013
|
-
- Allow page types to introduce new file types.
|
1014
|
-
([#124](https://github.com/codevise/pageflow/pull/124))
|
1015
|
-
- Allow page types to customize their thumbnail representation.
|
1016
|
-
([#138](https://github.com/codevise/pageflow/pull/138))
|
1017
|
-
- Remove some unused images from default theme.
|
1018
|
-
([#139](https://github.com/codevise/pageflow/pull/139))
|
1019
|
-
- Make zencoder urls configurable.
|
1020
|
-
([#145](https://github.com/codevise/pageflow/pull/145))
|
1021
|
-
|
1022
|
-
### Version 0.4.0
|
1023
|
-
|
1024
|
-
2014-09-08
|
1025
|
-
|
1026
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.3.0...v0.4.0)
|
1027
|
-
|
1028
|
-
##### Breaking Changes
|
1029
|
-
|
1030
|
-
- The `<meta name="description" />` tag now uses the `Entry#summary`
|
1031
|
-
attribute which can be edited in the editor. If you have a custom
|
1032
|
-
`layouts/pageflow/_meta_tags.html.erb` partial in your project,
|
1033
|
-
remove the description meta tag there to prevent duplicate tags.
|
1034
|
-
([#112](https://github.com/codevise/pageflow/pull/112))
|
1035
|
-
|
1036
|
-
##### Public Site
|
1037
|
-
|
1038
|
-
- Improve generation of credits box.
|
1039
|
-
([#99](https://github.com/codevise/pageflow/pull/99))
|
1040
|
-
- Bug fix: Respond with 404 for unknown format.
|
1041
|
-
([#101](https://github.com/codevise/pageflow/pull/101))
|
1042
|
-
- Bug fix: Decrease margin of links in text in default theme.
|
1043
|
-
([#108](https://github.com/codevise/pageflow/pull/108))
|
1044
|
-
- Bug fix: Ensure top margin in additional info box even if no title
|
1045
|
-
is present.
|
1046
|
-
([#109](https://github.com/codevise/pageflow/pull/109))
|
1047
|
-
- Bug fix: Logo was no longer left aligned at certain window widths.
|
1048
|
-
([#111](https://github.com/codevise/pageflow/pull/111))
|
1049
|
-
|
1050
|
-
##### Admin/Editor
|
1051
|
-
|
1052
|
-
- Improve order of files in editor.
|
1053
|
-
([#105](https://github.com/codevise/pageflow/pull/105))
|
1054
|
-
- Improve order of items in select boxes of membership form.
|
1055
|
-
([#107](https://github.com/codevise/pageflow/pull/107))
|
1056
|
-
- Blank slate for editor.
|
1057
|
-
([#110](https://github.com/codevise/pageflow/pull/110))
|
1058
|
-
- Improve encoding confirmation workflow in editor.
|
1059
|
-
([#113](https://github.com/codevise/pageflow/pull/113))
|
1060
|
-
- Improve entry publication workflow in editor.
|
1061
|
-
([#114](https://github.com/codevise/pageflow/pull/114))
|
1062
|
-
- Bug fix: Editing a newly created page altered the default attribute
|
1063
|
-
values of subsequently created pages.
|
1064
|
-
([#103](https://github.com/codevise/pageflow/pull/103))
|
1065
|
-
- Bug fix: Update positions of chapters and pages when an item is
|
1066
|
-
removed.
|
1067
|
-
([#104](https://github.com/codevise/pageflow/pull/104))
|
1068
|
-
- Bug fix: Do not send bad request by trying to save order of empty
|
1069
|
-
chapter.
|
1070
|
-
([#104](https://github.com/codevise/pageflow/pull/104))
|
1071
|
-
- Bug fix: Link dialog of rich text editor was broken.
|
1072
|
-
([#108](https://github.com/codevise/pageflow/pull/108))
|
1073
|
-
|
1074
|
-
### Version 0.3.0
|
1075
|
-
|
1076
|
-
2014-08-22
|
1077
|
-
|
1078
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.2.1...v0.3.0)
|
1079
|
-
|
1080
|
-
##### Breaking Changes
|
1081
|
-
|
1082
|
-
- Requiring `pageflow/seeds` in your `db/seeds.rb` file no longer
|
1083
|
-
automatically creates database records. Instead, you can include the
|
1084
|
-
`Pageflow::Seeds` module to configure your database seed via a DSL.
|
1085
|
-
([#73](https://github.com/codevise/pageflow/pull/73))
|
1086
|
-
|
1087
|
-
To keep seeding your database with the same default users and sample
|
1088
|
-
entry as before, re-running the `pagflow:seeds` generator and choose
|
1089
|
-
to overwrite your your `db/seeds.rb` file:
|
1090
|
-
|
1091
|
-
$ cd your_pageflow_app/
|
1092
|
-
$ rails generate pageflow:seeds
|
1093
|
-
|
1094
|
-
- DOM change: `.navigation a.navigation_home` has been renamed to
|
1095
|
-
`.navigation a.navigation_top`. You need to update corresponding
|
1096
|
-
selectors inside custom themes. Instead, a new `.navigation
|
1097
|
-
a.navigation_home` button is now supported, which links to a
|
1098
|
-
configurable external site.
|
1099
|
-
([#98](https://github.com/codevise/pageflow/pull/98))
|
1100
|
-
|
1101
|
-
If you do not wish to use this new home button with your custom
|
1102
|
-
theme, you can disable it when registering themes in your
|
1103
|
-
`config/initializers/pageflow.rb`:
|
1104
|
-
|
1105
|
-
config.themes.register(:custom, no_home_button: true)
|
1106
|
-
|
1107
|
-
This will cause Pageflow to only render the `a.navigation_top` link
|
1108
|
-
in entries using your theme.
|
1109
|
-
|
1110
|
-
##### Public Site
|
1111
|
-
|
1112
|
-
- Bug fix: Audio player timestamps were flickering on play.
|
1113
|
-
([#74](https://github.com/codevise/pageflow/pull/74))
|
1114
|
-
- Bug fix: Link IE stylesheets/javascripts correctly.
|
1115
|
-
([#81](https://github.com/codevise/pageflow/pull/81), [#92](https://github.com/codevise/pageflow/pull/92))
|
1116
|
-
- Bug fix: Improve SSL support
|
1117
|
-
([#88](https://github.com/codevise/pageflow/pull/88))
|
1118
|
-
- Bug fix: Ensure entry stylesheets are not cached after
|
1119
|
-
re-publication.
|
1120
|
-
([#94](https://github.com/codevise/pageflow/pull/94))
|
1121
|
-
|
1122
|
-
##### Admin/Editor
|
1123
|
-
|
1124
|
-
- Audio/video autoplay is now configurable.
|
1125
|
-
([#95](https://github.com/codevise/pageflow/pull/95))
|
1126
|
-
- Bug fix: Rich text editor added `<p>` instead of `<br>` tags in IE 11.
|
1127
|
-
([#91](https://github.com/codevise/pageflow/pull/91))
|
1128
|
-
|
1129
|
-
##### Rails Engine
|
1130
|
-
|
1131
|
-
- Paths of files generated by Zencoder are now configurable.
|
1132
|
-
([#71](https://github.com/codevise/pageflow/pull/71))
|
1133
|
-
- Zencoder output to Akamai NetStorage.
|
1134
|
-
([#78](https://github.com/codevise/pageflow/pull/78))
|
1135
|
-
- Generate protocol relative Zencoder urls when `:s3_protocol` in
|
1136
|
-
`zencoder_options` is empty string.
|
1137
|
-
([#83](https://github.com/codevise/pageflow/pull/83))
|
1138
|
-
- `public_entry_url_options` option to configure urls of published entries.
|
1139
|
-
([#84](https://github.com/codevise/pageflow/pull/84), [#97](https://github.com/codevise/pageflow/pull/97))
|
1140
|
-
- Placeholder partial to integrate analytics in editor.
|
1141
|
-
([#93](https://github.com/codevise/pageflow/pull/93))
|
1142
|
-
- Editor JavaScript API to allow new page types to provide new editor features.
|
1143
|
-
([#96](https://github.com/codevise/pageflow/pull/96))
|
1144
|
-
- Bug fix: Update jbuilder gem dependency
|
1145
|
-
([#79](https://github.com/codevise/pageflow/pull/79))
|
1146
|
-
|
1147
|
-
### Version 0.2.1
|
1148
|
-
|
1149
|
-
2014-07-25
|
1150
|
-
|
1151
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.2.0...v0.2.1)
|
1152
|
-
|
1153
|
-
- Update Zencoder gem to fix [Zencoder SSL issue](http://status.zencoder.com/events/84) ([#70](https://github.com/codevise/pageflow/pull/70)).
|
1154
|
-
|
1155
|
-
### Version 0.2.0
|
1156
|
-
|
1157
|
-
2014-07-18
|
1158
|
-
|
1159
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.1.0...v0.2.0)
|
1160
|
-
|
1161
|
-
##### Breaking Changes
|
1162
|
-
|
1163
|
-
- Themes have been splitted in Themes and Themings. Themings
|
1164
|
-
exist per account in the database containing configuration like
|
1165
|
-
copyright/imprint link urls and reference a theme. Themes represent
|
1166
|
-
available CSS and correspond directly to directories under
|
1167
|
-
`pageflow/themes`. Themes are registered in the Pageflow
|
1168
|
-
initializer.
|
1169
|
-
([#45](https://github.com/codevise/pageflow/pull/45))
|
1170
|
-
|
1171
|
-
To update your application:
|
1172
|
-
|
1173
|
-
* Add the following line to your `config/initializers/pageflow.rb`:
|
1174
|
-
|
1175
|
-
config.themes.register(:default)
|
1176
|
-
|
1177
|
-
* Install and run the migrations to convert your database.
|
1178
|
-
|
1179
|
-
##### Public Site
|
1180
|
-
|
1181
|
-
- Bug fix: Improve video playback support on iOS and Android.
|
1182
|
-
([#32](https://github.com/codevise/pageflow/pull/32), [#33](https://github.com/codevise/pageflow/pull/33))
|
1183
|
-
|
1184
|
-
##### Admin/Editor
|
1185
|
-
|
1186
|
-
- Theming attributes can now be edited via the accounts admin.
|
1187
|
-
([#45](https://github.com/codevise/pageflow/pull/45))
|
1188
|
-
- Option to require explicit confirmation of video/audio encoding by user
|
1189
|
-
before submitting jobs to Zencoder.
|
1190
|
-
([#52](https://github.com/codevise/pageflow/pull/52))
|
1191
|
-
- Preview draft revision via admin.
|
1192
|
-
([#62](https://github.com/codevise/pageflow/pull/62))
|
1193
|
-
- Bug fix: Missing translations for attribute/model names in admin.
|
1194
|
-
([#36](https://github.com/codevise/pageflow/pull/36), [#58](https://github.com/codevise/pageflow/pull/66))
|
1195
|
-
- Bug fix: Reusing files from other entries was broken in editor.
|
1196
|
-
([#59](https://github.com/codevise/pageflow/pull/58))
|
1197
|
-
|
1198
|
-
##### Rails Engine
|
1199
|
-
|
1200
|
-
- Theme CSS files are automatically registered for asset precompilation.
|
1201
|
-
([#45](https://github.com/codevise/pageflow/pull/45))
|
1202
|
-
- `pageflow:theme` generator to copy theme template to main application.
|
1203
|
-
([#45](https://github.com/codevise/pageflow/pull/45))
|
1204
|
-
- More configurable default theme.
|
1205
|
-
([#35](https://github.com/codevise/pageflow/pull/35))
|
1206
|
-
- `public_entry_request_scope` option to restrict the published
|
1207
|
-
entries available under a certain host name.
|
1208
|
-
([#61](https://github.com/codevise/pageflow/pull/61))
|
1209
|
-
|
1210
|
-
##### Internals
|
1211
|
-
|
1212
|
-
- Tests now use MySQL.
|
1213
|
-
The dummy application used to test the Pageflow Gem against now uses MySQL.
|
1214
|
-
To run the testsuite you need to have a MySQL database called `pageflow_dummy_test`
|
1215
|
-
You can configure user and password by setting the environment variables
|
1216
|
-
`PAGEFLOW_DB_USER` and `PAGEFLOW_DB_PASSWORD`. If they are not present `root` is
|
1217
|
-
assumed as user and the password is left blank.
|
1218
|
-
([#56](https://github.com/codevise/pageflow/pull/56))
|
1219
|
-
- The Accounts admin show template has been splitted into multiple
|
1220
|
-
partials.
|
1221
|
-
([#65](https://github.com/codevise/pageflow/pull/65))
|
1222
|
-
- Bug fix: Specify `jquery-ui-rails` major version in gemspec.
|
1223
|
-
([#67](https://github.com/codevise/pageflow/pull/67))
|
1224
|
-
|
1225
|
-
### Version 0.1.0
|
1226
|
-
|
1227
|
-
2014-05-16
|
1228
|
-
|
1229
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/v0.0.1...v0.1.0)
|
1230
|
-
|
1231
|
-
- `pageflow:install` generator now creates resque rake tasks.
|
1232
|
-
- Configuration option to change email address user invitations are sent from.
|
1233
|
-
- Improved asset precompilation for production environment.
|
1234
|
-
|
1235
|
-
### Version 0.0.1
|
1236
|
-
|
1237
|
-
2014-05-05
|
1238
|
-
|
1239
|
-
- Initial release
|
235
|
+
- Use doclets.io for javascript api reference
|
236
|
+
([#644](https://github.com/codevise/pageflow/pull/644))
|
237
|
+
- Git ignore coverage directory
|
238
|
+
([#647](https://github.com/codevise/pageflow/pull/647))
|
239
|
+
- Use only one jshint config for hound
|
240
|
+
([#658](https://github.com/codevise/pageflow/pull/658))
|
241
|
+
- Do not warn about missing frozen string comment
|
242
|
+
([#646](https://github.com/codevise/pageflow/pull/646))
|
243
|
+
- Update travis ruby version to 2.1.7
|
244
|
+
([#695](https://github.com/codevise/pageflow/pull/695))
|
245
|
+
- Remove cargo-culted @body_class
|
246
|
+
([#616](https://github.com/codevise/pageflow/pull/616))
|
247
|
+
- Remove unneeded loop
|
248
|
+
([#578](https://github.com/codevise/pageflow/pull/578))
|
249
|
+
- Use create instead of build_stubbed in EditLock tests
|
250
|
+
([#689](https://github.com/codevise/pageflow/pull/689))
|
251
|
+
- Bug fix: Handle symbolized keys in mailer options
|
252
|
+
([#693](https://github.com/codevise/pageflow/pull/693))
|
253
|
+
|
254
|
+
See
|
255
|
+
[0-11-stable](https://github.com/codevise/pageflow/blob/0-11-stable/CHANGELOG.md)
|
256
|
+
branch for previous changes.
|