Changeset 3281999
- Timestamp:
- 04/25/2025 03:36:12 PM (11 months ago)
- Location:
- simple-banner
- Files:
-
- 2 edited
- 10 copied
-
tags/3.0.7 (copied) (copied from simple-banner/trunk)
-
tags/3.0.7/free_features.php (copied) (copied from simple-banner/trunk/free_features.php)
-
tags/3.0.7/preview_banner.php (copied) (copied from simple-banner/trunk/preview_banner.php)
-
tags/3.0.7/pro_features.php (copied) (copied from simple-banner/trunk/pro_features.php)
-
tags/3.0.7/pro_features_general_settings.php (copied) (copied from simple-banner/trunk/pro_features_general_settings.php)
-
tags/3.0.7/readme.txt (copied) (copied from simple-banner/trunk/readme.txt) (3 diffs)
-
tags/3.0.7/simple-banner.css (copied) (copied from simple-banner/trunk/simple-banner.css)
-
tags/3.0.7/simple-banner.js (copied) (copied from simple-banner/trunk/simple-banner.js)
-
tags/3.0.7/simple-banner.php (copied) (copied from simple-banner/trunk/simple-banner.php) (3 diffs)
-
tags/3.0.7/vendors (copied) (copied from simple-banner/trunk/vendors)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/simple-banner.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-banner/tags/3.0.7/readme.txt
r3268218 r3281999 4 4 Tags: banner, bar, announcement, notification, notice 5 5 Requires at least: 3.0.1 6 Tested up to: 6. 7.27 Stable tag: 3.0. 66 Tested up to: 6.8.0 7 Stable tag: 3.0.7 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 100 100 == Changelog == 101 101 102 = 3.0.7 = 103 * Test against wp 6.8.0, minor bugfix 104 102 105 = 3.0.6 = 103 106 * Clear caches on settings save … … 364 367 == Upgrade Notice == 365 368 369 = 3.0.7 = 370 * Test against wp 6.8.0, minor bugfix 371 366 372 = 3.0.6 = 367 373 * Clear caches on settings save -
simple-banner/tags/3.0.7/simple-banner.php
r3268218 r3281999 4 4 * Plugin URI: https://github.com/rpetersen29/simple-banner 5 5 * Description: Display a simple banner at the top or bottom of your website. Now with multi-banner support 6 * Version: 3.0. 66 * Version: 3.0.7 7 7 * Author: Ryan Petersen 8 8 * Author URI: http://rpetersen29.github.io/ … … 10 10 * 11 11 * @package Simple Banner 12 * @version 3.0. 612 * @version 3.0.7 13 13 * @author Ryan Petersen <rpetersen.dev@gmail.com> 14 14 */ 15 define ('SB_VERSION', '3.0. 6');15 define ('SB_VERSION', '3.0.7'); 16 16 17 17 register_activation_hook( __FILE__, 'simple_banner_activate' ); … … 997 997 // Hack: Set hidden variable to always change on save 998 998 // TODO: Find better way of making sure cache is cleared on save 999 add_action( 'add_option_simple_banner_clear_cache', 'clear_all_caches', 10, 2 ); 999 1000 add_action( 'update_option_simple_banner_clear_cache', 'clear_all_caches', 10, 3 ); 1000 1001 1001 function clear_all_caches($old_value, $value, $option) { 1002 /** 1003 * Arguments here aren't used currently. And $option value is optional due to 1004 * "add_option_{$option}" only passing in two arguments. 1005 */ 1006 function clear_all_caches($old_value, $value, $option = 'simple_banner_clear_cache') { 1002 1007 try { 1003 1008 clearW3TotalCache(); -
simple-banner/trunk/readme.txt
r3268218 r3281999 4 4 Tags: banner, bar, announcement, notification, notice 5 5 Requires at least: 3.0.1 6 Tested up to: 6. 7.27 Stable tag: 3.0. 66 Tested up to: 6.8.0 7 Stable tag: 3.0.7 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 100 100 == Changelog == 101 101 102 = 3.0.7 = 103 * Test against wp 6.8.0, minor bugfix 104 102 105 = 3.0.6 = 103 106 * Clear caches on settings save … … 364 367 == Upgrade Notice == 365 368 369 = 3.0.7 = 370 * Test against wp 6.8.0, minor bugfix 371 366 372 = 3.0.6 = 367 373 * Clear caches on settings save -
simple-banner/trunk/simple-banner.php
r3268218 r3281999 4 4 * Plugin URI: https://github.com/rpetersen29/simple-banner 5 5 * Description: Display a simple banner at the top or bottom of your website. Now with multi-banner support 6 * Version: 3.0. 66 * Version: 3.0.7 7 7 * Author: Ryan Petersen 8 8 * Author URI: http://rpetersen29.github.io/ … … 10 10 * 11 11 * @package Simple Banner 12 * @version 3.0. 612 * @version 3.0.7 13 13 * @author Ryan Petersen <rpetersen.dev@gmail.com> 14 14 */ 15 define ('SB_VERSION', '3.0. 6');15 define ('SB_VERSION', '3.0.7'); 16 16 17 17 register_activation_hook( __FILE__, 'simple_banner_activate' ); … … 997 997 // Hack: Set hidden variable to always change on save 998 998 // TODO: Find better way of making sure cache is cleared on save 999 add_action( 'add_option_simple_banner_clear_cache', 'clear_all_caches', 10, 2 ); 999 1000 add_action( 'update_option_simple_banner_clear_cache', 'clear_all_caches', 10, 3 ); 1000 1001 1001 function clear_all_caches($old_value, $value, $option) { 1002 /** 1003 * Arguments here aren't used currently. And $option value is optional due to 1004 * "add_option_{$option}" only passing in two arguments. 1005 */ 1006 function clear_all_caches($old_value, $value, $option = 'simple_banner_clear_cache') { 1002 1007 try { 1003 1008 clearW3TotalCache();
Note: See TracChangeset
for help on using the changeset viewer.