Plugin Directory

Changeset 2971670


Ignore:
Timestamp:
09/26/2023 07:36:56 AM (3 years ago)
Author:
codeapple
Message:
  • Fixed UI Issue
  • Updated Report Table Tabs
Location:
wordsmtp
Files:
12 added
6 edited

Legend:

Unmodified
Added
Removed
  • wordsmtp/tags/1.0.0/includes/sc-wordsmtp-ajaxhandler.class.php

    r2971371 r2971670  
    6464            wp_enqueue_style('sc-wordsmtp-datatable-style', plugins_url( '../admin/css/dataTables.css', __FILE__ ), array(), SCWORDSMTP_VERSION, 'all' );
    6565            wp_enqueue_style('sc-wordsmtp-fontawesome', plugins_url( '../admin/css/fontawesome-all.min.css', __FILE__ ), array(),  SCWORDSMTP_VERSION, 'all');
    66             wp_enqueue_style('sc-wordsmtp-style', plugins_url( '../admin/css/sc-wordsmtp-misc-styles.css', __FILE__ ) , array(), SCWORDSMTP_VERSION, 'all' );
     66            wp_enqueue_style('sc-wordsmtp-jquery-ui-style', plugins_url( '../admin/css/jquery-ui.css', __FILE__ ) , array(), SCWORDSMTP_VERSION, 'all' );
     67            wp_enqueue_style('sc-wordsmtp-style', plugins_url( '../admin/css/sc-wordsmtp-misc-styles.css', __FILE__ ) , array('sc-wordsmtp-jquery-ui-style'), SCWORDSMTP_VERSION, 'all' );
    6768           
    6869            wp_enqueue_script('sc-wordsmtp-datatable-script',  plugins_url( '../admin/js/dataTables.js', __FILE__ ), array('jquery', 'jquery-ui-tabs' ), SCWORDSMTP_VERSION, true);
  • wordsmtp/tags/1.0.0/readme.txt

    r2971389 r2971670  
    55Requires at least: 5.5
    66Tested up to: 6.2
    7 Stable tag: 1.0.0
     7Stable tag: 1.1.0
    88Requires PHP: 7.3
    99License: GPLv2 or later
     
    4646== Changelog ==
    4747
     48= 1.1.0 =
     49* Fixed UI Issue
     50* Updated Report Table Tabs
     51
    4852= 1.0.0 =
    4953* First version.
  • wordsmtp/tags/1.0.0/wordsmtp.php

    r2971381 r2971670  
    44 * Plugin URI:  http://softcoy.com/wordsmtp/
    55 * Description: WordSMTP Simple SMTP Solution mailer. Easy & simple setup. All your WordPress / WooCommerce sending emails will be used your verified domain name. Know the status of your all emails through mail report.
    6  * Version:     1.0.0
     6 * Version:     1.1.0
    77 * Author:      softcoy
    88 * Author URI:  https://softcoy.com/
     
    3535  }
    3636 
    37   define( 'SCWORDSMTP_VERSION', '1.0.0' );
     37  define( 'SCWORDSMTP_VERSION', '1.1.0' );
    3838  define( 'SCWORDSMTP_MINIMUM_PHP_VERSION', '7.3' );
    3939  define( 'SCWORDSMTP_MINIMUM_WP_VERSION', '5.5' );
  • wordsmtp/trunk/includes/sc-wordsmtp-ajaxhandler.class.php

    r2971371 r2971670  
    6464            wp_enqueue_style('sc-wordsmtp-datatable-style', plugins_url( '../admin/css/dataTables.css', __FILE__ ), array(), SCWORDSMTP_VERSION, 'all' );
    6565            wp_enqueue_style('sc-wordsmtp-fontawesome', plugins_url( '../admin/css/fontawesome-all.min.css', __FILE__ ), array(),  SCWORDSMTP_VERSION, 'all');
    66             wp_enqueue_style('sc-wordsmtp-style', plugins_url( '../admin/css/sc-wordsmtp-misc-styles.css', __FILE__ ) , array(), SCWORDSMTP_VERSION, 'all' );
     66            wp_enqueue_style('sc-wordsmtp-jquery-ui-style', plugins_url( '../admin/css/jquery-ui.css', __FILE__ ) , array(), SCWORDSMTP_VERSION, 'all' );
     67            wp_enqueue_style('sc-wordsmtp-style', plugins_url( '../admin/css/sc-wordsmtp-misc-styles.css', __FILE__ ) , array('sc-wordsmtp-jquery-ui-style'), SCWORDSMTP_VERSION, 'all' );
    6768           
    6869            wp_enqueue_script('sc-wordsmtp-datatable-script',  plugins_url( '../admin/js/dataTables.js', __FILE__ ), array('jquery', 'jquery-ui-tabs' ), SCWORDSMTP_VERSION, true);
  • wordsmtp/trunk/readme.txt

    r2971389 r2971670  
    55Requires at least: 5.5
    66Tested up to: 6.2
    7 Stable tag: 1.0.0
     7Stable tag: 1.1.0
    88Requires PHP: 7.3
    99License: GPLv2 or later
     
    4646== Changelog ==
    4747
     48= 1.1.0 =
     49* Fixed UI Issue
     50* Updated Report Table Tabs
     51
    4852= 1.0.0 =
    4953* First version.
  • wordsmtp/trunk/wordsmtp.php

    r2971381 r2971670  
    44 * Plugin URI:  http://softcoy.com/wordsmtp/
    55 * Description: WordSMTP Simple SMTP Solution mailer. Easy & simple setup. All your WordPress / WooCommerce sending emails will be used your verified domain name. Know the status of your all emails through mail report.
    6  * Version:     1.0.0
     6 * Version:     1.1.0
    77 * Author:      softcoy
    88 * Author URI:  https://softcoy.com/
     
    3535  }
    3636 
    37   define( 'SCWORDSMTP_VERSION', '1.0.0' );
     37  define( 'SCWORDSMTP_VERSION', '1.1.0' );
    3838  define( 'SCWORDSMTP_MINIMUM_PHP_VERSION', '7.3' );
    3939  define( 'SCWORDSMTP_MINIMUM_WP_VERSION', '5.5' );
Note: See TracChangeset for help on using the changeset viewer.