Plugin Directory

Changeset 2969936


Ignore:
Timestamp:
09/21/2023 05:51:55 PM (3 years ago)
Author:
glewe
Message:

Tagging version 3.5.2

Location:
chordpress
Files:
3 edited
23 copied

Legend:

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

    r2967998 r2969936  
    1717 * Plugin URI:        https://lewe.gitbook.io/lewe-chordpress/
    1818 * Description:       This plugin renders ChordPro formatted text and chord diagrams in WordPress sites.
    19  * Version:           3.5.1
     19 * Version:           3.5.2
    2020 * Author:            George Lewe
    2121 * Author URI:        https://www.lewe.com
     
    3636 */
    3737define('CHORDPRESS_NAME', 'ChordPress');
    38 define('CHORDPRESS_VERSION', '3.5.1');
     38define('CHORDPRESS_VERSION', '3.5.2');
    3939define('CHORDPRESS_AUTHOR', 'George Lewe');
    4040define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/tags/3.5.2/includes/class-chordpress-renderer.php

    r2967998 r2969936  
    543543        $returnText = "\n\n
    544544        <!--begin: ChordPress SongSheet -->
    545         <style>
    546             div.cpress { float: " . $this->float . "; }
    547             div.cpress_line { " . $this->lineStyle . "; }
    548             div.cpress_line_section { display: inline; float: left; }
    549             div.cpress_line_section .chord .chordshort { " . $this->chordStyle . "; }
    550             div.cpress_line_section .lyric { " . $this->lyricsStyle . "; }
    551             div.cpress_chorus { " . $this->chorusStyle . "; }
    552             div.cpress_verse { " . $this->verseStyle . "; }
    553             div.cpress_clear { clear: both; }
    554             div.cpress_meta { " . $this->metaStyle . "; }
    555             div.cpress_interaction { float: right; }
    556             div.cpress_interaction select { width: auto; }
    557             span.cpress_comment { " . $this->commentStyle . "; }
    558             div.cpress_chordsheet { text-align: center; }
    559         </style>
     545        <div>
     546            <style>
     547                div.cpress { float: " . $this->float . "; }
     548                div.cpress_line { " . $this->lineStyle . "; }
     549                div.cpress_line_section { display: inline; float: left; }
     550                div.cpress_line_section .chord .chordshort { " . $this->chordStyle . "; }
     551                div.cpress_line_section .lyric { " . $this->lyricsStyle . "; }
     552                div.cpress_chorus { " . $this->chorusStyle . "; }
     553                div.cpress_verse { " . $this->verseStyle . "; }
     554                div.cpress_clear { clear: both; }
     555                div.cpress_meta { " . $this->metaStyle . "; }
     556                div.cpress_interaction { float: right; }
     557                div.cpress_interaction select { width: auto; }
     558                span.cpress_comment { " . $this->commentStyle . "; }
     559                div.cpress_chordsheet { text-align: center; }
     560            </style>
     561        </div>
    560562        <div id=\"%cpressID%\" class=\"cpress\">\n";
    561563
     
    758760                    return "<div class=\"cpress_verse\">\n<div class=\"cpress_line\">\n";
    759761                } elseif (strpos($directiveName, 'end_of_verse') !== false) {
    760                     return "</div>\n";
     762                    return "</div></div>\n";
    761763                } elseif (strpos($directiveName, 'start_of_chorus') !== false) {
    762764                    return "<div class=\"cpress_chorus\">\n<div class=\"cpress_line\">\n";
    763765                } elseif (strpos($directiveName, 'end_of_chorus') !== false) {
    764                     return "</div>\n";
     766                    return "</div></div>\n";
    765767                } elseif (strpos($directiveName, 'start_of_monospace') !== false) {
    766768                    $this->inMonospace = true;
  • chordpress/tags/3.5.2/readme.txt

    r2967998 r2969936  
    55Requires at least: 4.0
    66Tested up to: 6.3
    7 Stable tag: 3.5.1
     7Stable tag: 3.5.2
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.5.2 =
     133* 2023-09-21
     134* Fixed unclosed div bug
     135
    132136= 3.5.1 =
    133137* 2023-09-17
  • chordpress/trunk/chordpress.php

    r2967998 r2969936  
    1717 * Plugin URI:        https://lewe.gitbook.io/lewe-chordpress/
    1818 * Description:       This plugin renders ChordPro formatted text and chord diagrams in WordPress sites.
    19  * Version:           3.5.1
     19 * Version:           3.5.2
    2020 * Author:            George Lewe
    2121 * Author URI:        https://www.lewe.com
     
    3636 */
    3737define('CHORDPRESS_NAME', 'ChordPress');
    38 define('CHORDPRESS_VERSION', '3.5.1');
     38define('CHORDPRESS_VERSION', '3.5.2');
    3939define('CHORDPRESS_AUTHOR', 'George Lewe');
    4040define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/trunk/includes/class-chordpress-renderer.php

    r2967998 r2969936  
    543543        $returnText = "\n\n
    544544        <!--begin: ChordPress SongSheet -->
    545         <style>
    546             div.cpress { float: " . $this->float . "; }
    547             div.cpress_line { " . $this->lineStyle . "; }
    548             div.cpress_line_section { display: inline; float: left; }
    549             div.cpress_line_section .chord .chordshort { " . $this->chordStyle . "; }
    550             div.cpress_line_section .lyric { " . $this->lyricsStyle . "; }
    551             div.cpress_chorus { " . $this->chorusStyle . "; }
    552             div.cpress_verse { " . $this->verseStyle . "; }
    553             div.cpress_clear { clear: both; }
    554             div.cpress_meta { " . $this->metaStyle . "; }
    555             div.cpress_interaction { float: right; }
    556             div.cpress_interaction select { width: auto; }
    557             span.cpress_comment { " . $this->commentStyle . "; }
    558             div.cpress_chordsheet { text-align: center; }
    559         </style>
     545        <div>
     546            <style>
     547                div.cpress { float: " . $this->float . "; }
     548                div.cpress_line { " . $this->lineStyle . "; }
     549                div.cpress_line_section { display: inline; float: left; }
     550                div.cpress_line_section .chord .chordshort { " . $this->chordStyle . "; }
     551                div.cpress_line_section .lyric { " . $this->lyricsStyle . "; }
     552                div.cpress_chorus { " . $this->chorusStyle . "; }
     553                div.cpress_verse { " . $this->verseStyle . "; }
     554                div.cpress_clear { clear: both; }
     555                div.cpress_meta { " . $this->metaStyle . "; }
     556                div.cpress_interaction { float: right; }
     557                div.cpress_interaction select { width: auto; }
     558                span.cpress_comment { " . $this->commentStyle . "; }
     559                div.cpress_chordsheet { text-align: center; }
     560            </style>
     561        </div>
    560562        <div id=\"%cpressID%\" class=\"cpress\">\n";
    561563
     
    758760                    return "<div class=\"cpress_verse\">\n<div class=\"cpress_line\">\n";
    759761                } elseif (strpos($directiveName, 'end_of_verse') !== false) {
    760                     return "</div>\n";
     762                    return "</div></div>\n";
    761763                } elseif (strpos($directiveName, 'start_of_chorus') !== false) {
    762764                    return "<div class=\"cpress_chorus\">\n<div class=\"cpress_line\">\n";
    763765                } elseif (strpos($directiveName, 'end_of_chorus') !== false) {
    764                     return "</div>\n";
     766                    return "</div></div>\n";
    765767                } elseif (strpos($directiveName, 'start_of_monospace') !== false) {
    766768                    $this->inMonospace = true;
  • chordpress/trunk/readme.txt

    r2967998 r2969936  
    55Requires at least: 4.0
    66Tested up to: 6.3
    7 Stable tag: 3.5.1
     7Stable tag: 3.5.2
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.5.2 =
     133* 2023-09-21
     134* Fixed unclosed div bug
     135
    132136= 3.5.1 =
    133137* 2023-09-17
Note: See TracChangeset for help on using the changeset viewer.