Skip to content

Commit

Permalink
v6.1.0
Browse files Browse the repository at this point in the history
* Update "Fix book process datepicker styling" styles to latest version
* Give error when trying to show information of a package that does not exist or may not be presented on a website
* Minor admin CSS update
* Removed script for very old browsers
* Updated "Tested up to" version to 6.5
* Plugin now requires PHP 7.3 or higher
* Plugin now requires WP 6.3 or higher
  • Loading branch information
Ugoku committed Mar 11, 2024
1 parent e29bd86 commit a43f873
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 10 deletions.
9 changes: 5 additions & 4 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Changelog

## Unreleased
## 6.1.0 (2024-03-11)
* Update "Fix book process datepicker styling" styles to latest version
* Give error when trying to show information of a package that does not exist or may not be presented on a website
* Minor admin CSS update
* Removed script for very old browsers
* Updated "Tested up to" version to 6.5
* Plugin now requires PHP 7.3 or higher
* Plugin now requires WP 6.3 or higher
* Removed script for very old browsers
* Minor admin CSS update
* Update "Fix book process datepicker styling" styles to latest version

## 6.0.6 (2024-02-20)
* Fix "Failed to initialize plugin" error in Elementor
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recras-wordpress-plugin",
"version": "6.0.6",
"version": "6.1.0",
"description": "Recras WordPress plugin",
"main": "index.js",
"directories": {
Expand Down
11 changes: 10 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: zanderz
Tags: recras, recreation, reservation, booking, voucher
Tested up to: 6.5
Stable tag: 6.0.6
Stable tag: 6.1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -80,6 +80,15 @@ No. "Must use" plugins don't appear in the update notifications nor show their u

== Changelog ==

= 6.1.0 =
* Update "Fix book process datepicker styling" styles to latest version
* Give error when trying to show information of a package that does not exist or may not be presented on a website
* Minor admin CSS update
* Removed script for very old browsers
* Updated "Tested up to" version to 6.5
* Plugin now requires PHP 7.3 or higher
* Plugin now requires WP 6.3 or higher

= 6.0.6 =
* Fix "Failed to initialize plugin" error in Elementor

Expand Down
2 changes: 1 addition & 1 deletion recras-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Plugin Name: Recras WordPress Plugin
Plugin URI: https://www.recras.nl/
Version: 6.0.6
Version: 6.1.0
Description: Easily integrate your Recras data into your own site
Requires at least: 6.3
Requires PHP: 7.3.0
Expand Down
3 changes: 2 additions & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ public function loadScripts(): void

// Fix BP date picker for sites that set HTML { font-size: 10px }
if (get_option('recras_fix_react_datepicker')) {
wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '6.1.0');
// This version number is the react-datepicker version
wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '6.2.0');
}

// Book process script must be loaded as module
Expand Down

0 comments on commit a43f873

Please sign in to comment.