Plugin Directory

Changeset 2787957


Ignore:
Timestamp:
09/21/2022 05:05:03 AM (3 years ago)
Author:
dunskii
Message:

Changed Uganda currency symbol to UGX - user request.

Location:
booking-x/trunk
Files:
17 edited

Legend:

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

    r2784542 r2787957  
    55Tested up to: 6.0.2
    66Requires PHP: 7.0
    7 Stable tag: 1.0.14
     7Stable tag: 1.0.15
    88License: GPLv2 or later
    99License URI: https://booking-x.com/gpl-licence/
     
    148148== Upgrade Notice ==
    149149
    150 = 1.0.14 =
    151 Fixed currency display issue - bug request by Roy.
     150= 1.0.15 =
     151Changed Uganda currency symbol to UGX - user request.
    152152
    153153== Updating ==
     
    171171= 1.0.13 - Latest WP version 6.0.2 capability update.  2022-09-13 =
    172172= 1.0.14 - Fixed currency display issue - bug request by Roy.  2022-09-14 =
     173= 1.0.15 - Changed Uganda currency symbol to UGX - user request.  2022-09-21 =
  • booking-x/trunk/admin/class-bookingx-admin.php

    r2784542 r2787957  
    44 *
    55 * @link       https://dunskii.com
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 *
    88 * @package    Bookingx
     
    1414     * The ID of this plugin.
    1515     *
    16      * @since      1.0.14
     16     * @since      1.0.15
    1717     * @access   private
    1818     * @var      string $plugin_name The ID of this plugin.
     
    2323     * The version of this plugin.
    2424     *
    25      * @since      1.0.14
     25     * @since      1.0.15
    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.14
     36     * @since      1.0.15
    3737     */
    3838    public function __construct( $plugin_name = null, $version = null ) {
     
    634634     * Register the stylesheets for the admin area.
    635635     *
    636      * @since      1.0.14
     636     * @since      1.0.15
    637637     */
    638638    public function enqueue_styles() {
     
    656656     * Register the JavaScript for the admin area.
    657657     *
    658      * @since      1.0.14
     658     * @since      1.0.15
    659659     */
    660660    public function enqueue_scripts() {
  • booking-x/trunk/admin/settings.php

    r2784542 r2787957  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_biz-view.php

    r2784542 r2787957  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_general-view.php

    r2784542 r2787957  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_licence-view.php

    r2784542 r2787957  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 */
    88
  • booking-x/trunk/admin/settings/bkx_payment-view.php

    r2784542 r2787957  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 */
    88
  • booking-x/trunk/admin/settings/setting-functions.php

    r2784542 r2787957  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 */
    88
  • booking-x/trunk/admin/settings/settings_save.php

    r2784542 r2787957  
    44 *
    55 * @package Bookingx/admin
    6  * @since      1.0.14
     6 * @since      1.0.15
    77 */
    88
  • booking-x/trunk/bookingx.php

    r2784542 r2787957  
    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.14
     6 *  Version: 1.0.15
    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.14';
     42const BKX_PLUGIN_VER = '1.0.15';
    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

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

    r2784542 r2787957  
    2222 * version of the plugin.
    2323 *
    24  * @since      1.0.14
     24 * @since      1.0.15
    2525 * @package    Bookingx
    2626 * @subpackage Bookingx/includes
  • booking-x/trunk/includes/core/functions/bkx-core-functions.php

    r2784542 r2787957  
    963963            'TZS' => 'Sh',
    964964            'UAH' => '₴',
    965             'UGX' => '$',
     965            'UGX' => 'UGX',
    966966            'USD' => '$',
    967967            'UYU' => '$',
  • booking-x/trunk/templates/single-bkx_addition.php

    r2784542 r2787957  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.14
     7 * @since      1.0.15
    88 */
    99
  • booking-x/trunk/templates/single-bkx_base.php

    r2784542 r2787957  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.14
     7 * @since      1.0.15
    88 */
    99
  • booking-x/trunk/templates/single-bkx_seat.php

    r2784542 r2787957  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.14
     7 * @since      1.0.15
    88 */
    99
  • booking-x/trunk/templates/single.php

    r2784542 r2787957  
    55 * @package    Bookingx
    66 * @subpackage bookingx
    7  * @since      1.0.14
     7 * @since      1.0.15
    88 */
    99
Note: See TracChangeset for help on using the changeset viewer.