Changeset 2678608
- Timestamp:
- 02/14/2022 04:52:38 PM (4 years ago)
- Location:
- nft-login
- Files:
-
- 3 edited
- 22 copied
-
tags/1.1.1 (copied) (copied from nft-login/trunk)
-
tags/1.1.1/LICENSE.txt (copied) (copied from nft-login/trunk/LICENSE.txt)
-
tags/1.1.1/README.txt (copied) (copied from nft-login/trunk/README.txt) (2 diffs)
-
tags/1.1.1/admin (copied) (copied from nft-login/trunk/admin)
-
tags/1.1.1/admin/class-nft-login-admin.php (copied) (copied from nft-login/trunk/admin/class-nft-login-admin.php)
-
tags/1.1.1/admin/partials/nft-login-admin-display.php (copied) (copied from nft-login/trunk/admin/partials/nft-login-admin-display.php)
-
tags/1.1.1/includes (copied) (copied from nft-login/trunk/includes)
-
tags/1.1.1/includes/class-nft-login-activator.php (copied) (copied from nft-login/trunk/includes/class-nft-login-activator.php)
-
tags/1.1.1/includes/class-nft-login-deactivator.php (copied) (copied from nft-login/trunk/includes/class-nft-login-deactivator.php)
-
tags/1.1.1/includes/class-nft-login-i18n.php (copied) (copied from nft-login/trunk/includes/class-nft-login-i18n.php)
-
tags/1.1.1/includes/class-nft-login-loader.php (copied) (copied from nft-login/trunk/includes/class-nft-login-loader.php)
-
tags/1.1.1/includes/class-nft-login.php (copied) (copied from nft-login/trunk/includes/class-nft-login.php) (1 diff)
-
tags/1.1.1/index.php (copied) (copied from nft-login/trunk/index.php)
-
tags/1.1.1/languages (copied) (copied from nft-login/trunk/languages)
-
tags/1.1.1/nft-login.php (copied) (copied from nft-login/trunk/nft-login.php) (2 diffs)
-
tags/1.1.1/public (copied) (copied from nft-login/trunk/public)
-
tags/1.1.1/public/class-nft-login-public.php (copied) (copied from nft-login/trunk/public/class-nft-login-public.php)
-
tags/1.1.1/public/image (copied) (copied from nft-login/trunk/public/image)
-
tags/1.1.1/public/js/nft-login-module.js (copied) (copied from nft-login/trunk/public/js/nft-login-module.js)
-
tags/1.1.1/public/partials/nft-login-public-display.php (copied) (copied from nft-login/trunk/public/partials/nft-login-public-display.php)
-
tags/1.1.1/resources (copied) (copied from nft-login/trunk/resources)
-
tags/1.1.1/uninstall.php (copied) (copied from nft-login/trunk/uninstall.php)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-nft-login.php (modified) (1 diff)
-
trunk/nft-login.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nft-login/tags/1.1.1/README.txt
r2675999 r2678608 4 4 Tags: login,authentication,web3,nft 5 5 Requires at least: 5.0 6 Tested up to: 5. 87 Stable tag: 1.1. 06 Tested up to: 5.9 7 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 70 70 Content locking 71 71 Configuration option for registration and login 72 73 = 1.1.1 = 74 Fix bug in configuration for registration and login -
nft-login/tags/1.1.1/includes/class-nft-login.php
r2675969 r2678608 186 186 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' ); 187 187 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); 188 189 if (get_option( $this->option_name . '_reg_login' ) == 'enabled') { 188 $this->loader->add_action( 'login_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); 189 190 if (get_option( 'nft_login_setting_reg_login' ) == 'enabled') { 190 191 // registration hooks 191 192 $this->loader->add_action('register_form', $plugin_public, 'register_form'); -
nft-login/tags/1.1.1/nft-login.php
r2675981 r2678608 15 15 * Plugin URI: https://davehagler.github.io/nftlogin/ 16 16 * Description: Login to Wordpress using NFT's 17 * Version: 1.1. 017 * Version: 1.1.1 18 18 * Author: Dave Hagler 19 19 * Requires at least: 5.0 … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'NFT_LOGIN_VERSION', '1.1. 0' );37 define( 'NFT_LOGIN_VERSION', '1.1.1' ); 38 38 39 39 !defined('NFT_LOGIN_PATH') && define('NFT_LOGIN_PATH', plugin_dir_path( __FILE__ )); -
nft-login/trunk/README.txt
r2675999 r2678608 4 4 Tags: login,authentication,web3,nft 5 5 Requires at least: 5.0 6 Tested up to: 5. 87 Stable tag: 1.1. 06 Tested up to: 5.9 7 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 70 70 Content locking 71 71 Configuration option for registration and login 72 73 = 1.1.1 = 74 Fix bug in configuration for registration and login -
nft-login/trunk/includes/class-nft-login.php
r2675969 r2678608 186 186 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' ); 187 187 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); 188 189 if (get_option( $this->option_name . '_reg_login' ) == 'enabled') { 188 $this->loader->add_action( 'login_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); 189 190 if (get_option( 'nft_login_setting_reg_login' ) == 'enabled') { 190 191 // registration hooks 191 192 $this->loader->add_action('register_form', $plugin_public, 'register_form'); -
nft-login/trunk/nft-login.php
r2675981 r2678608 15 15 * Plugin URI: https://davehagler.github.io/nftlogin/ 16 16 * Description: Login to Wordpress using NFT's 17 * Version: 1.1. 017 * Version: 1.1.1 18 18 * Author: Dave Hagler 19 19 * Requires at least: 5.0 … … 35 35 * Rename this for your plugin and update it as you release new versions. 36 36 */ 37 define( 'NFT_LOGIN_VERSION', '1.1. 0' );37 define( 'NFT_LOGIN_VERSION', '1.1.1' ); 38 38 39 39 !defined('NFT_LOGIN_PATH') && define('NFT_LOGIN_PATH', plugin_dir_path( __FILE__ ));
Note: See TracChangeset
for help on using the changeset viewer.