Plugin Directory

Changeset 3038339


Ignore:
Timestamp:
02/20/2024 08:11:47 AM (2 years ago)
Author:
ZanderZ
Message:

Update to version 6.0.6 from GitHub

Location:
recras
Files:
4 added
8 edited
1 copied

Legend:

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

    r3023928 r3038339  
    11# Changelog
     2
     3## 6.0.6 (2024-02-20)
     4* Fix "Failed to initialize plugin" error in Elementor
    25
    36## 6.0.5 (2024-01-19)
  • recras/tags/6.0.6/readme.txt

    r3023928 r3038339  
    33Tags: recras, recreation, reservation, booking, voucher
    44Tested up to: 6.4
    5 Stable tag: 6.0.5
     5Stable tag: 6.0.6
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181== Changelog ==
    8282
     83= 6.0.6 =
     84* Fix "Failed to initialize plugin" error in Elementor
     85
    8386= 6.0.5 =
    8487* Fixed not being able to add a contact form in classic editor
     
    100103* Updated "Tested up to" version to 6.4
    101104
    102 = 5.5.2 =
    103 * **No functional changes**
     105= 5.5 (highlights) =
     106* Make online booking of packages look better on narrow pages on large screens (i.e. desktop)
     107* Various fixes, mostly related to book processes
    104108* Updated "Tested up to" version to 6.3
    105 * **Deprecation notice**: we plan on removing support for Composer Installers in version 6.0 of the plugin. Please let us know if you use this to install our plugin!
    106 
    107 = 5.5.1 =
    108 * Fix "previous/next month" not being visible in a book process when using Elementor
    109 
    110 = 5.5.0 =
    111 * Make online booking of packages look better on narrow pages on large screens (i.e. desktop)
    112 * Gutenberg contact form widget: properly show allowed packages
    113 * Add option to fix BP date picker styling
    114109* Plugin now requires PHP 7.2 or higher
    115110
     
    120115* Allow initial value in first widget of a book process, when the first widget is "package selection".
    121116* Bugfixes
    122 
    123 = 5.2 (highlights) =
    124 * It is now possible to integrate multiple book processes on one page
    125 * Small bugfixes
    126117
    127118= Older versions =
  • recras/tags/6.0.6/recras-wordpress-plugin.php

    r3023928 r3038339  
    33Plugin Name: Recras WordPress Plugin
    44Plugin URI: https://www.recras.nl/
    5 Version: 6.0.5
     5Version: 6.0.6
    66Description: Easily integrate your Recras data into your own site
    77Requires at least: 6.2
  • recras/tags/6.0.6/src/Plugin.php

    r3022287 r3038339  
    4949        add_action('admin_enqueue_scripts', [$this, 'loadAdminScripts']);
    5050        add_action('wp_enqueue_scripts', [$this, 'loadScripts']);
     51        // Editing a page with Elementor makes WP think it's not in admin mode
     52        add_action('elementor/editor/before_enqueue_scripts', [$this, 'loadAdminScripts']);
    5153
    5254        // Clear caches
  • recras/trunk/changelog.md

    r3023928 r3038339  
    11# Changelog
     2
     3## 6.0.6 (2024-02-20)
     4* Fix "Failed to initialize plugin" error in Elementor
    25
    36## 6.0.5 (2024-01-19)
  • recras/trunk/readme.txt

    r3023928 r3038339  
    33Tags: recras, recreation, reservation, booking, voucher
    44Tested up to: 6.4
    5 Stable tag: 6.0.5
     5Stable tag: 6.0.6
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181== Changelog ==
    8282
     83= 6.0.6 =
     84* Fix "Failed to initialize plugin" error in Elementor
     85
    8386= 6.0.5 =
    8487* Fixed not being able to add a contact form in classic editor
     
    100103* Updated "Tested up to" version to 6.4
    101104
    102 = 5.5.2 =
    103 * **No functional changes**
     105= 5.5 (highlights) =
     106* Make online booking of packages look better on narrow pages on large screens (i.e. desktop)
     107* Various fixes, mostly related to book processes
    104108* Updated "Tested up to" version to 6.3
    105 * **Deprecation notice**: we plan on removing support for Composer Installers in version 6.0 of the plugin. Please let us know if you use this to install our plugin!
    106 
    107 = 5.5.1 =
    108 * Fix "previous/next month" not being visible in a book process when using Elementor
    109 
    110 = 5.5.0 =
    111 * Make online booking of packages look better on narrow pages on large screens (i.e. desktop)
    112 * Gutenberg contact form widget: properly show allowed packages
    113 * Add option to fix BP date picker styling
    114109* Plugin now requires PHP 7.2 or higher
    115110
     
    120115* Allow initial value in first widget of a book process, when the first widget is "package selection".
    121116* Bugfixes
    122 
    123 = 5.2 (highlights) =
    124 * It is now possible to integrate multiple book processes on one page
    125 * Small bugfixes
    126117
    127118= Older versions =
  • recras/trunk/recras-wordpress-plugin.php

    r3023928 r3038339  
    33Plugin Name: Recras WordPress Plugin
    44Plugin URI: https://www.recras.nl/
    5 Version: 6.0.5
     5Version: 6.0.6
    66Description: Easily integrate your Recras data into your own site
    77Requires at least: 6.2
  • recras/trunk/src/Plugin.php

    r3022287 r3038339  
    4949        add_action('admin_enqueue_scripts', [$this, 'loadAdminScripts']);
    5050        add_action('wp_enqueue_scripts', [$this, 'loadScripts']);
     51        // Editing a page with Elementor makes WP think it's not in admin mode
     52        add_action('elementor/editor/before_enqueue_scripts', [$this, 'loadAdminScripts']);
    5153
    5254        // Clear caches
Note: See TracChangeset for help on using the changeset viewer.