Plugin Directory

Changeset 3444577


Ignore:
Timestamp:
01/22/2026 06:55:40 AM (2 months ago)
Author:
pasyuk
Message:

add is_org_compliant parameter

Location:
woowgallery/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woowgallery/trunk/readme.txt

    r3444350 r3444577  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.2.3
     7Stable tag: 1.2.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    151151== Changelog ==
    152152
    153 = 1.2.3 - 21.01 =
     153= 1.2.4 - 22.01 =
    154154* Fixed: Keyword stuffing in readme.txt and plugin name to comply with WordPress.org guidelines.
    155155* Updated: Tested up to WordPress 6.7.1.
  • woowgallery/trunk/woowgallery.php

    r3444350 r3444577  
    77 * Author:      Serhii Pasyuk
    88 * Author URI:  https://profiles.wordpress.org/pasyuk/
    9  * Version:     1.2.3
     9 * Version:     1.2.4
    1010 * Text Domain: woowgallery
    1111 * License: GPLv2 or later
     
    3333     * WoowGallery Constants.
    3434     */
    35     define( 'WOOWGALLERY_VERSION', '1.2.3' );
     35    define( 'WOOWGALLERY_VERSION', '1.2.4' );
    3636    define( 'WOOWGALLERY_SLUG', 'woowgallery' );
    3737    define( 'WOOWGALLERY_FILE', __FILE__ );
     
    5353                require_once dirname( __FILE__ ) . '/vendor/freemius/start.php';
    5454                $woow_fs = fs_dynamic_init( [
    55                     'id'              => '6026',
    56                     'slug'            => 'woowgallery',
    57                     'type'            => 'plugin',
    58                     'public_key'      => 'pk_cc0fe81f5fd36b175cf9234630313',
    59                     'is_premium'      => false,
    60                     'has_addons'      => false,
    61                     'has_paid_plans'  => true,
    62                     'trial'           => [
     55                    'id'               => '6026',
     56                    'slug'             => 'woowgallery',
     57                    'type'             => 'plugin',
     58                    'public_key'       => 'pk_cc0fe81f5fd36b175cf9234630313',
     59                    'is_premium'       => false,
     60                    'has_addons'       => false,
     61                    'has_paid_plans'   => true,
     62                    'is_org_compliant' => true,
     63                    'trial'            => [
    6364                        'days'               => 7,
    6465                        'is_require_payment' => true,
    6566                    ],
    66                     'has_affiliation' => 'all',
    67                     'menu'            => [
     67                    'has_affiliation'  => 'all',
     68                    'menu'             => [
    6869                        'slug'   => 'woowgallery-settings',
    6970                        'parent' => [
     
    7172                        ],
    7273                    ],
    73                     'is_live'         => true,
     74                    'is_live'          => true,
    7475                ] );
    7576            }
Note: See TracChangeset for help on using the changeset viewer.