Changeset 2713967
- Timestamp:
- 04/24/2022 01:48:37 PM (4 years ago)
- Location:
- etsy-shop
- Files:
-
- 2 edited
- 4 copied
-
tags/3.0.1 (copied) (copied from etsy-shop/trunk)
-
tags/3.0.1/etsy-shop.php (copied) (copied from etsy-shop/trunk/etsy-shop.php) (3 diffs)
-
tags/3.0.1/js (copied) (copied from etsy-shop/trunk/js)
-
tags/3.0.1/readme.txt (copied) (copied from etsy-shop/trunk/readme.txt) (2 diffs)
-
trunk/etsy-shop.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
etsy-shop/tags/3.0.1/etsy-shop.php
r2713839 r2713967 9 9 Author: Frédéric Sheedy 10 10 Text Domain: etsy-shop 11 Version: 3.0 11 Version: 3.0.1 12 12 */ 13 13 … … 36 36 */ 37 37 38 define( 'ETSY_SHOP_VERSION', '3.0 ' );38 define( 'ETSY_SHOP_VERSION', '3.0.1' ); 39 39 define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' ); 40 40 … … 169 169 $title, 170 170 $result->state, 171 $result->price->amount ,171 $result->price->amount/$result->price->divisor, 172 172 $result->price->currency_code, 173 173 $result->quantity, -
etsy-shop/tags/3.0.1/readme.txt
r2713839 r2713967 5 5 Tested up to: 5.9.3 6 6 Requires at least: 5.0 7 Stable tag: 3.0 7 Stable tag: 3.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 85 85 86 86 == Changelog == 87 88 = 3.0.1 = 89 * Update price calculation to Etsy Open API v3 87 90 88 91 = 3.0 = -
etsy-shop/trunk/etsy-shop.php
r2713839 r2713967 9 9 Author: Frédéric Sheedy 10 10 Text Domain: etsy-shop 11 Version: 3.0 11 Version: 3.0.1 12 12 */ 13 13 … … 36 36 */ 37 37 38 define( 'ETSY_SHOP_VERSION', '3.0 ' );38 define( 'ETSY_SHOP_VERSION', '3.0.1' ); 39 39 define( 'ETSY_SHOP_CACHE_PREFIX', 'etsy_shop_cache_' ); 40 40 … … 169 169 $title, 170 170 $result->state, 171 $result->price->amount ,171 $result->price->amount/$result->price->divisor, 172 172 $result->price->currency_code, 173 173 $result->quantity, -
etsy-shop/trunk/readme.txt
r2713839 r2713967 5 5 Tested up to: 5.9.3 6 6 Requires at least: 5.0 7 Stable tag: 3.0 7 Stable tag: 3.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 85 85 86 86 == Changelog == 87 88 = 3.0.1 = 89 * Update price calculation to Etsy Open API v3 87 90 88 91 = 3.0 =
Note: See TracChangeset
for help on using the changeset viewer.