Plugin Directory

Changeset 3072575


Ignore:
Timestamp:
04/17/2024 05:41:37 PM (2 years ago)
Author:
glewe
Message:

Tagging version 3.6.2

Location:
chordpress
Files:
3 edited
12 copied

Legend:

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

    r3067783 r3072575  
    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.6.1
     19 * Version:           3.6.2
    2020 * Author:            George Lewe
    2121 * Author URI:        https://www.lewe.com
     
    3636 */
    3737define('CHORDPRESS_NAME', 'ChordPress');
    38 define('CHORDPRESS_VERSION', '3.6.1');
     38define('CHORDPRESS_VERSION', '3.6.2');
    3939define('CHORDPRESS_AUTHOR', 'George Lewe');
    4040define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/tags/3.6.2/includes/class-chordpress-renderer.php

    r3067783 r3072575  
    426426   * @var      array
    427427   */
    428   private $allowedChordPrefixes = array( '~', '|', '/', '.', '-' );
     428  private $allowedChordPrefixes = array( '~', '|', '/', '.', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', '9' );
    429429
    430430
     
    611611        } else {
    612612          //
    613           // Let's see if a 'Key' directive was given. If so, we can add
    614           // the transposed keys to the list.
     613          // Let's see if a 'Key' directive was given. If so, we can add the transposed keys to the list.
    615614          //
    616615          if (strlen($this->arrDirectives['key']) && in_array($this->arrDirectives['key'], $this->arrKeys)) {
     
    896895
    897896            /**
    898              * Allow chords starting with a ~, |, / and . as chord placeholders. Just return the string.
     897             * Allow chords starting with allowed prefixes as chord placeholders. Just return the string.
    899898             * Att: ... will end up as &ellip; . Use blanks between each dot.
    900899             */
  • chordpress/tags/3.6.2/readme.txt

    r3067783 r3072575  
    55Requires at least: 4.0
    66Tested up to: 6.5
    7 Stable tag: 3.6.1
     7Stable tag: 3.6.2
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.6.2 =
     133* 2024-04-17
     134* Added '1' - '9' as allowed chord prefix
     135
    132136= 3.6.1 =
    133137* 2024-04-09
  • chordpress/trunk/chordpress.php

    r3067783 r3072575  
    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.6.1
     19 * Version:           3.6.2
    2020 * Author:            George Lewe
    2121 * Author URI:        https://www.lewe.com
     
    3636 */
    3737define('CHORDPRESS_NAME', 'ChordPress');
    38 define('CHORDPRESS_VERSION', '3.6.1');
     38define('CHORDPRESS_VERSION', '3.6.2');
    3939define('CHORDPRESS_AUTHOR', 'George Lewe');
    4040define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/trunk/includes/class-chordpress-renderer.php

    r3067783 r3072575  
    426426   * @var      array
    427427   */
    428   private $allowedChordPrefixes = array( '~', '|', '/', '.', '-' );
     428  private $allowedChordPrefixes = array( '~', '|', '/', '.', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', '9' );
    429429
    430430
     
    611611        } else {
    612612          //
    613           // Let's see if a 'Key' directive was given. If so, we can add
    614           // the transposed keys to the list.
     613          // Let's see if a 'Key' directive was given. If so, we can add the transposed keys to the list.
    615614          //
    616615          if (strlen($this->arrDirectives['key']) && in_array($this->arrDirectives['key'], $this->arrKeys)) {
     
    896895
    897896            /**
    898              * Allow chords starting with a ~, |, / and . as chord placeholders. Just return the string.
     897             * Allow chords starting with allowed prefixes as chord placeholders. Just return the string.
    899898             * Att: ... will end up as &ellip; . Use blanks between each dot.
    900899             */
  • chordpress/trunk/readme.txt

    r3067783 r3072575  
    55Requires at least: 4.0
    66Tested up to: 6.5
    7 Stable tag: 3.6.1
     7Stable tag: 3.6.2
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.6.2 =
     133* 2024-04-17
     134* Added '1' - '9' as allowed chord prefix
     135
    132136= 3.6.1 =
    133137* 2024-04-09
Note: See TracChangeset for help on using the changeset viewer.