Changeset 3213095
- Timestamp:
- 12/26/2024 04:23:45 AM (15 months ago)
- Location:
- patreon-connect/trunk
- Files:
-
- 3 edited
-
classes/patreon_api.php (modified) (2 diffs)
-
patreon.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
patreon-connect/trunk/classes/patreon_api.php
r2369625 r3213095 49 49 } 50 50 else { 51 52 53 54 Patreon_Wordpress::log_connection_error( 'Either your site has an old connection version or it lost its connection info. Please reconnect your site at WP admin -> Patreon Settings -> (re)Connect' ); 51 55 52 56 class Patreon_API { … … 142 146 } 143 147 144 public function __get_json( $suffix, $v2 = false ) { 148 public function __get_json( $suffix, $v2 = false ) { 149 150 // v1 is deprecated. Return false 151 $result = array( 'error' => 'Either your site has an old connection version or it lost its connection info. Please reconnect your site at WP admin -> Patreon Settings -> (re)Connect' ); 152 153 return $result; 145 154 146 155 $api_endpoint = "https://api.patreon.com/oauth2/api/" . $suffix; -
patreon-connect/trunk/patreon.php
r3203883 r3213095 5 5 Plugin URI: https://www.patreon.com/apps/wordpress 6 6 Description: Patron-only content, directly on your website. 7 Version: 1.9. 37 Version: 1.9.4 8 8 Author: Patreon <platform@patreon.com> 9 9 Author URI: https://patreon.com … … 69 69 define( "PATREON_NO_LOCKING_LEVEL_SET_FOR_THIS_POST", 'Post is already public. If you would like to lock this post, please set a pledge level for it' ); 70 70 define( "PATREON_NO_POST_ID_TO_UNLOCK_POST", 'Sorry - could not get the post id for this locked post' ); 71 define( "PATREON_WORDPRESS_VERSION", '1.9. 3' );71 define( "PATREON_WORDPRESS_VERSION", '1.9.4' ); 72 72 define( "PATREON_WORDPRESS_BETA_STRING", '' ); 73 73 define( "PATREON_WORDPRESS_PLUGIN_SLUG", plugin_basename( __FILE__ ) ); -
patreon-connect/trunk/readme.txt
r3203877 r3213095 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.7.1 7 Stable tag: 1.9. 37 Stable tag: 1.9.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 79 79 80 80 == Upgrade Notice == 81 82 = 1.9.4 = 83 84 * Removed API v1 class and added connection log warning so that the site admins can reconnect their site to move to v2. 81 85 82 86 = 1.9.3 = … … 521 525 522 526 == Changelog == 527 528 = 1.9.4 = 529 530 * Removed API v1 class and added connection log warning so that the site admins can reconnect their site to move to v2. 523 531 524 532 = 1.9.3 =
Note: See TracChangeset
for help on using the changeset viewer.