Plugin Directory

Changeset 2881697


Ignore:
Timestamp:
03/17/2023 04:54:03 AM (3 years ago)
Author:
wptableeditor
Message:

Code Optimization

Location:
wp-table-editor/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-table-editor/trunk/assets/css/style.css

    r2862840 r2881697  
    22    margin: 0px;
    33    padding: 0px;
    4     box-sizing: border-box;
    54}
    65.xscontainer {
     
    98    text-transform: none !important;
    109    color: #3a3a3a;
     10    box-sizing: border-box;
    1111}
    1212.xscontainer .xs-d-none, .modal-xs .xs-d-none{
  • wp-table-editor/trunk/main.php

    r2878694 r2881697  
    44Plugin URI: https://wptableeditor.com/documentation/
    55Description: 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.2
     6Version: 1.3.3
    77Author: wptableeditor.com
    88Author URI: https://wptableeditor.com/
     
    1515if ( ! defined( 'WPTABLEEDITOR_ASSETS' ) ) define( 'WPTABLEEDITOR_ASSETS', plugins_url( 'assets/', __FILE__ ) );
    1616if ( ! defined( 'WPTABLEEDITOR_VENDOR' ) ) define( 'WPTABLEEDITOR_VENDOR', plugins_url( 'vendor/', __FILE__ ) );
    17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.3.2' );
     17if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.3.3' );
    1818if ( ! defined( 'WPTABLEEDITOR_SLUG' ) ) define( 'WPTABLEEDITOR_SLUG', basename( plugin_dir_path( __FILE__ ) ) );
    1919if ( ! defined( 'WPTABLEEDITOR_MAIN' ) ) define( 'WPTABLEEDITOR_MAIN', plugin_basename( __FILE__ ) );
     
    261261            $url = add_query_arg( $option, self::$api_url );
    262262            $raw_response = wp_remote_get( $url, $args );
    263             if ( is_wp_error( $raw_response ) ) {
    264                 return false;
    265             }
    266263            set_transient( 'wptableeditor_tracking', time(), 2 * HOUR_IN_SECONDS );
    267264        }
  • wp-table-editor/trunk/readme.txt

    r2878694 r2881697  
    55Tested up to: 6.1.1
    66Requires PHP: 7.4
    7 Stable tag: 1.3.2
     7Stable tag: 1.3.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 1.3.3 =
     78* Code Optimization
     79
    7780= 1.3.2 =
    7881* Small bug fixes
Note: See TracChangeset for help on using the changeset viewer.