Changeset 3444577
- Timestamp:
- 01/22/2026 06:55:40 AM (2 months ago)
- Location:
- woowgallery/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
woowgallery.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woowgallery/trunk/readme.txt
r3444350 r3444577 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.2. 37 Stable tag: 1.2.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 151 151 == Changelog == 152 152 153 = 1.2. 3 - 21.01 =153 = 1.2.4 - 22.01 = 154 154 * Fixed: Keyword stuffing in readme.txt and plugin name to comply with WordPress.org guidelines. 155 155 * Updated: Tested up to WordPress 6.7.1. -
woowgallery/trunk/woowgallery.php
r3444350 r3444577 7 7 * Author: Serhii Pasyuk 8 8 * Author URI: https://profiles.wordpress.org/pasyuk/ 9 * Version: 1.2. 39 * Version: 1.2.4 10 10 * Text Domain: woowgallery 11 11 * License: GPLv2 or later … … 33 33 * WoowGallery Constants. 34 34 */ 35 define( 'WOOWGALLERY_VERSION', '1.2. 3' );35 define( 'WOOWGALLERY_VERSION', '1.2.4' ); 36 36 define( 'WOOWGALLERY_SLUG', 'woowgallery' ); 37 37 define( 'WOOWGALLERY_FILE', __FILE__ ); … … 53 53 require_once dirname( __FILE__ ) . '/vendor/freemius/start.php'; 54 54 $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' => [ 63 64 'days' => 7, 64 65 'is_require_payment' => true, 65 66 ], 66 'has_affiliation' => 'all',67 'menu' => [67 'has_affiliation' => 'all', 68 'menu' => [ 68 69 'slug' => 'woowgallery-settings', 69 70 'parent' => [ … … 71 72 ], 72 73 ], 73 'is_live' => true,74 'is_live' => true, 74 75 ] ); 75 76 }
Note: See TracChangeset
for help on using the changeset viewer.