Plugin Directory

Changeset 2783743


Ignore:
Timestamp:
09/13/2022 06:02:19 AM (3 years ago)
Author:
dunskii
Message:

Latest WP version 6.0.2 capability update.

Location:
booking-x/trunk
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • booking-x/trunk/README.txt

    r2757755 r2783743  
    33Tags: appointments, appointment booking, availability calendar, booking calendar, booking system, reservations, reservation calendar
    44Requires at least: 5.0
    5 Tested up to: 6.0.1
     5Tested up to: 6.0.2
    66Requires PHP: 7.0
    7 Stable tag: 1.0.12
     7Stable tag: 1.0.13
    88License: GPLv2 or later
    99License URI: https://booking-x.com/gpl-licence/
     
    148148== Upgrade Notice ==
    149149
    150 = 1.0.12 =
    151 Minor Bug Fixes.
     150= 1.0.13 =
     151Latest WP version 6.0.2 capability update.
    152152
    153153== Updating ==
     
    169169= 1.0.11 - Latest WP version 6.0 capability update.  2022-05-27 =
    170170= 1.0.12 - Minor Bug Fixes.  2022-07-18 =
     171= 1.0.13 - Latest WP version 6.0.2 capability update.  2022-09-13 =
  • booking-x/trunk/admin/class-bookingx-admin.php

    r2757755 r2783743  
    44 *
    55 * @link       https://dunskii.com
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 *
    88 * @package    Bookingx
     
    1414     * The ID of this plugin.
    1515     *
    16      * @since      1.0.12
     16     * @since      1.0.13
    1717     * @access   private
    1818     * @var      string $plugin_name The ID of this plugin.
     
    2323     * The version of this plugin.
    2424     *
    25      * @since      1.0.12
     25     * @since      1.0.13
    2626     * @access   private
    2727     * @var      string $version The current version of this plugin.
     
    3434     * @param string $plugin_name The name of this plugin.
    3535     * @param string $version The version of this plugin.
    36      * @since      1.0.12
     36     * @since      1.0.13
    3737     */
    3838    public function __construct( $plugin_name = null, $version = null ) {
     
    634634     * Register the stylesheets for the admin area.
    635635     *
    636      * @since      1.0.12
     636     * @since      1.0.13
    637637     */
    638638    public function enqueue_styles() {
     
    656656     * Register the JavaScript for the admin area.
    657657     *
    658      * @since      1.0.12
     658     * @since      1.0.13
    659659     */
    660660    public function enqueue_scripts() {
  • booking-x/trunk/admin/settings.php

    r2757755 r2783743  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_biz-view.php

    r2757755 r2783743  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_general-view.php

    r2757755 r2783743  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_licence-view.php

    r2757755 r2783743  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_payment-view.php

    r2757755 r2783743  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 */
    88
  • booking-x/trunk/admin/settings/setting-functions.php

    r2757755 r2783743  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 */
    88
  • booking-x/trunk/admin/settings/settings_save.php

    r2757755 r2783743  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.12
     6 * @since      1.0.13
    77 */
    88
  • booking-x/trunk/bookingx.php

    r2757755 r2783743  
    44 *  Plugin URI: https://booking-x.com/
    55 *  Description: A simple to use booking system that allows you to take appointments and reservations for multiple business types on WordPress.
    6  *  Version: 1.0.12
     6 *  Version: 1.0.13
    77 *  Requires at least: 5.0
    88 *  Requires PHP: 7.0
     
    4040const BKX_PLUGIN_PUBLIC_URL = BKX_PLUGIN_DIR_URL . 'public';
    4141const BKX_PLUGIN_PUBLIC_PATH = BKX_PLUGIN_DIR_PATH . 'public';
    42 const BKX_PLUGIN_VER = '1.0.12';
     42const BKX_PLUGIN_VER = '1.0.13';
    4343const BKX_STORE_URL = 'https://booking-x.com';
    4444const BKX_PACKAGES_BLOCKS = BKX_PLUGIN_DIR_PATH . 'includes/packages/blocks';
  • booking-x/trunk/includes/class-bookingx-activator.php

    r2757755 r2783743  
    55 * This class defines all code necessary to run during the plugin's activation.
    66 *
    7  * @since      1.0.12
     7 * @since      1.0.13
    88 * @package    Bookingx
    99 * @subpackage Bookingx/includes
  • booking-x/trunk/includes/class-bookingx.php

    r2757755 r2783743  
    2222 * version of the plugin.
    2323 *
    24  * @since      1.0.12
     24 * @since      1.0.13
    2525 * @package    Bookingx
    2626 * @subpackage Bookingx/includes
  • booking-x/trunk/templates/single-bkx_addition.php

    r2757755 r2783743  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.12
     7 * @since      1.0.13
    88 */
    99
  • booking-x/trunk/templates/single-bkx_base.php

    r2757755 r2783743  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.12
     7 * @since      1.0.13
    88 */
    99
  • booking-x/trunk/templates/single-bkx_seat.php

    r2757755 r2783743  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.12
     7 * @since      1.0.13
    88 */
    99
  • booking-x/trunk/templates/single.php

    r2757755 r2783743  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.12
     7 * @since      1.0.13
    88 */
    99
Note: See TracChangeset for help on using the changeset viewer.