Changeset 3393481
- Timestamp:
- 11/11/2025 08:41:43 AM (5 months ago)
- Location:
- recras
- Files:
-
- 8 edited
- 1 copied
-
tags/6.4.1 (copied) (copied from recras/trunk)
-
tags/6.4.1/changelog.md (modified) (1 diff)
-
tags/6.4.1/readme.txt (modified) (3 diffs)
-
tags/6.4.1/recras-wordpress-plugin.php (modified) (1 diff)
-
tags/6.4.1/src/Plugin.php (modified) (2 diffs)
-
trunk/changelog.md (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/recras-wordpress-plugin.php (modified) (1 diff)
-
trunk/src/Plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recras/tags/6.4.1/changelog.md
r3369571 r3393481 1 1 # 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 2 7 3 8 ## 6.4.0 (2025-09-29) -
recras/tags/6.4.1/readme.txt
r3369571 r3393481 2 2 Contributors: zanderz 3 3 Tags: recras, recreation, reservation, booking, voucher 4 Tested up to: 6. 85 Stable tag: 6.4. 04 Tested up to: 6.9 5 Stable tag: 6.4.1 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 == Changelog == 76 76 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 77 82 = 6.4.0 = 78 83 * 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. … … 115 120 * Plugin now requires WP 6.5 or higher 116 121 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 122 125 * 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 133 127 134 128 = 6.1 (highlights) = -
recras/tags/6.4.1/recras-wordpress-plugin.php
r3369571 r3393481 3 3 Plugin Name: Recras WordPress Plugin 4 4 Plugin URI: https://www.recras.nl/ 5 Version: 6.4. 05 Version: 6.4.1 6 6 Description: Easily integrate your Recras data into your own site 7 7 Requires at least: 6.7 -
recras/tags/6.4.1/src/Plugin.php
r3369571 r3393481 17 17 $this->setBaseUrl(); 18 18 19 // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts 19 // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts, self::loadScripts 20 20 $this->checkOldSettings(); 21 21 … … 295 295 if (get_option('recras_fix_react_datepicker')) { 296 296 // 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 } 301 303 302 304 // Book process -
recras/trunk/changelog.md
r3369571 r3393481 1 1 # 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 2 7 3 8 ## 6.4.0 (2025-09-29) -
recras/trunk/readme.txt
r3369571 r3393481 2 2 Contributors: zanderz 3 3 Tags: recras, recreation, reservation, booking, voucher 4 Tested up to: 6. 85 Stable tag: 6.4. 04 Tested up to: 6.9 5 Stable tag: 6.4.1 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 75 75 == Changelog == 76 76 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 77 82 = 6.4.0 = 78 83 * 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. … … 115 120 * Plugin now requires WP 6.5 or higher 116 121 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 122 125 * 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 133 127 134 128 = 6.1 (highlights) = -
recras/trunk/recras-wordpress-plugin.php
r3369571 r3393481 3 3 Plugin Name: Recras WordPress Plugin 4 4 Plugin URI: https://www.recras.nl/ 5 Version: 6.4. 05 Version: 6.4.1 6 6 Description: Easily integrate your Recras data into your own site 7 7 Requires at least: 6.7 -
recras/trunk/src/Plugin.php
r3369571 r3393481 17 17 $this->setBaseUrl(); 18 18 19 // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts 19 // Needs to run before: Gutenberg::addBlocks, self::loadAdminScripts, self::loadScripts 20 20 $this->checkOldSettings(); 21 21 … … 295 295 if (get_option('recras_fix_react_datepicker')) { 296 296 // 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 } 301 303 302 304 // Book process
Note: See TracChangeset
for help on using the changeset viewer.