Changeset 3408880
- Timestamp:
- 12/03/2025 06:40:04 AM (3 months ago)
- Location:
- convertkit-membermouse
- Files:
-
- 8 edited
- 1 copied
-
tags/1.3.6 (copied) (copied from convertkit-membermouse/trunk)
-
tags/1.3.6/convertkit-membermouse.php (modified) (2 diffs)
-
tags/1.3.6/languages/convertkit-mm.pot (modified) (2 diffs)
-
tags/1.3.6/readme.txt (modified) (2 diffs)
-
tags/1.3.6/vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-resource-v4.php (modified) (3 diffs)
-
trunk/convertkit-membermouse.php (modified) (2 diffs)
-
trunk/languages/convertkit-mm.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-resource-v4.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
convertkit-membermouse/tags/1.3.6/convertkit-membermouse.php
r3399367 r3408880 16 16 * Plugin URI: http://www.kit.com 17 17 * Description: This plugin integrates Kit with MemberMouse. 18 * Version: 1.3. 518 * Version: 1.3.6 19 19 * Author: Kit 20 20 * Author URI: https://kit.com … … 35 35 define( 'CONVERTKIT_MM_URL', plugin_dir_url( __FILE__ ) ); 36 36 define( 'CONVERTKIT_MM_PATH', plugin_dir_path( __FILE__ ) ); 37 define( 'CONVERTKIT_MM_VERSION', '1.3. 5' );37 define( 'CONVERTKIT_MM_VERSION', '1.3.6' ); 38 38 define( 'CONVERTKIT_MM_OAUTH_CLIENT_ID', 'U4aHnnj_QgRrZOdtWUJ6vtpulZSloLKn-7e551T-Exw' ); 39 39 define( 'CONVERTKIT_MM_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' ); -
convertkit-membermouse/tags/1.3.6/languages/convertkit-mm.pot
r3399367 r3408880 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Kit (formerly ConvertKit) for MemberMouse 1.3. 5\n"5 "Project-Id-Version: Kit (formerly ConvertKit) for MemberMouse 1.3.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit-membermouse\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-1 1-20T03:48:43+00:00\n"12 "POT-Creation-Date: 2025-12-03T01:30:46+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
convertkit-membermouse/tags/1.3.6/readme.txt
r3399367 r3408880 4 4 Tags: convertkit, email, marketing, membermouse 5 5 Requires at least: 5.0 6 Tested up to: 6. 86 Tested up to: 6.9 7 7 Requires PHP: 7.1 8 Stable tag: 1.3. 58 Stable tag: 1.3.6 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 40 40 41 41 == Changelog == 42 43 ### 1.3.6 2025-12-03 44 * Fix: Settings: Disconnect: Remove cached Custom Fields and Sequences 45 * Updated: Use WordPress Libraries 2.1.2 42 46 43 47 ### 1.3.5 2025-11-20 -
convertkit-membermouse/tags/1.3.6/vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-resource-v4.php
r3140610 r3408880 117 117 // would never expire. 118 118 if ( ! $this->last_queried ) { 119 $this->refresh(); 120 return; 119 return $this->refresh(); 121 120 } 122 121 123 122 // If the resources have expired, refresh them now. 124 123 if ( time() > ( $this->last_queried + $this->cache_duration ) ) { 125 $this->refresh(); 126 return; 124 return $this->refresh(); 127 125 } 128 126 … … 345 343 * @since 1.0.0 346 344 * 347 * @return bool|WP_Error|array345 * @return WP_Error|array 348 346 */ 349 347 public function refresh() { … … 351 349 // Bail if no API class was defined. 352 350 if ( ! $this->api ) { 353 return false;351 return new WP_Error( 'convertkit_resource_refresh_error', 'Connect the Plugin to your Kit account to refresh resources.' ); 354 352 } 355 353 -
convertkit-membermouse/trunk/convertkit-membermouse.php
r3399367 r3408880 16 16 * Plugin URI: http://www.kit.com 17 17 * Description: This plugin integrates Kit with MemberMouse. 18 * Version: 1.3. 518 * Version: 1.3.6 19 19 * Author: Kit 20 20 * Author URI: https://kit.com … … 35 35 define( 'CONVERTKIT_MM_URL', plugin_dir_url( __FILE__ ) ); 36 36 define( 'CONVERTKIT_MM_PATH', plugin_dir_path( __FILE__ ) ); 37 define( 'CONVERTKIT_MM_VERSION', '1.3. 5' );37 define( 'CONVERTKIT_MM_VERSION', '1.3.6' ); 38 38 define( 'CONVERTKIT_MM_OAUTH_CLIENT_ID', 'U4aHnnj_QgRrZOdtWUJ6vtpulZSloLKn-7e551T-Exw' ); 39 39 define( 'CONVERTKIT_MM_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' ); -
convertkit-membermouse/trunk/languages/convertkit-mm.pot
r3399367 r3408880 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Kit (formerly ConvertKit) for MemberMouse 1.3. 5\n"5 "Project-Id-Version: Kit (formerly ConvertKit) for MemberMouse 1.3.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit-membermouse\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-1 1-20T03:48:43+00:00\n"12 "POT-Creation-Date: 2025-12-03T01:30:46+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" -
convertkit-membermouse/trunk/readme.txt
r3399367 r3408880 4 4 Tags: convertkit, email, marketing, membermouse 5 5 Requires at least: 5.0 6 Tested up to: 6. 86 Tested up to: 6.9 7 7 Requires PHP: 7.1 8 Stable tag: 1.3. 58 Stable tag: 1.3.6 9 9 License: GPLv3 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 40 40 41 41 == Changelog == 42 43 ### 1.3.6 2025-12-03 44 * Fix: Settings: Disconnect: Remove cached Custom Fields and Sequences 45 * Updated: Use WordPress Libraries 2.1.2 42 46 43 47 ### 1.3.5 2025-11-20 -
convertkit-membermouse/trunk/vendor/convertkit/convertkit-wordpress-libraries/src/class-convertkit-resource-v4.php
r3140610 r3408880 117 117 // would never expire. 118 118 if ( ! $this->last_queried ) { 119 $this->refresh(); 120 return; 119 return $this->refresh(); 121 120 } 122 121 123 122 // If the resources have expired, refresh them now. 124 123 if ( time() > ( $this->last_queried + $this->cache_duration ) ) { 125 $this->refresh(); 126 return; 124 return $this->refresh(); 127 125 } 128 126 … … 345 343 * @since 1.0.0 346 344 * 347 * @return bool|WP_Error|array345 * @return WP_Error|array 348 346 */ 349 347 public function refresh() { … … 351 349 // Bail if no API class was defined. 352 350 if ( ! $this->api ) { 353 return false;351 return new WP_Error( 'convertkit_resource_refresh_error', 'Connect the Plugin to your Kit account to refresh resources.' ); 354 352 } 355 353
Note: See TracChangeset
for help on using the changeset viewer.