Changeset 3010794
- Timestamp:
- 12/16/2023 10:33:20 AM (2 years ago)
- Location:
- block-options
- Files:
-
- 10 edited
- 1 copied
-
tags/1.40.4 (copied) (copied from block-options/trunk)
-
tags/1.40.4/includes/addons/styles-manager/gutenberghub-styles-manager-admin.php (modified) (2 diffs)
-
tags/1.40.4/includes/addons/styles-manager/rest-api/gutenberghub-styles-import-export-controller.php (modified) (1 diff)
-
tags/1.40.4/languages/editorskit.pot (modified) (2 diffs)
-
tags/1.40.4/plugin.php (modified) (2 diffs)
-
tags/1.40.4/readme.txt (modified) (2 diffs)
-
trunk/includes/addons/styles-manager/gutenberghub-styles-manager-admin.php (modified) (2 diffs)
-
trunk/includes/addons/styles-manager/rest-api/gutenberghub-styles-import-export-controller.php (modified) (1 diff)
-
trunk/languages/editorskit.pot (modified) (2 diffs)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
block-options/tags/1.40.4/includes/addons/styles-manager/gutenberghub-styles-manager-admin.php
r2973254 r3010794 66 66 EDITORSKIT_PLUGIN_URL . 'build/styles-manager-addon-block.js', 67 67 array( 68 'lodash', 68 69 'wp-element', 69 70 'wp-api', … … 98 99 EDITORSKIT_PLUGIN_URL . 'build/styles-manager-addon-admin.js', 99 100 array( 101 'lodash', 100 102 'wp-element', 101 103 'wp-api', -
block-options/tags/1.40.4/includes/addons/styles-manager/rest-api/gutenberghub-styles-import-export-controller.php
r2971684 r3010794 105 105 } 106 106 107 $file_type = wp_check_filetype( $files['json']['name'] ); 108 109 if ( 'json' !== $file_type['ext'] ) { 110 return new WP_REST_Response( array( 'message' => 'Invalid file type. Only JSON files are allowed.' ), 400 ); 111 } 112 107 113 require_once ABSPATH . 'wp-admin/includes/file.php'; 108 114 -
block-options/tags/1.40.4/languages/editorskit.pot
r2973254 r3010794 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: EditorsKit 1.40. 3\n"5 "Project-Id-Version: EditorsKit 1.40.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/block-options\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023- 09-30T07:17:53+00:00\n"12 "POT-Creation-Date: 2023-12-16T10:24:22+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.7.1\n" -
block-options/tags/1.40.4/plugin.php
r2973254 r3010794 4 4 * Plugin URI: https://editorskit.com/ 5 5 * Description: EditorsKit is a suite of <strong>page building block options</strong> for the Gutenberg block editor. 6 * Version: 1.40. 36 * Version: 1.40.4 7 7 * Author: Munir Kamal 8 8 * Author URI: https://www.munirkamal.com/ … … 96 96 private function setup_constants() { 97 97 $this->define( 'EDITORSKIT_DEBUG', true ); 98 $this->define( 'EDITORSKIT_VERSION', '1.40. 3' );98 $this->define( 'EDITORSKIT_VERSION', '1.40.4' ); 99 99 $this->define( 'EDITORSKIT_HAS_PRO', false ); 100 100 $this->define( 'EDITORSKIT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
block-options/tags/1.40.4/readme.txt
r2973254 r3010794 7 7 Tested up to: 6.3 8 8 Requires PHP: 5.6 9 Stable tag: 1.40. 39 Stable tag: 1.40.4 10 10 License: GPL-3.0 11 11 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 198 198 == Changelog == 199 199 200 = 1.40.4 201 * Fix: Added a check for file type in styles importer to improve security. 202 200 203 = 1.40.3 201 204 * Fix: Styles manager conflicting with other post types. -
block-options/trunk/includes/addons/styles-manager/gutenberghub-styles-manager-admin.php
r2973254 r3010794 66 66 EDITORSKIT_PLUGIN_URL . 'build/styles-manager-addon-block.js', 67 67 array( 68 'lodash', 68 69 'wp-element', 69 70 'wp-api', … … 98 99 EDITORSKIT_PLUGIN_URL . 'build/styles-manager-addon-admin.js', 99 100 array( 101 'lodash', 100 102 'wp-element', 101 103 'wp-api', -
block-options/trunk/includes/addons/styles-manager/rest-api/gutenberghub-styles-import-export-controller.php
r2971684 r3010794 105 105 } 106 106 107 $file_type = wp_check_filetype( $files['json']['name'] ); 108 109 if ( 'json' !== $file_type['ext'] ) { 110 return new WP_REST_Response( array( 'message' => 'Invalid file type. Only JSON files are allowed.' ), 400 ); 111 } 112 107 113 require_once ABSPATH . 'wp-admin/includes/file.php'; 108 114 -
block-options/trunk/languages/editorskit.pot
r2973254 r3010794 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: EditorsKit 1.40. 3\n"5 "Project-Id-Version: EditorsKit 1.40.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/block-options\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2023- 09-30T07:17:53+00:00\n"12 "POT-Creation-Date: 2023-12-16T10:24:22+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.7.1\n" -
block-options/trunk/plugin.php
r2973254 r3010794 4 4 * Plugin URI: https://editorskit.com/ 5 5 * Description: EditorsKit is a suite of <strong>page building block options</strong> for the Gutenberg block editor. 6 * Version: 1.40. 36 * Version: 1.40.4 7 7 * Author: Munir Kamal 8 8 * Author URI: https://www.munirkamal.com/ … … 96 96 private function setup_constants() { 97 97 $this->define( 'EDITORSKIT_DEBUG', true ); 98 $this->define( 'EDITORSKIT_VERSION', '1.40. 3' );98 $this->define( 'EDITORSKIT_VERSION', '1.40.4' ); 99 99 $this->define( 'EDITORSKIT_HAS_PRO', false ); 100 100 $this->define( 'EDITORSKIT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
block-options/trunk/readme.txt
r2973254 r3010794 7 7 Tested up to: 6.3 8 8 Requires PHP: 5.6 9 Stable tag: 1.40. 39 Stable tag: 1.40.4 10 10 License: GPL-3.0 11 11 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 198 198 == Changelog == 199 199 200 = 1.40.4 201 * Fix: Added a check for file type in styles importer to improve security. 202 200 203 = 1.40.3 201 204 * Fix: Styles manager conflicting with other post types.
Note: See TracChangeset
for help on using the changeset viewer.