Plugin Directory

Changeset 3309324


Ignore:
Timestamp:
06/10/2025 03:35:54 PM (10 months ago)
Author:
glewe
Message:

Tagging version 3.9.6

Location:
chordpress
Files:
3 edited
23 copied

Legend:

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

    r3309316 r3309324  
    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.5
     21 * Version:           3.9.6
    2222 * Author:            George Lewe
    2323 * Author URI:        https://www.lewe.com
     
    3838 */
    3939define('CHORDPRESS_NAME', 'ChordPress');
    40 define('CHORDPRESS_VERSION', '3.9.5');
     40define('CHORDPRESS_VERSION', '3.9.6');
    4141define('CHORDPRESS_AUTHOR', 'George Lewe');
    4242define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/tags/3.9.6/public/js/chordpress-public.js

    r3309316 r3309324  
    361361
    362362  // Scale specified classes
    363   ['cpress_line'].forEach(className => {
     363  ['cpress_verse', 'cpress_chorus', 'cpress_line', 'cpress_comment', 'lyric'].forEach(className => {
    364364    const elems = element.getElementsByClassName(className);
    365365    for (let i = 0; i < elems.length; i++) {
  • chordpress/tags/3.9.6/readme.txt

    r3309316 r3309324  
    55Requires at least: 4.0
    66Tested up to: 6.8
    7 Stable tag: 3.9.5
     7Stable tag: 3.9.6
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.9.6 =
     133* 2025-06-10
     134* Interactive font size is now overwriting other custom style font sizes
     135
    132136= 3.9.5 =
    133137* 2025-06-10
  • chordpress/trunk/chordpress.php

    r3309316 r3309324  
    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.5
     21 * Version:           3.9.6
    2222 * Author:            George Lewe
    2323 * Author URI:        https://www.lewe.com
     
    3838 */
    3939define('CHORDPRESS_NAME', 'ChordPress');
    40 define('CHORDPRESS_VERSION', '3.9.5');
     40define('CHORDPRESS_VERSION', '3.9.6');
    4141define('CHORDPRESS_AUTHOR', 'George Lewe');
    4242define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/trunk/public/js/chordpress-public.js

    r3309316 r3309324  
    361361
    362362  // Scale specified classes
    363   ['cpress_line'].forEach(className => {
     363  ['cpress_verse', 'cpress_chorus', 'cpress_line', 'cpress_comment', 'lyric'].forEach(className => {
    364364    const elems = element.getElementsByClassName(className);
    365365    for (let i = 0; i < elems.length; i++) {
  • chordpress/trunk/readme.txt

    r3309316 r3309324  
    55Requires at least: 4.0
    66Tested up to: 6.8
    7 Stable tag: 3.9.5
     7Stable tag: 3.9.6
    88Requires PHP: 5.2.4
    99License: GPLv3
     
    130130
    131131== Changelog ==
     132= 3.9.6 =
     133* 2025-06-10
     134* Interactive font size is now overwriting other custom style font sizes
     135
    132136= 3.9.5 =
    133137* 2025-06-10
Note: See TracChangeset for help on using the changeset viewer.