Plugin Directory

Changeset 3123392


Ignore:
Timestamp:
07/22/2024 05:49:23 PM (17 months ago)
Author:
claudiosanches
Message:

Tagging version 3.2.12

Location:
restrict-content/tags/3.2.12
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • restrict-content/tags/3.2.12/composer.json

    r3120662 r3123392  
    11{
    22    "name": "restrictcontent/restrict-content",
    3     "version": "3.2.11",
     3    "version": "3.2.12",
    44    "type": "wordpress-plugin",
    55    "description": "A simple, yet powerful membership solution for WordPress.",
  • restrict-content/tags/3.2.12/lang/restrict-content.pot

    r3120662 r3123392  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Restrict Content 3.2.11-release/R24.caramellos-dbf93d6\n"
     5"Project-Id-Version: Restrict Content 3.2.12-release/R24.caramellos.1-458a4f2\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2024-07-16 23:15:57+00:00\n"
     7"POT-Creation-Date: 2024-07-22 16:46:32+00:00\n"
    88"PO-Revision-Date: 2024-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
     
    78517851msgstr ""
    78527852
    7853 #: restrictcontent.php:1025
     7853#: restrictcontent.php:1030
    78547854msgid "Make it yours."
    78557855msgstr ""
    78567856
    7857 #: restrictcontent.php:1028
     7857#: restrictcontent.php:1033
    78587858msgid "Save 40% on Restrict Content Pro."
    78597859msgstr ""
    78607860
    7861 #: restrictcontent.php:1034
     7861#: restrictcontent.php:1039
    78627862msgid "Shop Now"
    78637863msgstr ""
     
    78657865#. translators: %s: Discount percentage.
    78667866
    7867 #: restrictcontent.php:1044
     7867#: restrictcontent.php:1049
    78687868msgid "Take %s off all StellarWP brands during the annual Stellar Sale. <br />Now through July 30."
    78697869msgstr ""
    78707870
    7871 #: restrictcontent.php:1056
     7871#: restrictcontent.php:1061
    78727872msgid "View all StellarWP Deals"
    78737873msgstr ""
  • restrict-content/tags/3.2.12/legacy/restrictcontent.php

    r3120662 r3123392  
    2222
    2323if ( ! defined( 'RC_PLUGIN_VERSION' ) ) {
    24     define( 'RC_PLUGIN_VERSION', '3.2.11' );
     24    define( 'RC_PLUGIN_VERSION', '3.2.12' );
    2525}
    2626
  • restrict-content/tags/3.2.12/package.json

    r3120662 r3123392  
    11{
    22  "name": "restrict-content",
    3   "version": "3.2.11",
     3  "version": "3.2.12",
    44  "description": "Set up a complete membership system for your WordPress site and deliver premium content to your members. Unlimited membership packages, membership management, discount codes, registration / login forms, and more.",
    55  "homepage": "https://restrictcontentpro.com/",
  • restrict-content/tags/3.2.12/readme.txt

    r3120666 r3123392  
    66Requires at least: 6.0
    77Requires PHP: 7.4
    8 Tested up to: 6.6
    9 Stable tag: 3.2.11
     8Tested up to: 6.4
     9Stable tag: 3.2.12
    1010
    1111Restrict Content is a powerful WordPress membership plugin that gives you full control over who can and cannot view content on your WordPress site.
     
    258258== Changelog ==
    259259
     260= 3.2.12 =
     261* Fix: Prevent fatal errors in legacy mode.
     262
    260263= 3.2.11 =
    261264* Fix: Updated knowledge base links
  • restrict-content/tags/3.2.12/restrictcontent.php

    r3123335 r3123392  
    44 * Plugin URI: https://restrictcontentpro.com
    55 * Description: Set up a complete membership system for your WordPress site and deliver premium content to your members. Unlimited membership packages, membership management, discount codes, registration / login forms, and more.
    6  * Version: 3.2.11
     6 * Version: 3.2.12
    77 * Author: StellarWP
    88 * Author URI: https://stellarwp.com/
     
    1919define('RCP_ROOT', plugin_dir_path(__FILE__));
    2020define('RCP_WEB_ROOT', plugin_dir_url(__FILE__));
    21 define('RCF_VERSION', '3.2.11');
     21define('RCF_VERSION', '3.2.12');
    2222
    2323// Load Strauss autoload.
     
    997997    'admin_notices',
    998998    function () {
     999        // Stop if restrict_content_chosen_version is legacy.
    9991000        if ( ! function_exists( 'rcp_is_rcp_admin_page' ) ) {
    1000             require_once plugin_dir_path( __FILE__ ) . 'core/includes/misc-functions.php';
     1001            return;
    10011002        }
    10021003
Note: See TracChangeset for help on using the changeset viewer.