Changeset 3355495
- Timestamp:
- 09/03/2025 02:26:34 PM (7 months ago)
- Location:
- lapinopay
- Files:
-
- 5 edited
-
tags/1.0.0/includes/class-lapinopay-instant-payment-gateway.php (modified) (1 diff)
-
tags/1.1.8/includes/class-lapinopay-instant-payment-gateway.php (modified) (1 diff)
-
tags/1.1.8/readme.txt (modified) (2 diffs)
-
trunk/includes/class-lapinopay-instant-payment-gateway.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lapinopay/tags/1.0.0/includes/class-lapinopay-instant-payment-gateway.php
r3324348 r3355495 132 132 133 133 $validation_url = add_query_arg( 134 array('token' => $api_token), 134 array( 135 'token' => $api_token, 136 'site_url' => get_site_url() 137 ), 135 138 trailingslashit($base_url) . self::$config['api']['token_validation_endpoint'] 136 139 ); -
lapinopay/tags/1.1.8/includes/class-lapinopay-instant-payment-gateway.php
r3324348 r3355495 132 132 133 133 $validation_url = add_query_arg( 134 array('token' => $api_token), 134 array( 135 'token' => $api_token, 136 'site_url' => get_site_url() 137 ), 135 138 trailingslashit($base_url) . self::$config['api']['token_validation_endpoint'] 136 139 ); -
lapinopay/tags/1.1.8/readme.txt
r3346026 r3355495 68 68 * Build Process: https://lapinopay.com/docs/build 69 69 70 == Version Management == 71 72 This plugin follows WordPress.org SVN repository structure: 73 * `trunk/` - Development version (latest features) 74 * `tags/` - Stable releases (e.g., `tags/1.1.8/`) 75 * Assets are managed through WordPress.org plugin repository 76 77 For SVN updates: 78 1. Update version number in main plugin file 79 2. Update stable tag in readme.txt 80 3. Commit changes to trunk 81 4. Create new tag for stable release 82 5. Update assets if needed 83 70 84 == Privacy and Security == 71 85 … … 206 220 * Enhanced payment method detection 207 221 * Performance optimizations 208 * fix checkout page 209 * fix config 210 * disable revolut for now 222 * Fixed checkout page 223 * Fixed config 224 * Disabled Revolut for now 225 * Added site URL parameter to API validation for better tracking 211 226 212 227 -
lapinopay/trunk/includes/class-lapinopay-instant-payment-gateway.php
r3324348 r3355495 132 132 133 133 $validation_url = add_query_arg( 134 array('token' => $api_token), 134 array( 135 'token' => $api_token, 136 'site_url' => get_site_url() 137 ), 135 138 trailingslashit($base_url) . self::$config['api']['token_validation_endpoint'] 136 139 ); -
lapinopay/trunk/readme.txt
r3346441 r3355495 68 68 * Build Process: https://lapinopay.com/docs/build 69 69 70 == Version Management == 71 72 This plugin follows WordPress.org SVN repository structure: 73 * `trunk/` - Development version (latest features) 74 * `tags/` - Stable releases (e.g., `tags/1.1.8/`) 75 * Assets are managed through WordPress.org plugin repository 76 77 For SVN updates: 78 1. Update version number in main plugin file 79 2. Update stable tag in readme.txt 80 3. Commit changes to trunk 81 4. Create new tag for stable release 82 5. Update assets if needed 83 70 84 == Privacy and Security == 71 85 … … 211 225 212 226 = 1.1.9 - 2025-08-17 = 213 * disable revolut for now 227 * Disabled Revolut for now 228 * Added site URL parameter to API validation for better tracking 214 229 215 230
Note: See TracChangeset
for help on using the changeset viewer.