Plugin Directory

Changeset 3442311


Ignore:
Timestamp:
01/19/2026 08:43:53 AM (2 months ago)
Author:
Tarosky
Message:

Update to version 1.2.3 from GitHub

Location:
for-your-eyes-only
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • for-your-eyes-only/tags/1.2.3/app/Hametuha/ForYourEyesOnly/Parser.php

    r3427333 r3442311  
    5151                $blocks[] = [];
    5252            } else {
    53                 $blocks[] = $dom->saveXML( $div );
     53                $blocks[] = $html5->saveHTML( $div );
    5454            }
    5555        }
     
    7676            'capability' => '',
    7777        ], $attributes, 'fyeo' );
     78
     79        // If capability is empty string, apply default (shortcode_atts doesn't replace empty strings).
     80        if ( '' === $attributes['capability'] ) {
     81            $attributes['capability'] = $this->capability->default_capability();
     82        }
    7883        // Apply default tag_line if empty.
    7984        if ( empty( $attributes['tag_line'] ) ) {
  • for-your-eyes-only/tags/1.2.3/for-your-eyes-only.php

    r3427333 r3442311  
    66Author: Tarosky INC.
    77Author URI: https://tarosky.co.jp
    8 Version: 1.2.2
     8Version: 1.2.3
    99Requires at least: 6.6
    1010Requires PHP: 7.4
  • for-your-eyes-only/tags/1.2.3/readme.txt

    r3427333 r3442311  
    44Tags: membership, login, restrict 
    55Tested up to: 6.9 
    6 Stable tag: 1.2.2
     6Stable tag: 1.2.3
    77License: GPLv3 or later 
    88License URI: http://www.gnu.org/licenses/gpl-3.0.txt
  • for-your-eyes-only/tags/1.2.3/vendor/composer/installed.php

    r3427333 r3442311  
    22    'root' => array(
    33        'name' => 'tarosky/for-your-eyes-only',
    4         'pretty_version' => '1.2.2',
    5         'version' => '1.2.2.0',
    6         'reference' => '223060021f308c4f3b627515a9a6e6eef72d7103',
     4        'pretty_version' => '1.2.3',
     5        'version' => '1.2.3.0',
     6        'reference' => '2fc84d62e8d8ffad27505d6d674365cee3da9152',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'tarosky/for-your-eyes-only' => array(
    23             'pretty_version' => '1.2.2',
    24             'version' => '1.2.2.0',
    25             'reference' => '223060021f308c4f3b627515a9a6e6eef72d7103',
     23            'pretty_version' => '1.2.3',
     24            'version' => '1.2.3.0',
     25            'reference' => '2fc84d62e8d8ffad27505d6d674365cee3da9152',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
  • for-your-eyes-only/trunk/app/Hametuha/ForYourEyesOnly/Parser.php

    r3427333 r3442311  
    5151                $blocks[] = [];
    5252            } else {
    53                 $blocks[] = $dom->saveXML( $div );
     53                $blocks[] = $html5->saveHTML( $div );
    5454            }
    5555        }
     
    7676            'capability' => '',
    7777        ], $attributes, 'fyeo' );
     78
     79        // If capability is empty string, apply default (shortcode_atts doesn't replace empty strings).
     80        if ( '' === $attributes['capability'] ) {
     81            $attributes['capability'] = $this->capability->default_capability();
     82        }
    7883        // Apply default tag_line if empty.
    7984        if ( empty( $attributes['tag_line'] ) ) {
  • for-your-eyes-only/trunk/for-your-eyes-only.php

    r3427333 r3442311  
    66Author: Tarosky INC.
    77Author URI: https://tarosky.co.jp
    8 Version: 1.2.2
     8Version: 1.2.3
    99Requires at least: 6.6
    1010Requires PHP: 7.4
  • for-your-eyes-only/trunk/readme.txt

    r3427333 r3442311  
    44Tags: membership, login, restrict 
    55Tested up to: 6.9 
    6 Stable tag: 1.2.2
     6Stable tag: 1.2.3
    77License: GPLv3 or later 
    88License URI: http://www.gnu.org/licenses/gpl-3.0.txt
  • for-your-eyes-only/trunk/vendor/composer/installed.php

    r3427333 r3442311  
    22    'root' => array(
    33        'name' => 'tarosky/for-your-eyes-only',
    4         'pretty_version' => '1.2.2',
    5         'version' => '1.2.2.0',
    6         'reference' => '223060021f308c4f3b627515a9a6e6eef72d7103',
     4        'pretty_version' => '1.2.3',
     5        'version' => '1.2.3.0',
     6        'reference' => '2fc84d62e8d8ffad27505d6d674365cee3da9152',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'tarosky/for-your-eyes-only' => array(
    23             'pretty_version' => '1.2.2',
    24             'version' => '1.2.2.0',
    25             'reference' => '223060021f308c4f3b627515a9a6e6eef72d7103',
     23            'pretty_version' => '1.2.3',
     24            'version' => '1.2.3.0',
     25            'reference' => '2fc84d62e8d8ffad27505d6d674365cee3da9152',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.