ACF to REST API - Version 3.3.2

Version Description

updating donation link

Download this release

Release Info

Developer airesvsg
Plugin Icon 128x128 ACF to REST API
Version 3.3.2
Comparing to
See all releases

Code changes from version 3.3.1 to 3.3.2

class-acf-to-rest-api.php CHANGED
@@ -4,7 +4,7 @@
4
  * Description: Exposes Advanced Custom Fields Endpoints in the WordPress REST API
5
  * Author: Aires Gonçalves
6
  * Author URI: http://github.com/airesvsg
7
- * Version: 3.3.1
8
  * Plugin URI: http://github.com/airesvsg/acf-to-rest-api
9
  */
10
 
@@ -16,7 +16,7 @@ if ( ! class_exists( 'ACF_To_REST_API' ) ) {
16
 
17
  class ACF_To_REST_API {
18
 
19
- const VERSION = '3.3.1';
20
 
21
  private static $old_request_version = 2;
22
  private static $default_request_version = 3;
4
  * Description: Exposes Advanced Custom Fields Endpoints in the WordPress REST API
5
  * Author: Aires Gonçalves
6
  * Author URI: http://github.com/airesvsg
7
+ * Version: 3.3.2
8
  * Plugin URI: http://github.com/airesvsg/acf-to-rest-api
9
  */
10
 
16
 
17
  class ACF_To_REST_API {
18
 
19
+ const VERSION = '3.3.2';
20
 
21
  private static $old_request_version = 2;
22
  private static $default_request_version = 3;
composer.json CHANGED
@@ -2,7 +2,7 @@
2
  "name": "airesvsg/acf-to-rest-api",
3
  "description": "Exposes Advanced Custom Fields Endpoints in the WordPress REST API",
4
  "type": "wordpress-plugin",
5
- "version": "3.3.1",
6
  "keywords": ["wordpress", "wp", "rest-api", "acf", "wp-api", "json", "wordpres-plugin", "fields"],
7
  "homepage": "https://github.com/airesvsg/acf-to-rest-api",
8
  "license": "GPL-2.0-only",
2
  "name": "airesvsg/acf-to-rest-api",
3
  "description": "Exposes Advanced Custom Fields Endpoints in the WordPress REST API",
4
  "type": "wordpress-plugin",
5
+ "version": "3.3.2",
6
  "keywords": ["wordpress", "wp", "rest-api", "acf", "wp-api", "json", "wordpres-plugin", "fields"],
7
  "homepage": "https://github.com/airesvsg/acf-to-rest-api",
8
  "license": "GPL-2.0-only",
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === ACF to REST API ===
2
  Contributors: airesvsg
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=E5M7HDWNPFVF4&lc=BR&item_name=Aires%20Goncalves&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest
4
  Tags: acf, api, rest, wp-api, wp-rest-api, json, wp, wordpress, wp-rest-api, wordpress-rest-api
5
  Requires at least: 4.6
6
- Tested up to: 5.4.2
7
- Stable tag: 3.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -21,6 +21,9 @@ Exposes [Advanced Custom Fields](https://wordpress.org/plugins/advanced-custom-f
21
 
22
  == Changelog ==
23
 
 
 
 
24
  = 3.3.1 =
25
  fix endpoint with field name - exemple: /wp-json/acf/v3/posts/{id}/{field-name}
26
 
1
  === ACF to REST API ===
2
  Contributors: airesvsg
3
+ Donate link: https://www.paypal.com/donate?hosted_button_id=P4DVDKW4ZV7GE&source=url
4
  Tags: acf, api, rest, wp-api, wp-rest-api, json, wp, wordpress, wp-rest-api, wordpress-rest-api
5
  Requires at least: 4.6
6
+ Tested up to: 5.9
7
+ Stable tag: 3.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
21
 
22
  == Changelog ==
23
 
24
+ = 3.3.2 =
25
+ updating donation link
26
+
27
  = 3.3.1 =
28
  fix endpoint with field name - exemple: /wp-json/acf/v3/posts/{id}/{field-name}
29
 
shared/includes/admin/classes/class-acf-to-rest-api-donation.php CHANGED
@@ -8,7 +8,7 @@ if ( ! class_exists( 'ACF_To_REST_API_Donation' ) ) {
8
 
9
  class ACF_To_REST_API_Donation {
10
 
11
- const DONATION_URL = 'https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=E5M7HDWNPFVF4&lc=BR&item_name=Aires%20Goncalves&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest';
12
 
13
  private static $version_meta = 'acf_to_rest_api_donation_version';
14
 
8
 
9
  class ACF_To_REST_API_Donation {
10
 
11
+ const DONATION_URL = 'https://www.paypal.com/donate?hosted_button_id=P4DVDKW4ZV7GE&source=url';
12
 
13
  private static $version_meta = 'acf_to_rest_api_donation_version';
14