Changeset 2504168
- Timestamp:
- 03/26/2021 07:10:42 PM (5 years ago)
- Location:
- cynderhost
- Files:
-
- 4 edited
-
assets/icon-128x128.png (modified) (previous)
-
assets/icon-613x608.png (modified) (previous)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/cynderhost.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cynderhost/trunk/README.txt
r2468359 r2504168 4 4 Tags: cache, performance, cynderhost 5 5 Requires at least: 4.0.1 6 Tested up to: 5. 67 Stable tag: 5. 66 Tested up to: 5.7 7 Stable tag: 5.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 32 33 33 == Changelog == 34 - 1.4.7 = 35 * Updated: WP Admin Icon 36 * Updated: Plugin Icon 37 * Added: admin-style.css stylesheet for future styling 34 38 35 39 = 1.4.6 = -
cynderhost/trunk/cynderhost.php
r2468359 r2504168 9 9 * Plugin URI: https://cynderhost.com 10 10 * Description: Provides an easy interface to clear the CynderHost CDN cache, both automatically and programmatically. 11 * Version: 1.4. 611 * Version: 1.4.7 12 12 * Author: CynderHost 13 13 * Author URI: https://profiles.wordpress.org/cynderhost/ … … 24 24 25 25 //Define version 26 define('CYNDERHOST_VERSION', '1.4.6'); 26 define('CYNDERHOST_VERSION', '1.4.7'); 27 28 /** 29 * Load menu stylesheet for WP Admin CynderHost Icon 30 */ 31 function cynderhost_load_admin_style() { 32 wp_enqueue_style( 'cynderhost_admin_css', plugins_url( '/css/admin-style.css' , __FILE__ ), $ver = "1.0.0"); 33 } 34 add_action( 'admin_enqueue_scripts', 'cynderhost_load_admin_style' ); 35 27 36 28 37 /** … … 444 453 'cynderhost_cdn_settings_create_admin_page' 445 454 ) , // function 446 'dashicons-networking', // icon_url455 plugins_url( '/img/menu_icon.png' , __FILE__ ), // icon_url 447 456 81 448 457 // position
Note: See TracChangeset
for help on using the changeset viewer.