Changeset 2267571
- Timestamp:
- 03/25/2020 05:26:56 PM (6 years ago)
- Location:
- ubiquitous-blocks
- Files:
-
- 28 added
- 2 deleted
- 6 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from ubiquitous-blocks/trunk)
-
tags/1.0.2/build (added)
-
tags/1.0.2/build/index.asset.php (added)
-
tags/1.0.2/build/index.js (added)
-
tags/1.0.2/dist (deleted)
-
tags/1.0.2/includes/class-ubiquitous-blocks-assets.php (modified) (1 diff)
-
tags/1.0.2/readme.md (added)
-
tags/1.0.2/readme.txt (modified) (2 diffs)
-
tags/1.0.2/src (added)
-
tags/1.0.2/src/extensions (added)
-
tags/1.0.2/src/extensions/available-post-types.js (added)
-
tags/1.0.2/src/extensions/block-positions.js (added)
-
tags/1.0.2/src/extensions/controls (added)
-
tags/1.0.2/src/extensions/controls/block-order.js (added)
-
tags/1.0.2/src/extensions/controls/block-position.js (added)
-
tags/1.0.2/src/extensions/controls/post-types.js (added)
-
tags/1.0.2/src/extensions/ubiquitous-blocks.js (added)
-
tags/1.0.2/src/index.js (added)
-
tags/1.0.2/ubiquitous-blocks.php (modified) (2 diffs)
-
trunk/build (added)
-
trunk/build/index.asset.php (added)
-
trunk/build/index.js (added)
-
trunk/dist (deleted)
-
trunk/includes/class-ubiquitous-blocks-assets.php (modified) (1 diff)
-
trunk/readme.md (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src (added)
-
trunk/src/extensions (added)
-
trunk/src/extensions/available-post-types.js (added)
-
trunk/src/extensions/block-positions.js (added)
-
trunk/src/extensions/controls (added)
-
trunk/src/extensions/controls/block-order.js (added)
-
trunk/src/extensions/controls/block-position.js (added)
-
trunk/src/extensions/controls/post-types.js (added)
-
trunk/src/extensions/ubiquitous-blocks.js (added)
-
trunk/src/index.js (added)
-
trunk/ubiquitous-blocks.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ubiquitous-blocks/tags/1.0.2/includes/class-ubiquitous-blocks-assets.php
r2232992 r2267571 64 64 } 65 65 66 $asset_filepath = UBIQUITOUS_BLOCKS_DIR_PATH . '/build/index.asset.php'; 67 $asset_file = file_exists( $asset_filepath ) ? include $asset_filepath : [ 68 'dependencies' => [], 69 'version' => false, 70 ]; 71 66 72 // Scripts. 67 73 wp_enqueue_script( 68 74 $this->_slug . '-editor', 69 UBIQUITOUS_BLOCKS_URL_PATH . '/ dist/blocks.build.js',70 array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-plugins', 'wp-components', 'wp-edit-post', 'wp-api', 'wp-editor', 'wp-hooks', 'wp-api-fetch' ),71 time(),75 UBIQUITOUS_BLOCKS_URL_PATH . '/build/index.js', 76 [ 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-plugins', 'wp-components', 'wp-edit-post', 'wp-api', 'wp-editor', 'wp-hooks', 'wp-api-fetch' ], 77 $asset_file['version'], 72 78 false 73 79 ); -
ubiquitous-blocks/tags/1.0.2/readme.txt
r2236812 r2267571 3 3 Tags: blocks, reuseable blocks 4 4 Requires at least: 5.0 5 Tested up to: 5. 3.26 Stable tag: 1.0. 05 Tested up to: 5.4 6 Stable tag: 1.0.2 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 25 25 26 26 == Changelog == 27 * Initial Commit 27 * 1.0.2 Reduce bundled asset size. 28 * 1.0.1 Update "Tested up to" WordPress version. 29 * 1.0.0 Initial Commit -
ubiquitous-blocks/tags/1.0.2/ubiquitous-blocks.php
r2232992 r2267571 6 6 * Author: sorta brilliant 7 7 * Author URI: https://sortabrilliant.com/ 8 * Version: 1.0. 08 * Version: 1.0.2 9 9 * License: GPL-2.0-or-later 10 10 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 27 27 * @static 28 28 */ 29 public static $version = '1.0. 0';29 public static $version = '1.0.2'; 30 30 31 31 /** -
ubiquitous-blocks/trunk/includes/class-ubiquitous-blocks-assets.php
r2232992 r2267571 64 64 } 65 65 66 $asset_filepath = UBIQUITOUS_BLOCKS_DIR_PATH . '/build/index.asset.php'; 67 $asset_file = file_exists( $asset_filepath ) ? include $asset_filepath : [ 68 'dependencies' => [], 69 'version' => false, 70 ]; 71 66 72 // Scripts. 67 73 wp_enqueue_script( 68 74 $this->_slug . '-editor', 69 UBIQUITOUS_BLOCKS_URL_PATH . '/ dist/blocks.build.js',70 array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-plugins', 'wp-components', 'wp-edit-post', 'wp-api', 'wp-editor', 'wp-hooks', 'wp-api-fetch' ),71 time(),75 UBIQUITOUS_BLOCKS_URL_PATH . '/build/index.js', 76 [ 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-plugins', 'wp-components', 'wp-edit-post', 'wp-api', 'wp-editor', 'wp-hooks', 'wp-api-fetch' ], 77 $asset_file['version'], 72 78 false 73 79 ); -
ubiquitous-blocks/trunk/readme.txt
r2236812 r2267571 3 3 Tags: blocks, reuseable blocks 4 4 Requires at least: 5.0 5 Tested up to: 5. 3.26 Stable tag: 1.0. 05 Tested up to: 5.4 6 Stable tag: 1.0.2 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 25 25 26 26 == Changelog == 27 * Initial Commit 27 * 1.0.2 Reduce bundled asset size. 28 * 1.0.1 Update "Tested up to" WordPress version. 29 * 1.0.0 Initial Commit -
ubiquitous-blocks/trunk/ubiquitous-blocks.php
r2232992 r2267571 6 6 * Author: sorta brilliant 7 7 * Author URI: https://sortabrilliant.com/ 8 * Version: 1.0. 08 * Version: 1.0.2 9 9 * License: GPL-2.0-or-later 10 10 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 27 27 * @static 28 28 */ 29 public static $version = '1.0. 0';29 public static $version = '1.0.2'; 30 30 31 31 /**
Note: See TracChangeset
for help on using the changeset viewer.