Changeset 3201143
- Timestamp:
- 12/02/2024 06:56:37 PM (13 months ago)
- Location:
- woocommerce-accommodation-bookings
- Files:
-
- 10 edited
- 1 copied
-
tags/1.3.0 (copied) (copied from woocommerce-accommodation-bookings/trunk)
-
tags/1.3.0/changelog.txt (modified) (1 diff)
-
tags/1.3.0/includes/admin/class-wc-accommodation-booking-rest-and-admin.php (modified) (1 diff)
-
tags/1.3.0/languages/woocommerce-accommodation-bookings.pot (modified) (2 diffs)
-
tags/1.3.0/readme.txt (modified) (2 diffs)
-
tags/1.3.0/woocommerce-accommodation-bookings.php (modified) (3 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/admin/class-wc-accommodation-booking-rest-and-admin.php (modified) (1 diff)
-
trunk/languages/woocommerce-accommodation-bookings.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-accommodation-bookings.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-accommodation-bookings/tags/1.3.0/changelog.txt
r3191561 r3201143 1 1 *** Changelog *** 2 3 = 1.3.0 - 2024-12-02 = 4 * Fix - Ensure sorting by price works as expected. 5 * Dev - Bump WooCommerce "tested up to" version 9.5. 6 * Dev - Bump WooCommerce minimum supported version to 9.3. 2 7 3 8 = 1.2.10 - 2024-11-18 = -
woocommerce-accommodation-bookings/tags/1.3.0/includes/admin/class-wc-accommodation-booking-rest-and-admin.php
r3119753 r3201143 326 326 327 327 // Set price so filters work - using get_base_cost(). 328 $product = wc_get_product( $post_id ); 329 update_post_meta( $post_id, '_price', $product->get_base_cost() ); 328 $product = wc_get_product( $post_id ); 329 $base_cost = $product->get_base_cost(); 330 update_post_meta( $post_id, '_price', $base_cost ); 331 332 // Price has been set to cost * min_duration in meta_lookup table, needs to be updated to maintain consistency. 333 $wpdb->update( 334 $wpdb->prefix . 'wc_product_meta_lookup', 335 array( 336 'min_price' => $base_cost, 337 'max_price' => $base_cost, 338 ), 339 array( 340 'product_id' => $post_id, 341 ), 342 '%d' 343 ); 330 344 } 331 345 } -
woocommerce-accommodation-bookings/tags/1.3.0/languages/woocommerce-accommodation-bookings.pot
r3191561 r3201143 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce Accommodation Bookings 1. 2.10\n"5 "Project-Id-Version: WooCommerce Accommodation Bookings 1.3.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-accommodation-bookings\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: 2024-1 1-18T14:53:20+00:00\n"12 "POT-Creation-Date: 2024-12-02T16:02:01+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.1 0.0\n"14 "X-Generator: WP-CLI 2.11.0\n" 15 15 "X-Domain: woocommerce-accommodation-bookings\n" 16 16 -
woocommerce-accommodation-bookings/tags/1.3.0/readme.txt
r3191561 r3201143 4 4 Requires at least: 6.5 5 5 Tested up to: 6.7 6 Stable tag: 1. 2.106 Stable tag: 1.3.0 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 38 38 39 39 == Changelog == 40 41 = 1.3.0 - 2024-12-02 = 42 * Fix - Ensure sorting by price works as expected. 43 * Dev - Bump WooCommerce "tested up to" version 9.5. 44 * Dev - Bump WooCommerce minimum supported version to 9.3. 40 45 41 46 = 1.2.10 - 2024-11-18 = -
woocommerce-accommodation-bookings/tags/1.3.0/woocommerce-accommodation-bookings.php
r3191561 r3201143 5 5 * Plugin URI: https://woocommerce.com/products/woocommerce-accommodation-bookings/ 6 6 * Description: An accommodations add-on for the WooCommerce Bookings extension. 7 * Version: 1. 2.107 * Version: 1.3.0 8 8 * Author: WooCommerce 9 9 * Author URI: https://woocommerce.com … … 12 12 * Tested up to: 6.7 13 13 * Requires at least: 6.5 14 * WC tested up to: 9. 415 * WC requires at least: 9. 214 * WC tested up to: 9.5 15 * WC requires at least: 9.3 16 16 * PHP tested up to: 8.3 17 17 * Requires PHP: 7.4 … … 28 28 } 29 29 30 define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1. 2.10' ); // WRCS: DEFINED_VERSION.30 define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.3.0' ); // WRCS: DEFINED_VERSION. 31 31 32 32 require_once 'includes/class-wc-accommodation-bookings-plugin.php'; -
woocommerce-accommodation-bookings/trunk/changelog.txt
r3191561 r3201143 1 1 *** Changelog *** 2 3 = 1.3.0 - 2024-12-02 = 4 * Fix - Ensure sorting by price works as expected. 5 * Dev - Bump WooCommerce "tested up to" version 9.5. 6 * Dev - Bump WooCommerce minimum supported version to 9.3. 2 7 3 8 = 1.2.10 - 2024-11-18 = -
woocommerce-accommodation-bookings/trunk/includes/admin/class-wc-accommodation-booking-rest-and-admin.php
r3119753 r3201143 326 326 327 327 // Set price so filters work - using get_base_cost(). 328 $product = wc_get_product( $post_id ); 329 update_post_meta( $post_id, '_price', $product->get_base_cost() ); 328 $product = wc_get_product( $post_id ); 329 $base_cost = $product->get_base_cost(); 330 update_post_meta( $post_id, '_price', $base_cost ); 331 332 // Price has been set to cost * min_duration in meta_lookup table, needs to be updated to maintain consistency. 333 $wpdb->update( 334 $wpdb->prefix . 'wc_product_meta_lookup', 335 array( 336 'min_price' => $base_cost, 337 'max_price' => $base_cost, 338 ), 339 array( 340 'product_id' => $post_id, 341 ), 342 '%d' 343 ); 330 344 } 331 345 } -
woocommerce-accommodation-bookings/trunk/languages/woocommerce-accommodation-bookings.pot
r3191561 r3201143 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce Accommodation Bookings 1. 2.10\n"5 "Project-Id-Version: WooCommerce Accommodation Bookings 1.3.0\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-accommodation-bookings\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: 2024-1 1-18T14:53:20+00:00\n"12 "POT-Creation-Date: 2024-12-02T16:02:01+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 "X-Generator: WP-CLI 2.1 0.0\n"14 "X-Generator: WP-CLI 2.11.0\n" 15 15 "X-Domain: woocommerce-accommodation-bookings\n" 16 16 -
woocommerce-accommodation-bookings/trunk/readme.txt
r3191561 r3201143 4 4 Requires at least: 6.5 5 5 Tested up to: 6.7 6 Stable tag: 1. 2.106 Stable tag: 1.3.0 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 38 38 39 39 == Changelog == 40 41 = 1.3.0 - 2024-12-02 = 42 * Fix - Ensure sorting by price works as expected. 43 * Dev - Bump WooCommerce "tested up to" version 9.5. 44 * Dev - Bump WooCommerce minimum supported version to 9.3. 40 45 41 46 = 1.2.10 - 2024-11-18 = -
woocommerce-accommodation-bookings/trunk/woocommerce-accommodation-bookings.php
r3191561 r3201143 5 5 * Plugin URI: https://woocommerce.com/products/woocommerce-accommodation-bookings/ 6 6 * Description: An accommodations add-on for the WooCommerce Bookings extension. 7 * Version: 1. 2.107 * Version: 1.3.0 8 8 * Author: WooCommerce 9 9 * Author URI: https://woocommerce.com … … 12 12 * Tested up to: 6.7 13 13 * Requires at least: 6.5 14 * WC tested up to: 9. 415 * WC requires at least: 9. 214 * WC tested up to: 9.5 15 * WC requires at least: 9.3 16 16 * PHP tested up to: 8.3 17 17 * Requires PHP: 7.4 … … 28 28 } 29 29 30 define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1. 2.10' ); // WRCS: DEFINED_VERSION.30 define( 'WC_ACCOMMODATION_BOOKINGS_VERSION', '1.3.0' ); // WRCS: DEFINED_VERSION. 31 31 32 32 require_once 'includes/class-wc-accommodation-bookings-plugin.php';
Note: See TracChangeset
for help on using the changeset viewer.