Changeset 3317309
- Timestamp:
- 06/25/2025 03:43:59 AM (9 months ago)
- Location:
- simple-banner
- Files:
-
- 2 edited
- 10 copied
-
tags/3.0.9 (copied) (copied from simple-banner/trunk)
-
tags/3.0.9/free_features.php (copied) (copied from simple-banner/trunk/free_features.php)
-
tags/3.0.9/preview_banner.php (copied) (copied from simple-banner/trunk/preview_banner.php)
-
tags/3.0.9/pro_features.php (copied) (copied from simple-banner/trunk/pro_features.php)
-
tags/3.0.9/pro_features_general_settings.php (copied) (copied from simple-banner/trunk/pro_features_general_settings.php)
-
tags/3.0.9/readme.txt (copied) (copied from simple-banner/trunk/readme.txt) (3 diffs)
-
tags/3.0.9/simple-banner.css (copied) (copied from simple-banner/trunk/simple-banner.css)
-
tags/3.0.9/simple-banner.js (copied) (copied from simple-banner/trunk/simple-banner.js)
-
tags/3.0.9/simple-banner.php (copied) (copied from simple-banner/trunk/simple-banner.php) (3 diffs)
-
tags/3.0.9/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.9/readme.txt
r3311191 r3317309 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.8.1 7 Stable tag: 3.0. 87 Stable tag: 3.0.9 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.9 = 103 * Bug fixes 104 102 105 = 3.0.8 = 103 106 * Test against wp 6.8.1, style changes … … 370 373 == Upgrade Notice == 371 374 375 = 3.0.9 = 376 * Bug fixes 377 372 378 = 3.0.8 = 373 379 * Test against wp 6.8.1, style changes -
simple-banner/tags/3.0.9/simple-banner.php
r3311191 r3317309 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. 86 * Version: 3.0.9 7 7 * Author: Ryan Petersen 8 8 * Author URI: http://rpetersen29.github.io/ … … 10 10 * 11 11 * @package Simple Banner 12 * @version 3.0. 812 * @version 3.0.9 13 13 * @author Ryan Petersen <rpetersen.dev@gmail.com> 14 14 */ 15 define ('SB_VERSION', '3.0. 8');15 define ('SB_VERSION', '3.0.9'); 16 16 17 17 register_activation_hook( __FILE__, 'simple_banner_activate' ); … … 1080 1080 1081 1081 function clearLiteSpeedCache() { 1082 if (class_exists("LiteSpeed_Cache_API") && method_exists(" autoptimizeCache", "purge_all")) {1082 if (class_exists("LiteSpeed_Cache_API") && method_exists("LiteSpeed_Cache_API", "purge_all")) { 1083 1083 LiteSpeed_Cache_API::purge_all(); 1084 1084 } -
simple-banner/trunk/readme.txt
r3311191 r3317309 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.8.1 7 Stable tag: 3.0. 87 Stable tag: 3.0.9 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.9 = 103 * Bug fixes 104 102 105 = 3.0.8 = 103 106 * Test against wp 6.8.1, style changes … … 370 373 == Upgrade Notice == 371 374 375 = 3.0.9 = 376 * Bug fixes 377 372 378 = 3.0.8 = 373 379 * Test against wp 6.8.1, style changes -
simple-banner/trunk/simple-banner.php
r3311191 r3317309 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. 86 * Version: 3.0.9 7 7 * Author: Ryan Petersen 8 8 * Author URI: http://rpetersen29.github.io/ … … 10 10 * 11 11 * @package Simple Banner 12 * @version 3.0. 812 * @version 3.0.9 13 13 * @author Ryan Petersen <rpetersen.dev@gmail.com> 14 14 */ 15 define ('SB_VERSION', '3.0. 8');15 define ('SB_VERSION', '3.0.9'); 16 16 17 17 register_activation_hook( __FILE__, 'simple_banner_activate' ); … … 1080 1080 1081 1081 function clearLiteSpeedCache() { 1082 if (class_exists("LiteSpeed_Cache_API") && method_exists(" autoptimizeCache", "purge_all")) {1082 if (class_exists("LiteSpeed_Cache_API") && method_exists("LiteSpeed_Cache_API", "purge_all")) { 1083 1083 LiteSpeed_Cache_API::purge_all(); 1084 1084 }
Note: See TracChangeset
for help on using the changeset viewer.