Plugin Directory

Changeset 3314420


Ignore:
Timestamp:
06/19/2025 09:28:57 AM (10 months ago)
Author:
ZanderZ
Message:

Update to version 6.3.8 from GitHub

Location:
recras
Files:
12 edited
1 copied

Legend:

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

    r3313041 r3314420  
    11# Changelog
     2
     3## 6.3.8 (2025-06-19)
     4* Update "Fix book process datepicker styling" styles to latest version
     5* Small technical update
    26
    37## 6.3.7 (2025-06-17)
  • recras/tags/6.3.8/css/fixreactdatepicker.css

    r3250273 r3314420  
    11@charset "UTF-8";
     2
    23.bookprocess .react-datepicker {
    34    font-size: 0.8em;
     
    1819    font-size: 0.944em;
    1920}
     21
    2022.bookprocess .react-datepicker__year {
    2123    margin: 0.4em;
    2224}
     25
    2326.bookprocess .react-datepicker__year .react-datepicker__year-text {
    2427    width: 4em;
    2528}
     29
    2630.bookprocess .react-datepicker__month {
    2731    margin: 0.4em;
     
    3034    width: 4em;
    3135}
     36
    3237.bookprocess .react-datepicker__time-container--with-today-button {
    3338    border-radius: 0.3em;
     
    7277    .react-datepicker__month-text--highlighted,
    7378    .react-datepicker__quarter-text--highlighted,
    74     .react-datepicker__year-text--highlighted) {
     79    .react-datepicker__year-text--highlighted
     80) {
    7581    border-radius: 0.3em;
    7682}
     
    7985    .react-datepicker__month-text--holidays,
    8086    .react-datepicker__quarter-text--holidays,
    81     .react-datepicker__year-text--holidays) {
     87    .react-datepicker__year-text--holidays
     88) {
    8289    border-radius: 0.3em;
    8390}
     
    9299    .react-datepicker__year-text--selected,
    93100    .react-datepicker__year-text--in-selecting-range,
    94     .react-datepicker__year-text--in-range) {
     101    .react-datepicker__year-text--in-range
     102) {
    95103    border-radius: 0.3em;
    96104}
     
    99107    .react-datepicker__month-text--keyboard-selected,
    100108    .react-datepicker__quarter-text--keyboard-selected,
    101     .react-datepicker__year-text--keyboard-selected) {
     109    .react-datepicker__year-text--keyboard-selected
     110) {
    102111    border-radius: 0.3em;
    103112}
     
    109118    .react-datepicker__year-read-view,
    110119    .react-datepicker__month-read-view,
    111     .react-datepicker__month-year-read-view) {
     120    .react-datepicker__month-year-read-view
     121) {
    112122    border-radius: 0.3em;
    113123}
     
    115125    .react-datepicker__year-dropdown,
    116126    .react-datepicker__month-dropdown,
    117     .react-datepicker__month-year-dropdown) {
     127    .react-datepicker__month-year-dropdown
     128) {
    118129    border-radius: 0.3em;
    119130}
     
    121132    .react-datepicker__year-option:first-of-type,
    122133    .react-datepicker__month-option:first-of-type,
    123     .react-datepicker__month-year-option:first-of-type) {
     134    .react-datepicker__month-year-option:first-of-type
     135) {
    124136    border-top-left-radius: 0.3em;
    125137    border-top-right-radius: 0.3em;
     
    128140    .react-datepicker__year-option:last-of-type,
    129141    .react-datepicker__month-option:last-of-type,
    130     .react-datepicker__month-year-option:last-of-type) {
     142    .react-datepicker__month-year-option:last-of-type
     143) {
    131144    border-bottom-left-radius: 0.3em;
    132145    border-bottom-right-radius: 0.3em;
  • recras/tags/6.3.8/readme.txt

    r3313041 r3314420  
    33Tags: recras, recreation, reservation, booking, voucher
    44Tested up to: 6.8
    5 Stable tag: 6.3.7
     5Stable tag: 6.3.8
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7474
    7575== Changelog ==
     76
     77= 6.3.8 =
     78* Update "Fix book process datepicker styling" styles to latest version
     79* Small technical update
    7680
    7781= 6.3.7 =
  • recras/tags/6.3.8/recras-wordpress-plugin.php

    r3313041 r3314420  
    33Plugin Name: Recras WordPress Plugin
    44Plugin URI: https://www.recras.nl/
    5 Version: 6.3.7
     5Version: 6.3.8
    66Description: Easily integrate your Recras data into your own site
    77Requires at least: 6.6
  • recras/tags/6.3.8/src/Bookprocess.php

    r3313041 r3314420  
    1919        wp_enqueue_script_module(
    2020            'recrasbookprocesses',
    21             'https://' . $subdomain . '.recras.nl/bookprocess/bookprocess.mjs',
     21            'https://' . $subdomain . '.recras.nl/bookprocess/dist/index.js',
    2222            [],
    2323            date('Ymd') // Hint at caching for 1 day
  • recras/tags/6.3.8/src/Plugin.php

    r3310464 r3314420  
    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', [], '7.4.0');
     297            wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '8.4.0');
    298298        }
    299299
  • recras/trunk/changelog.md

    r3313041 r3314420  
    11# Changelog
     2
     3## 6.3.8 (2025-06-19)
     4* Update "Fix book process datepicker styling" styles to latest version
     5* Small technical update
    26
    37## 6.3.7 (2025-06-17)
  • recras/trunk/css/fixreactdatepicker.css

    r3250273 r3314420  
    11@charset "UTF-8";
     2
    23.bookprocess .react-datepicker {
    34    font-size: 0.8em;
     
    1819    font-size: 0.944em;
    1920}
     21
    2022.bookprocess .react-datepicker__year {
    2123    margin: 0.4em;
    2224}
     25
    2326.bookprocess .react-datepicker__year .react-datepicker__year-text {
    2427    width: 4em;
    2528}
     29
    2630.bookprocess .react-datepicker__month {
    2731    margin: 0.4em;
     
    3034    width: 4em;
    3135}
     36
    3237.bookprocess .react-datepicker__time-container--with-today-button {
    3338    border-radius: 0.3em;
     
    7277    .react-datepicker__month-text--highlighted,
    7378    .react-datepicker__quarter-text--highlighted,
    74     .react-datepicker__year-text--highlighted) {
     79    .react-datepicker__year-text--highlighted
     80) {
    7581    border-radius: 0.3em;
    7682}
     
    7985    .react-datepicker__month-text--holidays,
    8086    .react-datepicker__quarter-text--holidays,
    81     .react-datepicker__year-text--holidays) {
     87    .react-datepicker__year-text--holidays
     88) {
    8289    border-radius: 0.3em;
    8390}
     
    9299    .react-datepicker__year-text--selected,
    93100    .react-datepicker__year-text--in-selecting-range,
    94     .react-datepicker__year-text--in-range) {
     101    .react-datepicker__year-text--in-range
     102) {
    95103    border-radius: 0.3em;
    96104}
     
    99107    .react-datepicker__month-text--keyboard-selected,
    100108    .react-datepicker__quarter-text--keyboard-selected,
    101     .react-datepicker__year-text--keyboard-selected) {
     109    .react-datepicker__year-text--keyboard-selected
     110) {
    102111    border-radius: 0.3em;
    103112}
     
    109118    .react-datepicker__year-read-view,
    110119    .react-datepicker__month-read-view,
    111     .react-datepicker__month-year-read-view) {
     120    .react-datepicker__month-year-read-view
     121) {
    112122    border-radius: 0.3em;
    113123}
     
    115125    .react-datepicker__year-dropdown,
    116126    .react-datepicker__month-dropdown,
    117     .react-datepicker__month-year-dropdown) {
     127    .react-datepicker__month-year-dropdown
     128) {
    118129    border-radius: 0.3em;
    119130}
     
    121132    .react-datepicker__year-option:first-of-type,
    122133    .react-datepicker__month-option:first-of-type,
    123     .react-datepicker__month-year-option:first-of-type) {
     134    .react-datepicker__month-year-option:first-of-type
     135) {
    124136    border-top-left-radius: 0.3em;
    125137    border-top-right-radius: 0.3em;
     
    128140    .react-datepicker__year-option:last-of-type,
    129141    .react-datepicker__month-option:last-of-type,
    130     .react-datepicker__month-year-option:last-of-type) {
     142    .react-datepicker__month-year-option:last-of-type
     143) {
    131144    border-bottom-left-radius: 0.3em;
    132145    border-bottom-right-radius: 0.3em;
  • recras/trunk/readme.txt

    r3313041 r3314420  
    33Tags: recras, recreation, reservation, booking, voucher
    44Tested up to: 6.8
    5 Stable tag: 6.3.7
     5Stable tag: 6.3.8
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7474
    7575== Changelog ==
     76
     77= 6.3.8 =
     78* Update "Fix book process datepicker styling" styles to latest version
     79* Small technical update
    7680
    7781= 6.3.7 =
  • recras/trunk/recras-wordpress-plugin.php

    r3313041 r3314420  
    33Plugin Name: Recras WordPress Plugin
    44Plugin URI: https://www.recras.nl/
    5 Version: 6.3.7
     5Version: 6.3.8
    66Description: Easily integrate your Recras data into your own site
    77Requires at least: 6.6
  • recras/trunk/src/Bookprocess.php

    r3313041 r3314420  
    1919        wp_enqueue_script_module(
    2020            'recrasbookprocesses',
    21             'https://' . $subdomain . '.recras.nl/bookprocess/bookprocess.mjs',
     21            'https://' . $subdomain . '.recras.nl/bookprocess/dist/index.js',
    2222            [],
    2323            date('Ymd') // Hint at caching for 1 day
  • recras/trunk/src/Plugin.php

    r3310464 r3314420  
    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', [], '7.4.0');
     297            wp_enqueue_style('fixreactdatepicker', $this->baseUrl . '/css/fixreactdatepicker.css', [], '8.4.0');
    298298        }
    299299
Note: See TracChangeset for help on using the changeset viewer.