Changeset 2958807
- Timestamp:
- 08/27/2023 10:51:25 AM (3 years ago)
- Location:
- lazy-load-adsense
- Files:
-
- 13 added
- 3 edited
-
tags/1.2.1 (added)
-
tags/1.2.1/LICENSE.txt (added)
-
tags/1.2.1/README.txt (added)
-
tags/1.2.1/admin (added)
-
tags/1.2.1/admin/class-lazyload_adsense-admin.php (added)
-
tags/1.2.1/includes (added)
-
tags/1.2.1/includes/class-lazyload_adsense-loader.php (added)
-
tags/1.2.1/includes/class-lazyload_adsense.php (added)
-
tags/1.2.1/index.php (added)
-
tags/1.2.1/lazyload_adsense.php (added)
-
tags/1.2.1/public (added)
-
tags/1.2.1/public/class-lazyload_adsense-public.php (added)
-
tags/1.2.1/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-lazyload_adsense.php (modified) (3 diffs)
-
trunk/lazyload_adsense.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lazy-load-adsense/trunk/README.txt
r2952977 r2958807 5 5 Requires at least: 5.0.1 6 6 Tested up to: 6.3.0 7 Stable tag: 1.2. 17 Stable tag: 1.2.2 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 59 59 60 60 == Changelog == 61 = 1.2.2 = 62 * Fixed: Deprecation warning on PHP 8.2 63 61 64 = 1.2.1 = 62 65 * Improvement: Optimize and Reduce the code. -
lazy-load-adsense/trunk/includes/class-lazyload_adsense.php
r2952885 r2958807 23 23 * version of the plugin. 24 24 * 25 * @since 1. 0.025 * @since 1.2.2 26 26 * @package Lazyload_adsense 27 27 * @subpackage Lazyload_adsense/includes … … 29 29 */ 30 30 class Lazyload_adsense { 31 /** 32 * The loader that's responsible for maintaining and registering all hooks that power 33 * the plugin. 34 * 35 * @since 1.2.2 36 * @access protected 37 * @var Lazyload_adsense_Loader $loader Maintains and registers all hooks for the plugin. 38 */ 39 protected $loader; 40 31 41 /** 32 42 * The unique identifier of this plugin. … … 75 85 * Include the following files that make up the plugin: 76 86 * 87 * - Lazyload_adsense_Loader. Orchestrates the hooks of the plugin. 77 88 * - Lazyload_adsense_Admin. Defines all hooks for the admin area. 78 89 * - Lazyload_adsense_Public. Defines all hooks for the public side of the site. -
lazy-load-adsense/trunk/lazyload_adsense.php
r2952885 r2958807 5 5 * Plugin URI: https://www.jorcus.com/ 6 6 * Description: Place Google AdSense ads without affecting your page speed with lazy load technologies. 7 * Version: 1.2. 17 * Version: 1.2.2 8 8 * Author: Jorcus 9 9 * Author URI: https://jorcus.com/ … … 18 18 } 19 19 20 define( 'LAZYLOAD_ADSENSE_VERSION', '1.2. 1' );20 define( 'LAZYLOAD_ADSENSE_VERSION', '1.2.2' ); 21 21 22 22
Note: See TracChangeset
for help on using the changeset viewer.