Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Gallery Slider/Grid Block Collection Updates #1057

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
All notable changes to this project will be documented in this file.

## 2022.10
* Updated: Tribe Libs to v4.2
* Updated: Gallery Slider/Grid blocks to use the new Gallery Field Model Collection & code clean up
* Updated: Added `TRIBE_ENABLE_SVG_INLINE_STORAGE` define stub to local-config-sample.php
* Removed: Yoast hook that was removing the schema to be output.
* Updated: Switched to an mT-owned version of a11y-dialog w/ misc bug fixes and update body lock/unlock scripts to address CSS-defined `scroll-behavior: scroll`.
* Fixed: wordpress-stubs.patch failing to patch on php-stubs/wordpress-stubs v6.0.2 (again)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"johnpbloch/wordpress-core-installer": "2.0.*",
"moderntribe/acf-image-select": "dev-master",
"moderntribe/acf-menu-chooser": "^1.1",
"moderntribe/tribe-libs": "^4.0.3",
"moderntribe/tribe-libs": "^4.2",
"nickford/acf-swatch": "1.0.7",
"php-ds/php-ds": "^1.4",
"php-http/client-common": "^2.2",
Expand Down
113 changes: 60 additions & 53 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion local-config-sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

/*
* Theme service worker
*
*
* If your project needs to make use of the theme service worker, enable it here.
*/
// define( 'ENABLE_THEME_SERVICE_WORKER', true );
Expand All @@ -54,6 +54,14 @@
*/
define( 'WHOOPS_ENABLE', true );

/*
* Disable inline SVG storage, newly uploaded SVG's will no longer have
* their markup stored in post meta.
*
* @link https://github.com/moderntribe/tribe-libs/tree/4.x/src/Media#fetching-stored-svg-markup
*/
//define( 'TRIBE_ENABLE_SVG_INLINE_STORAGE', false );

/*
* Glomar
*
Expand Down
Loading