Plugin Directory

Changeset 2871185


Ignore:
Timestamp:
02/26/2023 08:49:28 AM (3 years ago)
Author:
glewe
Message:

Tagging version 3.3.2

Location:
chordpress
Files:
4 edited
23 copied

Legend:

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

    r2849275 r2871185  
    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.3.1
     19 * Version:           3.3.2
    2020 * Author:            George Lewe
    2121 * Author URI:        https://www.lewe.com
     
    3636 */
    3737define('CHORDPRESS_NAME', 'ChordPress');
    38 define('CHORDPRESS_VERSION', '3.3.1');
     38define('CHORDPRESS_VERSION', '3.3.2');
    3939define('CHORDPRESS_AUTHOR', 'George Lewe');
    4040define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/tags/3.3.2/includes/class-chordpress-chord.php

    r2666259 r2871185  
    510510        <div id=\"" . $id . "\" class=\"cpress-chord\" style=\"width:" . $this->canvasWidth . "px;" . $float . "\"></div>
    511511        <script>\n
    512             var chart = new svguitar.SVGuitarChord('#" . $id . "')
    513             " . $this->buildChordParmeters() . "
    514             " . $this->buildConfigureParmeters() . "
    515             .draw();
     512            async function drawChord" . $id . "() {
     513                var chart = new svguitar.SVGuitarChord('#" . $id . "')
     514                " . $this->buildChordParmeters() . "
     515                " . $this->buildConfigureParmeters() . "
     516                .draw();
     517            };
     518            drawChord" . $id . "();
    516519        </script>\n\n";
    517520
  • chordpress/tags/3.3.2/includes/class-chordpress-renderer.php

    r2849275 r2871185  
    684684            $returnText .= $chordSheetText;
    685685        }
    686 
     686        // $this->C->dnd($returnText);
    687687        return $returnText . "\n\n";
    688688    }
  • chordpress/tags/3.3.2/readme.txt

    r2849275 r2871185  
    55Requires at least: 4.0
    66Tested up to: 6.1
    7 Stable tag: 3.3.1
     7Stable tag: 3.3.2
    88Requires PHP: 5.2.4
    99License: GPLv3
  • chordpress/trunk/chordpress.php

    r2849275 r2871185  
    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.3.1
     19 * Version:           3.3.2
    2020 * Author:            George Lewe
    2121 * Author URI:        https://www.lewe.com
     
    3636 */
    3737define('CHORDPRESS_NAME', 'ChordPress');
    38 define('CHORDPRESS_VERSION', '3.3.1');
     38define('CHORDPRESS_VERSION', '3.3.2');
    3939define('CHORDPRESS_AUTHOR', 'George Lewe');
    4040define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com');
  • chordpress/trunk/includes/class-chordpress-chord.php

    r2666259 r2871185  
    510510        <div id=\"" . $id . "\" class=\"cpress-chord\" style=\"width:" . $this->canvasWidth . "px;" . $float . "\"></div>
    511511        <script>\n
    512             var chart = new svguitar.SVGuitarChord('#" . $id . "')
    513             " . $this->buildChordParmeters() . "
    514             " . $this->buildConfigureParmeters() . "
    515             .draw();
     512            async function drawChord" . $id . "() {
     513                var chart = new svguitar.SVGuitarChord('#" . $id . "')
     514                " . $this->buildChordParmeters() . "
     515                " . $this->buildConfigureParmeters() . "
     516                .draw();
     517            };
     518            drawChord" . $id . "();
    516519        </script>\n\n";
    517520
  • chordpress/trunk/includes/class-chordpress-renderer.php

    r2849275 r2871185  
    684684            $returnText .= $chordSheetText;
    685685        }
    686 
     686        // $this->C->dnd($returnText);
    687687        return $returnText . "\n\n";
    688688    }
  • chordpress/trunk/readme.txt

    r2849275 r2871185  
    55Requires at least: 4.0
    66Tested up to: 6.1
    7 Stable tag: 3.3.1
     7Stable tag: 3.3.2
    88Requires PHP: 5.2.4
    99License: GPLv3
Note: See TracChangeset for help on using the changeset viewer.