Changeset 3468896
- Timestamp:
- 02/24/2026 08:57:31 PM (13 days ago)
- Location:
- quick-paypal-payments
- Files:
-
- 12 edited
- 1 copied
-
tags/5.7.50 (copied) (copied from quick-paypal-payments/trunk)
-
tags/5.7.50/changelog.txt (modified) (1 diff)
-
tags/5.7.50/control/class-freemius-config.php (modified) (2 diffs)
-
tags/5.7.50/legacy/functions/qpp_block.php (modified) (1 diff)
-
tags/5.7.50/quick-paypal-payments.php (modified) (2 diffs)
-
tags/5.7.50/readme.txt (modified) (1 diff)
-
tags/5.7.50/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/control/class-freemius-config.php (modified) (2 diffs)
-
trunk/legacy/functions/qpp_block.php (modified) (1 diff)
-
trunk/quick-paypal-payments.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-paypal-payments/tags/5.7.50/changelog.txt
r3412434 r3468896 1 1 == Changelog == 2 = 5.7.50 = 3 * Fix Gutenberg block.js path for block registration 4 2 5 = 5.7.49 = 3 6 * Fix text domain mis matches -
quick-paypal-payments/tags/5.7.50/control/class-freemius-config.php
r3077057 r3468896 34 34 require_once QUICK_PAYPAL_PAYMENTS_PLUGIN_DIR . 'vendor/freemius/wordpress-sdk/start.php'; 35 35 $quick_paypal_payments_fs = fs_dynamic_init( array( 36 'id' => '5623',37 'slug' => 'quick-paypal-payments',38 'type' => 'plugin',39 'public_key' => 'pk_fe42c0234babc6d6acb8ca8948f97',40 'is_premium' => false,41 'premium_suffix' => 'Pro',42 'has_addons' => false,43 'has_paid_plans' => true,44 'trial' => array(36 'id' => '5623', 37 'slug' => 'quick-paypal-payments', 38 'type' => 'plugin', 39 'public_key' => 'pk_fe42c0234babc6d6acb8ca8948f97', 40 'is_premium' => false, 41 'premium_suffix' => 'Pro', 42 'has_addons' => false, 43 'has_paid_plans' => true, 44 'trial' => array( 45 45 'days' => 14, 46 46 'is_require_payment' => true, 47 47 ), 48 'navigation' => 'tabs',49 'menu' => array(48 'navigation' => 'tabs', 49 'menu' => array( 50 50 'slug' => 'quick-paypal-payments', 51 51 'override_exact' => true, … … 55 55 ), 56 56 ), 57 'anonymous_mode' => QPP_DEMO, 58 'is_live' => true, 57 'anonymous_mode' => QPP_DEMO, 58 'is_live' => true, 59 'is_org_compliant' => true, 59 60 ) ); 60 61 } -
quick-paypal-payments/tags/5.7.50/legacy/functions/qpp_block.php
r3201238 r3468896 9 9 wp_register_script( 10 10 'qpp_block', 11 plugins_url( ' block.js', __FILE__ ),11 plugins_url( '../block.js', __FILE__ ), 12 12 array( 'wp-blocks', 'wp-element', 'wp-components', 'wp-editor' ), 13 13 ); -
quick-paypal-payments/tags/5.7.50/quick-paypal-payments.php
r3412434 r3468896 25 25 * Plugin URI: https://fullworksplugins.com/quick-paypal-payments/ 26 26 * Description: Accept any amount or payment ID before submitting to paypal. 27 * Version: 5.7. 4927 * Version: 5.7.50 28 28 * Requires at least: 5.3 29 29 * Requires PHP: 7.4 … … 50 50 define( 'QUICK_PAYPAL_PAYMENTS_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) ); 51 51 define( 'QUICK_PAYPAL_PAYMENTS_PLUGIN_FILE', plugin_basename( __FILE__ ) ); 52 define( 'QUICK_PAYPAL_PAYMENTS_VERSION', '5.7. 49' );52 define( 'QUICK_PAYPAL_PAYMENTS_VERSION', '5.7.50' ); 53 53 54 54 // Include the autoloader so we can dynamically include the classes. -
quick-paypal-payments/tags/5.7.50/readme.txt
r3412434 r3468896 3 3 Tags: paypal payment form, paypal, payments 4 4 Tested up to: 6.9 5 Stable tag: 5.7. 495 Stable tag: 5.7.50 6 6 License: GPL-2.0-or-later 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
quick-paypal-payments/tags/5.7.50/vendor/composer/installed.php
r3412434 r3468896 2 2 'root' => array( 3 3 'name' => 'fullworks/quick-paypal-payments', 4 'pretty_version' => '5.7. 49',5 'version' => '5.7. 49.0',6 'reference' => ' 333a1447acbe2c9f39e9f7eef31e9a219615ceac',4 'pretty_version' => '5.7.50', 5 'version' => '5.7.50.0', 6 'reference' => '1d172fd3a13e338a71b9a87b45016379b24b5f02', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 41 41 ), 42 42 'fullworks/quick-paypal-payments' => array( 43 'pretty_version' => '5.7. 49',44 'version' => '5.7. 49.0',45 'reference' => ' 333a1447acbe2c9f39e9f7eef31e9a219615ceac',43 'pretty_version' => '5.7.50', 44 'version' => '5.7.50.0', 45 'reference' => '1d172fd3a13e338a71b9a87b45016379b24b5f02', 46 46 'type' => 'wordpress-plugin', 47 47 'install_path' => __DIR__ . '/../../', -
quick-paypal-payments/trunk/changelog.txt
r3412434 r3468896 1 1 == Changelog == 2 = 5.7.50 = 3 * Fix Gutenberg block.js path for block registration 4 2 5 = 5.7.49 = 3 6 * Fix text domain mis matches -
quick-paypal-payments/trunk/control/class-freemius-config.php
r3077057 r3468896 34 34 require_once QUICK_PAYPAL_PAYMENTS_PLUGIN_DIR . 'vendor/freemius/wordpress-sdk/start.php'; 35 35 $quick_paypal_payments_fs = fs_dynamic_init( array( 36 'id' => '5623',37 'slug' => 'quick-paypal-payments',38 'type' => 'plugin',39 'public_key' => 'pk_fe42c0234babc6d6acb8ca8948f97',40 'is_premium' => false,41 'premium_suffix' => 'Pro',42 'has_addons' => false,43 'has_paid_plans' => true,44 'trial' => array(36 'id' => '5623', 37 'slug' => 'quick-paypal-payments', 38 'type' => 'plugin', 39 'public_key' => 'pk_fe42c0234babc6d6acb8ca8948f97', 40 'is_premium' => false, 41 'premium_suffix' => 'Pro', 42 'has_addons' => false, 43 'has_paid_plans' => true, 44 'trial' => array( 45 45 'days' => 14, 46 46 'is_require_payment' => true, 47 47 ), 48 'navigation' => 'tabs',49 'menu' => array(48 'navigation' => 'tabs', 49 'menu' => array( 50 50 'slug' => 'quick-paypal-payments', 51 51 'override_exact' => true, … … 55 55 ), 56 56 ), 57 'anonymous_mode' => QPP_DEMO, 58 'is_live' => true, 57 'anonymous_mode' => QPP_DEMO, 58 'is_live' => true, 59 'is_org_compliant' => true, 59 60 ) ); 60 61 } -
quick-paypal-payments/trunk/legacy/functions/qpp_block.php
r3201238 r3468896 9 9 wp_register_script( 10 10 'qpp_block', 11 plugins_url( ' block.js', __FILE__ ),11 plugins_url( '../block.js', __FILE__ ), 12 12 array( 'wp-blocks', 'wp-element', 'wp-components', 'wp-editor' ), 13 13 ); -
quick-paypal-payments/trunk/quick-paypal-payments.php
r3412434 r3468896 25 25 * Plugin URI: https://fullworksplugins.com/quick-paypal-payments/ 26 26 * Description: Accept any amount or payment ID before submitting to paypal. 27 * Version: 5.7. 4927 * Version: 5.7.50 28 28 * Requires at least: 5.3 29 29 * Requires PHP: 7.4 … … 50 50 define( 'QUICK_PAYPAL_PAYMENTS_PLUGIN_DIR', trailingslashit( plugin_dir_path( __FILE__ ) ) ); 51 51 define( 'QUICK_PAYPAL_PAYMENTS_PLUGIN_FILE', plugin_basename( __FILE__ ) ); 52 define( 'QUICK_PAYPAL_PAYMENTS_VERSION', '5.7. 49' );52 define( 'QUICK_PAYPAL_PAYMENTS_VERSION', '5.7.50' ); 53 53 54 54 // Include the autoloader so we can dynamically include the classes. -
quick-paypal-payments/trunk/readme.txt
r3412434 r3468896 3 3 Tags: paypal payment form, paypal, payments 4 4 Tested up to: 6.9 5 Stable tag: 5.7. 495 Stable tag: 5.7.50 6 6 License: GPL-2.0-or-later 7 7 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
quick-paypal-payments/trunk/vendor/composer/installed.php
r3412434 r3468896 2 2 'root' => array( 3 3 'name' => 'fullworks/quick-paypal-payments', 4 'pretty_version' => '5.7. 49',5 'version' => '5.7. 49.0',6 'reference' => ' 333a1447acbe2c9f39e9f7eef31e9a219615ceac',4 'pretty_version' => '5.7.50', 5 'version' => '5.7.50.0', 6 'reference' => '1d172fd3a13e338a71b9a87b45016379b24b5f02', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 41 41 ), 42 42 'fullworks/quick-paypal-payments' => array( 43 'pretty_version' => '5.7. 49',44 'version' => '5.7. 49.0',45 'reference' => ' 333a1447acbe2c9f39e9f7eef31e9a219615ceac',43 'pretty_version' => '5.7.50', 44 'version' => '5.7.50.0', 45 'reference' => '1d172fd3a13e338a71b9a87b45016379b24b5f02', 46 46 'type' => 'wordpress-plugin', 47 47 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.