Changeset 2803506
- Timestamp:
- 10/24/2022 02:16:39 PM (3 years ago)
- Location:
- easy-ip-blocker
- Files:
-
- 6 edited
- 1 copied
-
tags/1.0.4 (copied) (copied from easy-ip-blocker/trunk)
-
tags/1.0.4/easy-ip-blocker.php (modified) (3 diffs)
-
tags/1.0.4/includes/class-easy-ip-blocker.php (modified) (2 diffs)
-
tags/1.0.4/readme.txt (modified) (2 diffs)
-
trunk/easy-ip-blocker.php (modified) (3 diffs)
-
trunk/includes/class-easy-ip-blocker.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-ip-blocker/tags/1.0.4/easy-ip-blocker.php
r2611915 r2803506 2 2 /** 3 3 * Plugin Name: Easy IP Blocker 4 * Version: 1.0. 34 * Version: 1.0.4 5 5 * Plugin URI: https://wordpress.org/plugins/easy-ip-blocker/ 6 6 * Description: Easily blocks IPs … … 8 8 * Author URI: https://carlalberto.code.blog/ 9 9 * Requires at least: 5.0 10 * Tested up to: 5.8.110 * Tested up to: 6.0.3 11 11 * 12 12 * Text Domain: easy-ip-blocker … … 36 36 */ 37 37 function easy_ip_blocker() { 38 $instance = Easy_IP_Blocker::instance( __FILE__, '1.0. 3' );38 $instance = Easy_IP_Blocker::instance( __FILE__, '1.0.4' ); 39 39 40 40 if ( is_null( $instance->settings ) ) { -
easy-ip-blocker/tags/1.0.4/includes/class-easy-ip-blocker.php
r2611915 r2803506 116 116 * @static 117 117 */ 118 public static function instance( $file = '', $version = '1.0. 3' ) {118 public static function instance( $file = '', $version = '1.0.4' ) { 119 119 if ( is_null( self::$_instance ) ) { 120 120 self::$_instance = new self( $file, $version ); … … 130 130 * @param string $version Plugin version. 131 131 */ 132 public function __construct( $file = '', $version = '1.0. 3' ) {132 public function __construct( $file = '', $version = '1.0.4' ) { 133 133 $this->_version = $version; 134 134 $this->_token = 'easy_ip_blocker'; -
easy-ip-blocker/tags/1.0.4/readme.txt
r2611915 r2803506 4 4 Tags: wordpress, plugin, 5 5 Requires at least: 5.0 6 Tested up to: 5.8.17 Stable tag: 1.0. 36 Tested up to: 6.0.3 7 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 == Changelog == 32 32 33 = 1.0.4 = 34 * 2022-10-24 35 * Version bump to WordPress versino 6.0.3 compatibility 36 33 37 = 1.0.3 = 34 38 * 2021-08-9 -
easy-ip-blocker/trunk/easy-ip-blocker.php
r2611915 r2803506 2 2 /** 3 3 * Plugin Name: Easy IP Blocker 4 * Version: 1.0. 34 * Version: 1.0.4 5 5 * Plugin URI: https://wordpress.org/plugins/easy-ip-blocker/ 6 6 * Description: Easily blocks IPs … … 8 8 * Author URI: https://carlalberto.code.blog/ 9 9 * Requires at least: 5.0 10 * Tested up to: 5.8.110 * Tested up to: 6.0.3 11 11 * 12 12 * Text Domain: easy-ip-blocker … … 36 36 */ 37 37 function easy_ip_blocker() { 38 $instance = Easy_IP_Blocker::instance( __FILE__, '1.0. 3' );38 $instance = Easy_IP_Blocker::instance( __FILE__, '1.0.4' ); 39 39 40 40 if ( is_null( $instance->settings ) ) { -
easy-ip-blocker/trunk/includes/class-easy-ip-blocker.php
r2611915 r2803506 116 116 * @static 117 117 */ 118 public static function instance( $file = '', $version = '1.0. 3' ) {118 public static function instance( $file = '', $version = '1.0.4' ) { 119 119 if ( is_null( self::$_instance ) ) { 120 120 self::$_instance = new self( $file, $version ); … … 130 130 * @param string $version Plugin version. 131 131 */ 132 public function __construct( $file = '', $version = '1.0. 3' ) {132 public function __construct( $file = '', $version = '1.0.4' ) { 133 133 $this->_version = $version; 134 134 $this->_token = 'easy_ip_blocker'; -
easy-ip-blocker/trunk/readme.txt
r2611915 r2803506 4 4 Tags: wordpress, plugin, 5 5 Requires at least: 5.0 6 Tested up to: 5.8.17 Stable tag: 1.0. 36 Tested up to: 6.0.3 7 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 == Changelog == 32 32 33 = 1.0.4 = 34 * 2022-10-24 35 * Version bump to WordPress versino 6.0.3 compatibility 36 33 37 = 1.0.3 = 34 38 * 2021-08-9
Note: See TracChangeset
for help on using the changeset viewer.