Changeset 2703442
- Timestamp:
- 04/01/2022 04:44:52 PM (4 years ago)
- Location:
- shutterstock
- Files:
-
- 8 edited
- 1 copied
-
tags/1.3.11 (copied) (copied from shutterstock/trunk)
-
tags/1.3.11/README.txt (modified) (2 diffs)
-
tags/1.3.11/includes/class-shutterstock-api.php (modified) (1 diff)
-
tags/1.3.11/includes/class-shutterstock.php (modified) (1 diff)
-
tags/1.3.11/shutterstock.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-shutterstock-api.php (modified) (1 diff)
-
trunk/includes/class-shutterstock.php (modified) (1 diff)
-
trunk/shutterstock.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shutterstock/tags/1.3.11/README.txt
r2671597 r2703442 4 4 Requires at least: 5.5 5 5 Tested up to: 5.9 6 Stable tag: 1.3.1 06 Stable tag: 1.3.11 7 7 Requires PHP: 7.1 8 8 License: MIT … … 112 112 113 113 == Changelog == 114 = 1.3.11 = 115 * Filter only downloadable licenses on the "Downloads" section 116 114 117 = 1.3.10 = 115 118 * Update package dependencies -
shutterstock/tags/1.3.11/includes/class-shutterstock-api.php
r2543701 r2703442 132 132 $page = isset($parameters['page']) ? sanitize_text_field($parameters['page']) : 1; 133 133 $per_page = isset($parameters['per_page']) ? sanitize_text_field($parameters['per_page']) : 20; 134 $list_image_licenses_route = $this->api_url. '/images/licenses?per_page='. $per_page .'&page=' . $page; 135 134 $download_availability = isset($parameters['download_availability']) ? sanitize_text_field($parameters['download_availability']) : 'downloadable'; 135 $list_image_licenses_route = $this->api_url. '/images/licenses?download_availability='. $download_availability .'&per_page='. $per_page .'&page='. $page; 136 136 137 $response = $this->do_api_get_request($list_image_licenses_route); 137 138 -
shutterstock/tags/1.3.11/includes/class-shutterstock.php
r2671597 r2703442 71 71 $this->version = SHUTTERSTOCK_VERSION; 72 72 } else { 73 $this->version = '1.3.1 0';73 $this->version = '1.3.11'; 74 74 } 75 75 $this->shutterstock = 'shutterstock'; -
shutterstock/tags/1.3.11/shutterstock.php
r2671597 r2703442 16 16 * Plugin Name: Shutterstock 17 17 * Description: Access exceptional, royalty-free content straight from WordPress. 18 * Version: 1.3.1 018 * Version: 1.3.11 19 19 * Author: Shutterstock 20 20 * License: MIT … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define( 'SHUTTERSTOCK_VERSION', '1.3.1 0' );36 define( 'SHUTTERSTOCK_VERSION', '1.3.11' ); 37 37 38 38 /** -
shutterstock/trunk/README.txt
r2671597 r2703442 4 4 Requires at least: 5.5 5 5 Tested up to: 5.9 6 Stable tag: 1.3.1 06 Stable tag: 1.3.11 7 7 Requires PHP: 7.1 8 8 License: MIT … … 112 112 113 113 == Changelog == 114 = 1.3.11 = 115 * Filter only downloadable licenses on the "Downloads" section 116 114 117 = 1.3.10 = 115 118 * Update package dependencies -
shutterstock/trunk/includes/class-shutterstock-api.php
r2543701 r2703442 132 132 $page = isset($parameters['page']) ? sanitize_text_field($parameters['page']) : 1; 133 133 $per_page = isset($parameters['per_page']) ? sanitize_text_field($parameters['per_page']) : 20; 134 $list_image_licenses_route = $this->api_url. '/images/licenses?per_page='. $per_page .'&page=' . $page; 135 134 $download_availability = isset($parameters['download_availability']) ? sanitize_text_field($parameters['download_availability']) : 'downloadable'; 135 $list_image_licenses_route = $this->api_url. '/images/licenses?download_availability='. $download_availability .'&per_page='. $per_page .'&page='. $page; 136 136 137 $response = $this->do_api_get_request($list_image_licenses_route); 137 138 -
shutterstock/trunk/includes/class-shutterstock.php
r2671597 r2703442 71 71 $this->version = SHUTTERSTOCK_VERSION; 72 72 } else { 73 $this->version = '1.3.1 0';73 $this->version = '1.3.11'; 74 74 } 75 75 $this->shutterstock = 'shutterstock'; -
shutterstock/trunk/shutterstock.php
r2671597 r2703442 16 16 * Plugin Name: Shutterstock 17 17 * Description: Access exceptional, royalty-free content straight from WordPress. 18 * Version: 1.3.1 018 * Version: 1.3.11 19 19 * Author: Shutterstock 20 20 * License: MIT … … 34 34 * Rename this for your plugin and update it as you release new versions. 35 35 */ 36 define( 'SHUTTERSTOCK_VERSION', '1.3.1 0' );36 define( 'SHUTTERSTOCK_VERSION', '1.3.11' ); 37 37 38 38 /**
Note: See TracChangeset
for help on using the changeset viewer.