Skip to content

Commit c2bd9bb

Browse files
authored
Merge pull request #3854 from extendify/add-library-13-4
Add library update 13.4
2 parents 86dc7b1 + a263cae commit c2bd9bb

File tree

7 files changed

+8
-14
lines changed

7 files changed

+8
-14
lines changed

redux-core/extendify-sdk/bin/clean-build-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ if ! git config user.email | grep -q 'users.noreply.github.com'; then
33
echo 'Cleaning build files before commit...'
44
for i in $(dirname "pwd")/public/build/* ;do truncate -s 0 "$i";done
55
truncate -s 0 $(dirname "pwd")/public/editorplus/editorplus.min.js
6-
git add -A .
6+
git add -A $(dirname "pwd")/public/
77
fi

redux-core/extendify-sdk/editorplus/EditorPlus.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,6 @@ function ($classes) {
122122
public function useDeprecatedTemplate()
123123
{
124124
$post = get_post();
125-
if (isset($GLOBALS['post'])) {
126-
// This will populate on the frontend.
127-
$post = wp_unslash($GLOBALS['post']);
128-
}
129-
130125
// phpcs:ignore WordPress.Security.NonceVerification.Recommended
131126
if (is_admin() && isset($_GET['post'])) {
132127
// This will populate on the admin.

redux-core/extendify-sdk/extendify-sdk.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?php
2-
32
if (!defined('ABSPATH')) {
43
exit;
54
}

redux-core/extendify-sdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"dev": "npx mix",
1010
"watch": "npx mix watch",
1111
"lint": "eslint . --ext .js",
12-
"lint-fix": "eslint . --ext .js --fix && git add -A .",
12+
"lint-fix": "eslint . --ext .js --fix",
1313
"prettier": "prettier . --check",
14-
"prettier-fix": "prettier . --write && git add -A .",
14+
"prettier-fix": "prettier . --write",
1515
"prepare": "husky install",
1616
"clean-build": "./bin/clean-build-files.sh"
1717
},

redux-core/extendify-sdk/public/build/extendify-utilities.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

redux-core/extendify-sdk/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=== Extendify Sdk ===
22
Requires at least: 5.4
3-
Stable tag: 13.1
3+
Stable tag: 13.4
44
Requires PHP: 5.6
55
Tested up to: 5.7.0

redux-core/extendify-sdk/utility-framework/classes/columns.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ We use it here to ensure columns blocks display well across themes.
3333
@apply ext-mb-0;
3434
}
3535

36-
[class*="fullwidth-cols"] .wp-block-column:first-child * {
36+
[class*="fullwidth-cols"] .wp-block-column:first-child > * {
3737
/* no suggestion */
3838
@apply ext-mt-0;
3939
}
4040

41-
[class*="fullwidth-cols"] .wp-block-column *:first-child {
41+
[class*="fullwidth-cols"] .wp-block-column > *:first-child {
4242
/* no suggestion */
4343
@apply ext-mt-0;
4444
}
4545

46-
[class*="fullwidth-cols"] .wp-block-column *:last-child {
46+
[class*="fullwidth-cols"] .wp-block-column > *:last-child {
4747
/* no suggestion */
4848
@apply ext-mb-0;
4949
}

0 commit comments

Comments
 (0)