Changeset 2881697
- Timestamp:
- 03/17/2023 04:54:03 AM (3 years ago)
- Location:
- wp-table-editor/trunk
- Files:
-
- 3 edited
-
assets/css/style.css (modified) (2 diffs)
-
main.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-table-editor/trunk/assets/css/style.css
r2862840 r2881697 2 2 margin: 0px; 3 3 padding: 0px; 4 box-sizing: border-box;5 4 } 6 5 .xscontainer { … … 9 8 text-transform: none !important; 10 9 color: #3a3a3a; 10 box-sizing: border-box; 11 11 } 12 12 .xscontainer .xs-d-none, .modal-xs .xs-d-none{ -
wp-table-editor/trunk/main.php
r2878694 r2881697 4 4 Plugin URI: https://wptableeditor.com/documentation/ 5 5 Description: Table Editor is a WordPress plugin used to quickly create tables from Excel, CSV, JSON and other data sources. Allows you to create beautiful sortable and responsive tables inside your posts, pages, custom post types or widget area. 6 Version: 1.3. 26 Version: 1.3.3 7 7 Author: wptableeditor.com 8 8 Author URI: https://wptableeditor.com/ … … 15 15 if ( ! defined( 'WPTABLEEDITOR_ASSETS' ) ) define( 'WPTABLEEDITOR_ASSETS', plugins_url( 'assets/', __FILE__ ) ); 16 16 if ( ! defined( 'WPTABLEEDITOR_VENDOR' ) ) define( 'WPTABLEEDITOR_VENDOR', plugins_url( 'vendor/', __FILE__ ) ); 17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.3. 2' );17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.3.3' ); 18 18 if ( ! defined( 'WPTABLEEDITOR_SLUG' ) ) define( 'WPTABLEEDITOR_SLUG', basename( plugin_dir_path( __FILE__ ) ) ); 19 19 if ( ! defined( 'WPTABLEEDITOR_MAIN' ) ) define( 'WPTABLEEDITOR_MAIN', plugin_basename( __FILE__ ) ); … … 261 261 $url = add_query_arg( $option, self::$api_url ); 262 262 $raw_response = wp_remote_get( $url, $args ); 263 if ( is_wp_error( $raw_response ) ) {264 return false;265 }266 263 set_transient( 'wptableeditor_tracking', time(), 2 * HOUR_IN_SECONDS ); 267 264 } -
wp-table-editor/trunk/readme.txt
r2878694 r2881697 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.4 7 Stable tag: 1.3. 27 Stable tag: 1.3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 == Changelog == 76 76 77 = 1.3.3 = 78 * Code Optimization 79 77 80 = 1.3.2 = 78 81 * Small bug fixes
Note: See TracChangeset
for help on using the changeset viewer.