Plugin Directory

Changeset 3311795


Ignore:
Timestamp:
06/15/2025 07:20:04 AM (10 months ago)
Author:
glewe
Message:

Tagging version 3.9.7

Location:
chordpress
Files:
3 edited
23 copied

Legend:

Unmodified
Added
Removed
  • chordpress/tags/3.9.7/chordpress.php

    r3309324 r3311795  
    1919 * Plugin URI:        https://lewe.gitbook.io/lewe-chordpress/
    2020 * Description:       This plugin renders ChordPro formatted text and chord diagrams in WordPress sites.
    21  * Version:           3.9.6
     21 * Version:           3.9.7
    2222 * Author:            George Lewe
    2323 * Author URI:        https://www.lewe.com
     
    3838 */
    3939define('CHORDPRESS_NAME', 'ChordPress');
    40 define('CHORDPRESS_VERSION', '3.9.6');
     40define('CHORDPRESS_VERSION', '3.9.7');
    4141define('CHORDPRESS_AUTHOR', 'George Lewe');
    4242define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/tags/3.9.7/includes/class-chordpress-renderer.php

    r3309316 r3311795  
    10281028       * No chords on this line
    10291029       */
    1030       if (isset($line[0]) && ($line[0] == '#' || $line == '<br />')) {
     1030      if (isset($line[0]) && ($line[0] == '#' || $line == '<br>' || $line == '<br />')) {
    10311031        /**
    10321032         * Line starts with "#": It's a comment line => return empty string
     
    24342434   * @param integer $length    - Length of random string to generate
    24352435   *
    2436    * @return false|string
    2437    */
    2438   private function random_string(bool $alphaonly = false, int $length = 15): string|false {
     2436   * @return false
     2437   */
     2438  private function random_string(bool $alphaonly = false, int $length = 15): string {
    24392439    if ($alphaonly) {
    24402440      return substr(str_shuffle(str_repeat($x = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', ceil($length / strlen($x)))), 1, $length);
  • chordpress/tags/3.9.7/readme.txt

    r3309324 r3311795  
    55Requires at least: 4.0
    66Tested up to: 6.8
    7 Stable tag: 3.9.6
     7Stable tag: 3.9.7
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.9.7 =
     133* 2025-06-15
     134* Syntax fix for older PHP versions
     135
    132136= 3.9.6 =
    133137* 2025-06-10
  • chordpress/trunk/chordpress.php

    r3309324 r3311795  
    1919 * Plugin URI:        https://lewe.gitbook.io/lewe-chordpress/
    2020 * Description:       This plugin renders ChordPro formatted text and chord diagrams in WordPress sites.
    21  * Version:           3.9.6
     21 * Version:           3.9.7
    2222 * Author:            George Lewe
    2323 * Author URI:        https://www.lewe.com
     
    3838 */
    3939define('CHORDPRESS_NAME', 'ChordPress');
    40 define('CHORDPRESS_VERSION', '3.9.6');
     40define('CHORDPRESS_VERSION', '3.9.7');
    4141define('CHORDPRESS_AUTHOR', 'George Lewe');
    4242define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/trunk/includes/class-chordpress-renderer.php

    r3309316 r3311795  
    10281028       * No chords on this line
    10291029       */
    1030       if (isset($line[0]) && ($line[0] == '#' || $line == '<br />')) {
     1030      if (isset($line[0]) && ($line[0] == '#' || $line == '<br>' || $line == '<br />')) {
    10311031        /**
    10321032         * Line starts with "#": It's a comment line => return empty string
     
    24342434   * @param integer $length    - Length of random string to generate
    24352435   *
    2436    * @return false|string
    2437    */
    2438   private function random_string(bool $alphaonly = false, int $length = 15): string|false {
     2436   * @return false
     2437   */
     2438  private function random_string(bool $alphaonly = false, int $length = 15): string {
    24392439    if ($alphaonly) {
    24402440      return substr(str_shuffle(str_repeat($x = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', ceil($length / strlen($x)))), 1, $length);
  • chordpress/trunk/readme.txt

    r3309324 r3311795  
    55Requires at least: 4.0
    66Tested up to: 6.8
    7 Stable tag: 3.9.6
     7Stable tag: 3.9.7
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.9.7 =
     133* 2025-06-15
     134* Syntax fix for older PHP versions
     135
    132136= 3.9.6 =
    133137* 2025-06-10
Note: See TracChangeset for help on using the changeset viewer.