Plugin Directory

Changeset 3393481


Ignore:
Timestamp:
11/11/2025 08:41:43 AM (5 months ago)
Author:
ZanderZ
Message:

Update to version 6.4.1 from GitHub

Location:
recras
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • recras/tags/6.4.1/changelog.md

    r3369571 r3393481  
    11# Changelog
     2
     3## 6.4.1 (2025-11-11)
     4* Don't load old script when it's not needed
     5* Updated "Tested up to" version to 6.9
     6* Update "Fix book process datepicker styling" styles to latest version
    27
    38## 6.4.0 (2025-09-29)
  • recras/tags/6.4.1/readme.txt

    r3369571 r3393481  
    22Contributors: zanderz
    33Tags: recras, recreation, reservation, booking, voucher
    4 Tested up to: 6.8
    5 Stable tag: 6.4.0
     4Tested up to: 6.9
     5Stable tag: 6.4.1
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 6.4.1 =
     78* Don't load old script when it's not needed
     79* Updated "Tested up to" version to 6.9
     80* Update "Fix book process datepicker styling" styles to latest version
     81
    7782= 6.4.0 =
    7883* Instead of entering your Recras subdomain in the settings, you must now enter the full URL. This is done since Recras members from now on get a subdomain at recras.com instead of recras.nl.
     
    115120* Plugin now requires WP 6.5 or higher
    116121
    117 = 6.2.3 =
    118 * Fix error in Elementor when book process cannot be found
    119 
    120 = 6.2.2 =
    121 * Update "Fix book process datepicker styling" styles to latest version
     122= 6.2 (highlights) =
     123* Added a book process widget for Elementor
     124* Plugin now requires PHP 7.4 or higher
    122125* Updated "Tested up to" version to 6.7
    123 * If package in a contact form is required, don't add an empty option
    124 
    125 = 6.2.1 =
    126 * Fix warning with Elementor book process widget
    127 * Update Dutch translation
    128 
    129 = 6.2.0 =
    130 * Added a book process widget for Elementor
    131 * Improve error message when "id" is set, but empty
    132 * Plugin now requires PHP 7.4 or higher
     126* Various small fixes and improvements
    133127
    134128= 6.1 (highlights) =
  • recras/tags/6.4.1/recras-wordpress-plugin.php

    r3369571 r3393481  
    33Plugin Name: Recras WordPress Plugin
    44Plugin URI: https://www.recras.nl/
    5 Version: 6.4.0
     5Version: 6.4.1
    66Description: Easily integrate your Recras data into your own site
    77Requires at least: 6.7
  • recras/tags/6.4.1/src/Plugin.php

    r3369571 r3393481  
    1717        $this->setBaseUrl();
    1818
    19         // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts
     19        // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts, self::loadScripts
    2020        $this->checkOldSettings();
    2121
     
    295295        if (get_option('recras_fix_react_datepicker')) {
    296296            // This version number is the react-datepicker version
    297             wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '8.4.0');
    298         }
    299 
    300         wp_enqueue_script('recrasjslibrary', $this->baseUrl . '/js/onlinebooking.min.js', [], $this::LIBRARY_VERSION, ['strategy' => 'defer']);
     297            wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '8.9.0');
     298        }
     299
     300        if (Settings::allowOnlinePackageBooking() || Settings::allowOldVoucherSales()) {
     301            wp_enqueue_script('recrasjslibrary', $this->baseUrl . '/js/onlinebooking.min.js', [], $this::LIBRARY_VERSION, ['strategy' => 'defer']);
     302        }
    301303
    302304        // Book process
  • recras/trunk/changelog.md

    r3369571 r3393481  
    11# Changelog
     2
     3## 6.4.1 (2025-11-11)
     4* Don't load old script when it's not needed
     5* Updated "Tested up to" version to 6.9
     6* Update "Fix book process datepicker styling" styles to latest version
    27
    38## 6.4.0 (2025-09-29)
  • recras/trunk/readme.txt

    r3369571 r3393481  
    22Contributors: zanderz
    33Tags: recras, recreation, reservation, booking, voucher
    4 Tested up to: 6.8
    5 Stable tag: 6.4.0
     4Tested up to: 6.9
     5Stable tag: 6.4.1
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 6.4.1 =
     78* Don't load old script when it's not needed
     79* Updated "Tested up to" version to 6.9
     80* Update "Fix book process datepicker styling" styles to latest version
     81
    7782= 6.4.0 =
    7883* Instead of entering your Recras subdomain in the settings, you must now enter the full URL. This is done since Recras members from now on get a subdomain at recras.com instead of recras.nl.
     
    115120* Plugin now requires WP 6.5 or higher
    116121
    117 = 6.2.3 =
    118 * Fix error in Elementor when book process cannot be found
    119 
    120 = 6.2.2 =
    121 * Update "Fix book process datepicker styling" styles to latest version
     122= 6.2 (highlights) =
     123* Added a book process widget for Elementor
     124* Plugin now requires PHP 7.4 or higher
    122125* Updated "Tested up to" version to 6.7
    123 * If package in a contact form is required, don't add an empty option
    124 
    125 = 6.2.1 =
    126 * Fix warning with Elementor book process widget
    127 * Update Dutch translation
    128 
    129 = 6.2.0 =
    130 * Added a book process widget for Elementor
    131 * Improve error message when "id" is set, but empty
    132 * Plugin now requires PHP 7.4 or higher
     126* Various small fixes and improvements
    133127
    134128= 6.1 (highlights) =
  • recras/trunk/recras-wordpress-plugin.php

    r3369571 r3393481  
    33Plugin Name: Recras WordPress Plugin
    44Plugin URI: https://www.recras.nl/
    5 Version: 6.4.0
     5Version: 6.4.1
    66Description: Easily integrate your Recras data into your own site
    77Requires at least: 6.7
  • recras/trunk/src/Plugin.php

    r3369571 r3393481  
    1717        $this->setBaseUrl();
    1818
    19         // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts
     19        // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts, self::loadScripts
    2020        $this->checkOldSettings();
    2121
     
    295295        if (get_option('recras_fix_react_datepicker')) {
    296296            // This version number is the react-datepicker version
    297             wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '8.4.0');
    298         }
    299 
    300         wp_enqueue_script('recrasjslibrary', $this->baseUrl . '/js/onlinebooking.min.js', [], $this::LIBRARY_VERSION, ['strategy' => 'defer']);
     297            wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '8.9.0');
     298        }
     299
     300        if (Settings::allowOnlinePackageBooking() || Settings::allowOldVoucherSales()) {
     301            wp_enqueue_script('recrasjslibrary', $this->baseUrl . '/js/onlinebooking.min.js', [], $this::LIBRARY_VERSION, ['strategy' => 'defer']);
     302        }
    301303
    302304        // Book process
Note: See TracChangeset for help on using the changeset viewer.