Changeset 2971670
- Timestamp:
- 09/26/2023 07:36:56 AM (3 years ago)
- Location:
- wordsmtp
- Files:
-
- 12 added
- 6 edited
-
tags/1.0.0/admin/css/jquery-ui.css (added)
-
tags/1.0.0/assets (added)
-
tags/1.0.0/assets/screenshot-1.jpg (added)
-
tags/1.0.0/assets/screenshot-2.jpg (added)
-
tags/1.0.0/assets/screenshot-3.jpg (added)
-
tags/1.0.0/assets/screenshot-4.jpg (added)
-
tags/1.0.0/includes/sc-wordsmtp-ajaxhandler.class.php (modified) (1 diff)
-
tags/1.0.0/readme.txt (modified) (2 diffs)
-
tags/1.0.0/wordsmtp.php (modified) (2 diffs)
-
trunk/admin/css/jquery-ui.css (added)
-
trunk/assets (added)
-
trunk/assets/screenshot-1.jpg (added)
-
trunk/assets/screenshot-2.jpg (added)
-
trunk/assets/screenshot-3.jpg (added)
-
trunk/assets/screenshot-4.jpg (added)
-
trunk/includes/sc-wordsmtp-ajaxhandler.class.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wordsmtp.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordsmtp/tags/1.0.0/includes/sc-wordsmtp-ajaxhandler.class.php
r2971371 r2971670 64 64 wp_enqueue_style('sc-wordsmtp-datatable-style', plugins_url( '../admin/css/dataTables.css', __FILE__ ), array(), SCWORDSMTP_VERSION, 'all' ); 65 65 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' ); 67 68 68 69 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 5 5 Requires at least: 5.5 6 6 Tested up to: 6.2 7 Stable tag: 1. 0.07 Stable tag: 1.1.0 8 8 Requires PHP: 7.3 9 9 License: GPLv2 or later … … 46 46 == Changelog == 47 47 48 = 1.1.0 = 49 * Fixed UI Issue 50 * Updated Report Table Tabs 51 48 52 = 1.0.0 = 49 53 * First version. -
wordsmtp/tags/1.0.0/wordsmtp.php
r2971381 r2971670 4 4 * Plugin URI: http://softcoy.com/wordsmtp/ 5 5 * 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.06 * Version: 1.1.0 7 7 * Author: softcoy 8 8 * Author URI: https://softcoy.com/ … … 35 35 } 36 36 37 define( 'SCWORDSMTP_VERSION', '1. 0.0' );37 define( 'SCWORDSMTP_VERSION', '1.1.0' ); 38 38 define( 'SCWORDSMTP_MINIMUM_PHP_VERSION', '7.3' ); 39 39 define( 'SCWORDSMTP_MINIMUM_WP_VERSION', '5.5' ); -
wordsmtp/trunk/includes/sc-wordsmtp-ajaxhandler.class.php
r2971371 r2971670 64 64 wp_enqueue_style('sc-wordsmtp-datatable-style', plugins_url( '../admin/css/dataTables.css', __FILE__ ), array(), SCWORDSMTP_VERSION, 'all' ); 65 65 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' ); 67 68 68 69 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 5 5 Requires at least: 5.5 6 6 Tested up to: 6.2 7 Stable tag: 1. 0.07 Stable tag: 1.1.0 8 8 Requires PHP: 7.3 9 9 License: GPLv2 or later … … 46 46 == Changelog == 47 47 48 = 1.1.0 = 49 * Fixed UI Issue 50 * Updated Report Table Tabs 51 48 52 = 1.0.0 = 49 53 * First version. -
wordsmtp/trunk/wordsmtp.php
r2971381 r2971670 4 4 * Plugin URI: http://softcoy.com/wordsmtp/ 5 5 * 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.06 * Version: 1.1.0 7 7 * Author: softcoy 8 8 * Author URI: https://softcoy.com/ … … 35 35 } 36 36 37 define( 'SCWORDSMTP_VERSION', '1. 0.0' );37 define( 'SCWORDSMTP_VERSION', '1.1.0' ); 38 38 define( 'SCWORDSMTP_MINIMUM_PHP_VERSION', '7.3' ); 39 39 define( 'SCWORDSMTP_MINIMUM_WP_VERSION', '5.5' );
Note: See TracChangeset
for help on using the changeset viewer.