Plugin Directory

Changeset 3453950


Ignore:
Timestamp:
02/04/2026 04:36:06 PM (8 weeks ago)
Author:
Rustaurius
Message:

v2.7.11 released and tagged

Location:
restaurant-reservations
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • restaurant-reservations/tags/2.7.11/includes/Ajax.class.php

    r3452436 r3453950  
    753753            $max_party_size = (int) $rtb_controller->settings->get_setting( 'party-size', $location_slug, $timeslot );
    754754
     755            // Deals with when "Any Size" is selected as the "Party Size" setting
     756            $max_party_size = ! empty( $max_party_size ) ? $max_party_size : 100;
     757
    755758            $max_people = (int) $rtb_controller->settings->get_setting( 'rtb-max-people-count', $location_slug, $timeslot );
    756759
  • restaurant-reservations/tags/2.7.11/readme.txt

    r3452436 r3453950  
    33Tested Up To: 6.9
    44Tags: reservation, reservations, restaurant reservations, reservation form, restaurant, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
    5 Stable tag: 2.7.10
     5Stable tag: 2.7.11
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    303303== Changelog ==
    304304
     305= 2.7.11 (2026-02-04) =
     306- Added the ability to disable/enable individual tables.
     307- Fix for party size field not populating correctly when max party option was set to any size.
     308
    305309= 2.7.10 (2026-02-02) =
    306310- Added a time limit/window to reminder, late-arrival and post-reservation notifications (3 hours for reminder and post-reservation, 1 hour for late-arrival), to make sure notifications aren't sent when they shouldn't be. If notifications aren't sent within that time frame, then they will be skipped for a particular booking.
    307 - Looking up booking and cancelling a booking now require an assigned unique booking code by default, in addition to the email address.
     311- Looking up and cancelling a booking now require an assigned unique booking code by default, in addition to the email address.
    308312
    309313= 2.7.9 (2026-01-09) =
  • restaurant-reservations/tags/2.7.11/restaurant-reservations.php

    r3452436 r3453950  
    44 * Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
    55 * Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
    6  * Version: 2.7.10
     6 * Version: 2.7.11
    77 * Author: Five Star Plugins
    88 * Author URI: https://www.fivestarplugins.com/
     
    5959
    6060        // Common strings
    61         define( 'RTB_VERSION', '2.7.10' );
     61        define( 'RTB_VERSION', '2.7.11' );
    6262        define( 'RTB_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    6363        define( 'RTB_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
  • restaurant-reservations/trunk/includes/Ajax.class.php

    r3452436 r3453950  
    753753            $max_party_size = (int) $rtb_controller->settings->get_setting( 'party-size', $location_slug, $timeslot );
    754754
     755            // Deals with when "Any Size" is selected as the "Party Size" setting
     756            $max_party_size = ! empty( $max_party_size ) ? $max_party_size : 100;
     757
    755758            $max_people = (int) $rtb_controller->settings->get_setting( 'rtb-max-people-count', $location_slug, $timeslot );
    756759
  • restaurant-reservations/trunk/readme.txt

    r3452436 r3453950  
    33Tested Up To: 6.9
    44Tags: reservation, reservations, restaurant reservations, reservation form, restaurant, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
    5 Stable tag: 2.7.10
     5Stable tag: 2.7.11
    66License: GPLv3
    77License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    303303== Changelog ==
    304304
     305= 2.7.11 (2026-02-04) =
     306- Added the ability to disable/enable individual tables.
     307- Fix for party size field not populating correctly when max party option was set to any size.
     308
    305309= 2.7.10 (2026-02-02) =
    306310- Added a time limit/window to reminder, late-arrival and post-reservation notifications (3 hours for reminder and post-reservation, 1 hour for late-arrival), to make sure notifications aren't sent when they shouldn't be. If notifications aren't sent within that time frame, then they will be skipped for a particular booking.
    307 - Looking up booking and cancelling a booking now require an assigned unique booking code by default, in addition to the email address.
     311- Looking up and cancelling a booking now require an assigned unique booking code by default, in addition to the email address.
    308312
    309313= 2.7.9 (2026-01-09) =
  • restaurant-reservations/trunk/restaurant-reservations.php

    r3452436 r3453950  
    44 * Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
    55 * Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
    6  * Version: 2.7.10
     6 * Version: 2.7.11
    77 * Author: Five Star Plugins
    88 * Author URI: https://www.fivestarplugins.com/
     
    5959
    6060        // Common strings
    61         define( 'RTB_VERSION', '2.7.10' );
     61        define( 'RTB_VERSION', '2.7.11' );
    6262        define( 'RTB_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    6363        define( 'RTB_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
Note: See TracChangeset for help on using the changeset viewer.