Plugin Directory

Changeset 3203734


Ignore:
Timestamp:
12/06/2024 03:52:00 PM (16 months ago)
Author:
raldea89
Message:

Update to 4.2.8

Location:
content-protector
Files:
2 deleted
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • content-protector/tags/4.2.8/content-protector.php

    r3188769 r3203734  
    33/**
    44 * Plugin Name:       Passster
    5  * Plugin URI:        https://patrickposner.dev
     5 * Plugin URI:        https://passster.com/
    66 * Description:       A simple plugin to password-protect your complete website, some pages/posts or just parts of your content.
    7  * Version:           4.2.7
    8  * Author:            Patrick Posner
    9  * Author URI:        https://patrickposner.dev
     7 * Version:           4.2.8
     8 * Author:            WPChill
     9 * Author URI:        https://wpchill.com
    1010 * License:           GPL-2.0+
    1111 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     
    1313 * Domain Path:       /languages
    1414 *
     15 *
     16 *
     17 * NOTE:
     18 * Patrick Posner transferred ownership rights on: 6th of December, 2024 when ownership was handed over to WPChill
    1519 */
    1620define( 'PASSSTER_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    1721define( 'PASSSTER_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
    18 define( 'PASSSTER_VERSION', '4.2.7' );
     22define( 'PASSSTER_VERSION', '4.2.8' );
    1923// run plugin.
    2024if ( !function_exists( 'passster_run_plugin' ) ) {
  • content-protector/tags/4.2.8/inc/admin

    • Property svn:ignore set to
      package-lock.json
      package.json
  • content-protector/tags/4.2.8/inc/freemius/includes/class-freemius.php

    r3188769 r3203734  
    34303430            FS_DebugManager::load_required_static();
    34313431
    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 );
    34343434            }
    34353435
  • content-protector/tags/4.2.8/readme.txt

    r3188769 r3203734  
    11=== Passster - Password Protect Pages and Content ===
    2 Contributors: patrickposner
     2Contributors: wpchill, silkalns
    33Tags: password protect, password, restrict content, sitewide, password protection
    44Requires at least: 6.5
     
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    9 Stable tag: 4.2.7
     9Stable tag: 4.2.8
    1010
    1111Password protect pages, your entire website or just parts of your content with a single password.
     
    213213
    214214== Changelog ==
     215
     216= 4.2.8 - 06.12.2024 =
     217* Changed: Readme update
    215218
    216219= 4.2.7 =
  • content-protector/trunk/content-protector.php

    r3188769 r3203734  
    33/**
    44 * Plugin Name:       Passster
    5  * Plugin URI:        https://patrickposner.dev
     5 * Plugin URI:        https://passster.com/
    66 * Description:       A simple plugin to password-protect your complete website, some pages/posts or just parts of your content.
    7  * Version:           4.2.7
    8  * Author:            Patrick Posner
    9  * Author URI:        https://patrickposner.dev
     7 * Version:           4.2.8
     8 * Author:            WPChill
     9 * Author URI:        https://wpchill.com
    1010 * License:           GPL-2.0+
    1111 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     
    1313 * Domain Path:       /languages
    1414 *
     15 *
     16 *
     17 * NOTE:
     18 * Patrick Posner transferred ownership rights on: 6th of December, 2024 when ownership was handed over to WPChill
    1519 */
    1620define( 'PASSSTER_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    1721define( 'PASSSTER_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) );
    18 define( 'PASSSTER_VERSION', '4.2.7' );
     22define( 'PASSSTER_VERSION', '4.2.8' );
    1923// run plugin.
    2024if ( !function_exists( 'passster_run_plugin' ) ) {
  • content-protector/trunk/inc/admin

    • Property svn:ignore set to
      package-lock.json
      package.json
  • content-protector/trunk/inc/freemius/includes/class-freemius.php

    r3188769 r3203734  
    34303430            FS_DebugManager::load_required_static();
    34313431
    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 );
    34343434            }
    34353435
  • content-protector/trunk/readme.txt

    r3188769 r3203734  
    11=== Passster - Password Protect Pages and Content ===
    2 Contributors: patrickposner
     2Contributors: wpchill, silkalns
    33Tags: password protect, password, restrict content, sitewide, password protection
    44Requires at least: 6.5
     
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    9 Stable tag: 4.2.7
     9Stable tag: 4.2.8
    1010
    1111Password protect pages, your entire website or just parts of your content with a single password.
     
    213213
    214214== Changelog ==
     215
     216= 4.2.8 - 06.12.2024 =
     217* Changed: Readme update
    215218
    216219= 4.2.7 =
Note: See TracChangeset for help on using the changeset viewer.