Changeset 3203734
- Timestamp:
- 12/06/2024 03:52:00 PM (16 months ago)
- Location:
- content-protector
- Files:
-
- 2 deleted
- 8 edited
- 1 copied
-
tags/4.2.8 (copied) (copied from content-protector/trunk)
-
tags/4.2.8/content-protector.php (modified) (2 diffs)
-
tags/4.2.8/inc/admin (modified) (1 prop)
-
tags/4.2.8/inc/freemius/includes/class-freemius.php (modified) (1 diff)
-
tags/4.2.8/readme.txt (modified) (3 diffs)
-
tags/4.2.8/security.md (deleted)
-
trunk/content-protector.php (modified) (2 diffs)
-
trunk/inc/admin (modified) (1 prop)
-
trunk/inc/freemius/includes/class-freemius.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/security.md (deleted)
Legend:
- Unmodified
- Added
- Removed
-
content-protector/tags/4.2.8/content-protector.php
r3188769 r3203734 3 3 /** 4 4 * Plugin Name: Passster 5 * Plugin URI: https://pa trickposner.dev5 * Plugin URI: https://passster.com/ 6 6 * Description: A simple plugin to password-protect your complete website, some pages/posts or just parts of your content. 7 * Version: 4.2. 78 * Author: Patrick Posner9 * Author URI: https:// patrickposner.dev7 * Version: 4.2.8 8 * Author: WPChill 9 * Author URI: https://wpchill.com 10 10 * License: GPL-2.0+ 11 11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 13 13 * Domain Path: /languages 14 14 * 15 * 16 * 17 * NOTE: 18 * Patrick Posner transferred ownership rights on: 6th of December, 2024 when ownership was handed over to WPChill 15 19 */ 16 20 define( 'PASSSTER_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); 17 21 define( 'PASSSTER_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) ); 18 define( 'PASSSTER_VERSION', '4.2. 7' );22 define( 'PASSSTER_VERSION', '4.2.8' ); 19 23 // run plugin. 20 24 if ( !function_exists( 'passster_run_plugin' ) ) { -
content-protector/tags/4.2.8/inc/admin
-
Property
svn:ignore
set to
package-lock.json
package.json
-
Property
svn:ignore
set to
-
content-protector/tags/4.2.8/inc/freemius/includes/class-freemius.php
r3188769 r3203734 3430 3430 FS_DebugManager::load_required_static(); 3431 3431 3432 if ( 0 == did_action( ' plugins_loaded' ) ) {3433 add_action( ' plugins_loaded', array( 'Freemius', '_load_textdomain' ), 1 );3432 if ( 0 == did_action( 'init' ) ) { 3433 add_action( 'init', array( 'Freemius', '_load_textdomain' ), 1 ); 3434 3434 } 3435 3435 -
content-protector/tags/4.2.8/readme.txt
r3188769 r3203734 1 1 === Passster - Password Protect Pages and Content === 2 Contributors: patrickposner2 Contributors: wpchill, silkalns 3 3 Tags: password protect, password, restrict content, sitewide, password protection 4 4 Requires at least: 6.5 … … 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 4.2. 79 Stable tag: 4.2.8 10 10 11 11 Password protect pages, your entire website or just parts of your content with a single password. … … 213 213 214 214 == Changelog == 215 216 = 4.2.8 - 06.12.2024 = 217 * Changed: Readme update 215 218 216 219 = 4.2.7 = -
content-protector/trunk/content-protector.php
r3188769 r3203734 3 3 /** 4 4 * Plugin Name: Passster 5 * Plugin URI: https://pa trickposner.dev5 * Plugin URI: https://passster.com/ 6 6 * Description: A simple plugin to password-protect your complete website, some pages/posts or just parts of your content. 7 * Version: 4.2. 78 * Author: Patrick Posner9 * Author URI: https:// patrickposner.dev7 * Version: 4.2.8 8 * Author: WPChill 9 * Author URI: https://wpchill.com 10 10 * License: GPL-2.0+ 11 11 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt … … 13 13 * Domain Path: /languages 14 14 * 15 * 16 * 17 * NOTE: 18 * Patrick Posner transferred ownership rights on: 6th of December, 2024 when ownership was handed over to WPChill 15 19 */ 16 20 define( 'PASSSTER_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); 17 21 define( 'PASSSTER_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) ); 18 define( 'PASSSTER_VERSION', '4.2. 7' );22 define( 'PASSSTER_VERSION', '4.2.8' ); 19 23 // run plugin. 20 24 if ( !function_exists( 'passster_run_plugin' ) ) { -
content-protector/trunk/inc/admin
-
Property
svn:ignore
set to
package-lock.json
package.json
-
Property
svn:ignore
set to
-
content-protector/trunk/inc/freemius/includes/class-freemius.php
r3188769 r3203734 3430 3430 FS_DebugManager::load_required_static(); 3431 3431 3432 if ( 0 == did_action( ' plugins_loaded' ) ) {3433 add_action( ' plugins_loaded', array( 'Freemius', '_load_textdomain' ), 1 );3432 if ( 0 == did_action( 'init' ) ) { 3433 add_action( 'init', array( 'Freemius', '_load_textdomain' ), 1 ); 3434 3434 } 3435 3435 -
content-protector/trunk/readme.txt
r3188769 r3203734 1 1 === Passster - Password Protect Pages and Content === 2 Contributors: patrickposner2 Contributors: wpchill, silkalns 3 3 Tags: password protect, password, restrict content, sitewide, password protection 4 4 Requires at least: 6.5 … … 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 4.2. 79 Stable tag: 4.2.8 10 10 11 11 Password protect pages, your entire website or just parts of your content with a single password. … … 213 213 214 214 == Changelog == 215 216 = 4.2.8 - 06.12.2024 = 217 * Changed: Readme update 215 218 216 219 = 4.2.7 =
Note: See TracChangeset
for help on using the changeset viewer.