Changeset 3060539
- Timestamp:
- 03/28/2024 12:50:44 PM (2 years ago)
- Location:
- simple-tabs-block
- Files:
-
- 8 edited
- 1 copied
-
tags/2.1.0 (copied) (copied from simple-tabs-block/trunk)
-
tags/2.1.0/build/tab/block.json (modified) (2 diffs)
-
tags/2.1.0/build/tabs/block.json (modified) (4 diffs)
-
tags/2.1.0/readme.txt (modified) (3 diffs)
-
tags/2.1.0/simple-tabs-block.php (modified) (3 diffs)
-
trunk/build/tab/block.json (modified) (2 diffs)
-
trunk/build/tabs/block.json (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/simple-tabs-block.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-tabs-block/tags/2.1.0/build/tab/block.json
r3004348 r3060539 3 3 "apiVersion": 2, 4 4 "name": "cloudcatch/tab", 5 "version": "2. 0.1",5 "version": "2.1.0", 6 6 "title": "Tab", 7 7 "category": "design", … … 78 78 "fontSize": true 79 79 } 80 } 80 }, 81 "shadow": true 81 82 }, 82 83 "textdomain": "simple-tabs-block", -
simple-tabs-block/tags/2.1.0/build/tabs/block.json
r3004348 r3060539 3 3 "apiVersion": 2, 4 4 "name": "cloudcatch/tabs", 5 "version": "2. 0.1",5 "version": "2.1.0", 6 6 "title": "Tabs", 7 7 "category": "design", … … 39 39 "anchor": true, 40 40 "html": false, 41 "color": { 42 "gradients": true, 43 "link": false, 44 "__experimentalDefaultControls": { 45 "background": true, 46 "text": true 47 } 48 }, 41 49 "typography": { 42 50 "fontSize": true, … … 50 58 } 51 59 }, 60 "__experimentalBorder": { 61 "color": true, 62 "radius": true, 63 "style": true, 64 "width": true, 65 "__experimentalDefaultControls": { 66 "color": true, 67 "radius": true, 68 "style": true, 69 "width": true 70 } 71 }, 52 72 "spacing": { 73 "margin": true, 74 "padding": true, 53 75 "blockGap": true, 54 76 "units": [ … … 69 91 "type": "flex" 70 92 } 71 } 93 }, 94 "shadow": true 72 95 }, 73 96 "textdomain": "simple-tabs-block", -
simple-tabs-block/tags/2.1.0/readme.txt
r3004348 r3060539 3 3 Tags: tabs, tab, block 4 4 Requires at least: 6.4 5 Tested up to: 6. 4.15 Tested up to: 6.5 6 6 Requires PHP: 7.0 7 Stable tag: 2. 0.17 Stable tag: 2.1.0 8 8 License: GPL-2.0-or-later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Create accessible tabbed layouts 11 Create accessible tabbed layouts 12 12 13 13 == Description == … … 27 27 == Changelog == 28 28 29 = 2.1.0 = 30 * Fix: Undefined property warning 31 * Feat: Add additional block supports 32 * WP 6.5 compatibility 33 29 34 = 2.0.1 = 30 35 * WP 6.4 compatibility … … 41 46 * Docs: Compatibility with 6.1 42 47 43 = 1.2.1 = 48 = 1.2.1 = 44 49 45 50 * Fix: Various block fixes -
simple-tabs-block/tags/2.1.0/simple-tabs-block.php
r3004348 r3060539 5 5 * Requires at least: 6.4 6 6 * Requires PHP: 7.0 7 * Version: 2. 0.17 * Version: 2.1.0 8 8 * Author: CloudCatch LLC 9 9 * Author URI: https://cloudcatch.io … … 33 33 * 34 34 * @param boolean $should_update Whether to update. 35 * @param object $plugin The update offer.35 * @param object $plugin The update offer. 36 36 * @return boolean 37 37 */ … … 45 45 } 46 46 47 if ( version_compare( $plugin->Version, '2.0.0', '<' ) ) {47 if ( ! isset( $plugin->Version ) || version_compare( $plugin->Version, '2.0.0', '<' ) ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase 48 48 return false; 49 49 } -
simple-tabs-block/trunk/build/tab/block.json
r3004348 r3060539 3 3 "apiVersion": 2, 4 4 "name": "cloudcatch/tab", 5 "version": "2. 0.1",5 "version": "2.1.0", 6 6 "title": "Tab", 7 7 "category": "design", … … 78 78 "fontSize": true 79 79 } 80 } 80 }, 81 "shadow": true 81 82 }, 82 83 "textdomain": "simple-tabs-block", -
simple-tabs-block/trunk/build/tabs/block.json
r3004348 r3060539 3 3 "apiVersion": 2, 4 4 "name": "cloudcatch/tabs", 5 "version": "2. 0.1",5 "version": "2.1.0", 6 6 "title": "Tabs", 7 7 "category": "design", … … 39 39 "anchor": true, 40 40 "html": false, 41 "color": { 42 "gradients": true, 43 "link": false, 44 "__experimentalDefaultControls": { 45 "background": true, 46 "text": true 47 } 48 }, 41 49 "typography": { 42 50 "fontSize": true, … … 50 58 } 51 59 }, 60 "__experimentalBorder": { 61 "color": true, 62 "radius": true, 63 "style": true, 64 "width": true, 65 "__experimentalDefaultControls": { 66 "color": true, 67 "radius": true, 68 "style": true, 69 "width": true 70 } 71 }, 52 72 "spacing": { 73 "margin": true, 74 "padding": true, 53 75 "blockGap": true, 54 76 "units": [ … … 69 91 "type": "flex" 70 92 } 71 } 93 }, 94 "shadow": true 72 95 }, 73 96 "textdomain": "simple-tabs-block", -
simple-tabs-block/trunk/readme.txt
r3004348 r3060539 3 3 Tags: tabs, tab, block 4 4 Requires at least: 6.4 5 Tested up to: 6. 4.15 Tested up to: 6.5 6 6 Requires PHP: 7.0 7 Stable tag: 2. 0.17 Stable tag: 2.1.0 8 8 License: GPL-2.0-or-later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Create accessible tabbed layouts 11 Create accessible tabbed layouts 12 12 13 13 == Description == … … 27 27 == Changelog == 28 28 29 = 2.1.0 = 30 * Fix: Undefined property warning 31 * Feat: Add additional block supports 32 * WP 6.5 compatibility 33 29 34 = 2.0.1 = 30 35 * WP 6.4 compatibility … … 41 46 * Docs: Compatibility with 6.1 42 47 43 = 1.2.1 = 48 = 1.2.1 = 44 49 45 50 * Fix: Various block fixes -
simple-tabs-block/trunk/simple-tabs-block.php
r3004348 r3060539 5 5 * Requires at least: 6.4 6 6 * Requires PHP: 7.0 7 * Version: 2. 0.17 * Version: 2.1.0 8 8 * Author: CloudCatch LLC 9 9 * Author URI: https://cloudcatch.io … … 33 33 * 34 34 * @param boolean $should_update Whether to update. 35 * @param object $plugin The update offer.35 * @param object $plugin The update offer. 36 36 * @return boolean 37 37 */ … … 45 45 } 46 46 47 if ( version_compare( $plugin->Version, '2.0.0', '<' ) ) {47 if ( ! isset( $plugin->Version ) || version_compare( $plugin->Version, '2.0.0', '<' ) ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase 48 48 return false; 49 49 }
Note: See TracChangeset
for help on using the changeset viewer.