Plugin Directory

Changeset 3495260


Ignore:
Timestamp:
03/31/2026 07:51:56 AM (42 hours ago)
Author:
ZanderZ
Message:

Update to version 6.5.4 from GitHub

Location:
recras
Files:
10 edited
1 copied

Legend:

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

    r3484591 r3495260  
    11# Changelog
     2
     3## 6.5.4 (2026-03-31)
     4* Updated "Tested up to" version to 7.0
     5* Plugin now requires WP 6.8 or higher
     6* Fix warning when using PHP 8.4
    27
    38## 6.5.3 (2026-03-17)
  • recras/tags/6.5.4/readme.txt

    r3484591 r3495260  
    22Contributors: zanderz
    33Tags: recras, recreation, reservation, booking, voucher
    4 Tested up to: 6.9
    5 Stable tag: 6.5.3
     4Tested up to: 7.0
     5Stable tag: 6.5.4
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 6.5.4 =
     78* Updated "Tested up to" version to 7.0
     79* Plugin now requires WP 6.8 or higher
     80* Fix warning when using PHP 8.4
     81
    7782= 6.5.3 =
    7883* Styling fix for Gutenberg info texts
  • recras/tags/6.5.4/recras-wordpress-plugin.php

    r3484591 r3495260  
    33Plugin Name: Recras
    44Plugin URI: https://www.recras.com/
    5 Version: 6.5.3
     5Version: 6.5.4
    66Description: Easily integrate your Recras data into your own site
    7 Requires at least: 6.7
     7Requires at least: 6.8
    88Requires PHP: 7.4.0
    99Author: Recras
  • recras/tags/6.5.4/src/OnlineBooking.php

    r3432851 r3495260  
    103103
    104104
    105     private static function generateBookingForm(string $instance, int $arrangementID = null, array $libraryOptions = []): string
     105    private static function generateBookingForm(string $instance, ?int $arrangementID = null, array $libraryOptions = []): string
    106106    {
    107107        $generatedDivID = uniqid('B');
     
    157157    }
    158158
    159     private static function generateIframe(string $instance, int $arrangementID = null, bool $enableResize = true): string
     159    private static function generateIframe(string $instance, ?int $arrangementID = null, bool $enableResize = true): string
    160160    {
    161161        $url = 'https://' . $instance . '/onlineboeking';
  • recras/tags/6.5.4/src/Settings.php

    r3484591 r3495260  
    321321    }
    322322
    323     private static function registerSetting(string $name, $default, string $type = 'string', callable $sanitizeCallback = null): void
     323    private static function registerSetting(string $name, $default, string $type = 'string', ?callable $sanitizeCallback = null): void
    324324    {
    325325        $options = [
  • recras/trunk/changelog.md

    r3484591 r3495260  
    11# Changelog
     2
     3## 6.5.4 (2026-03-31)
     4* Updated "Tested up to" version to 7.0
     5* Plugin now requires WP 6.8 or higher
     6* Fix warning when using PHP 8.4
    27
    38## 6.5.3 (2026-03-17)
  • recras/trunk/readme.txt

    r3484591 r3495260  
    22Contributors: zanderz
    33Tags: recras, recreation, reservation, booking, voucher
    4 Tested up to: 6.9
    5 Stable tag: 6.5.3
     4Tested up to: 7.0
     5Stable tag: 6.5.4
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 6.5.4 =
     78* Updated "Tested up to" version to 7.0
     79* Plugin now requires WP 6.8 or higher
     80* Fix warning when using PHP 8.4
     81
    7782= 6.5.3 =
    7883* Styling fix for Gutenberg info texts
  • recras/trunk/recras-wordpress-plugin.php

    r3484591 r3495260  
    33Plugin Name: Recras
    44Plugin URI: https://www.recras.com/
    5 Version: 6.5.3
     5Version: 6.5.4
    66Description: Easily integrate your Recras data into your own site
    7 Requires at least: 6.7
     7Requires at least: 6.8
    88Requires PHP: 7.4.0
    99Author: Recras
  • recras/trunk/src/OnlineBooking.php

    r3432851 r3495260  
    103103
    104104
    105     private static function generateBookingForm(string $instance, int $arrangementID = null, array $libraryOptions = []): string
     105    private static function generateBookingForm(string $instance, ?int $arrangementID = null, array $libraryOptions = []): string
    106106    {
    107107        $generatedDivID = uniqid('B');
     
    157157    }
    158158
    159     private static function generateIframe(string $instance, int $arrangementID = null, bool $enableResize = true): string
     159    private static function generateIframe(string $instance, ?int $arrangementID = null, bool $enableResize = true): string
    160160    {
    161161        $url = 'https://' . $instance . '/onlineboeking';
  • recras/trunk/src/Settings.php

    r3484591 r3495260  
    321321    }
    322322
    323     private static function registerSetting(string $name, $default, string $type = 'string', callable $sanitizeCallback = null): void
     323    private static function registerSetting(string $name, $default, string $type = 'string', ?callable $sanitizeCallback = null): void
    324324    {
    325325        $options = [
Note: See TracChangeset for help on using the changeset viewer.