Changeset 3203607
- Timestamp:
- 12/06/2024 12:23:15 PM (16 months ago)
- Location:
- chordpress
- Files:
-
- 3 edited
- 23 copied
-
tags/3.6.4 (copied) (copied from chordpress/trunk)
-
tags/3.6.4/admin/class-chordpress-admin.php (copied) (copied from chordpress/trunk/admin/class-chordpress-admin.php)
-
tags/3.6.4/admin/js/chordpress-admin.js (copied) (copied from chordpress/trunk/admin/js/chordpress-admin.js)
-
tags/3.6.4/admin/js/tinymce_buttons.js (copied) (copied from chordpress/trunk/admin/js/tinymce_buttons.js)
-
tags/3.6.4/admin/partials/chordpress-admin-chord-meta-box.php (copied) (copied from chordpress/trunk/admin/partials/chordpress-admin-chord-meta-box.php)
-
tags/3.6.4/admin/partials/chordpress-admin-license.php (copied) (copied from chordpress/trunk/admin/partials/chordpress-admin-license.php)
-
tags/3.6.4/admin/partials/chordpress-admin-options.php (copied) (copied from chordpress/trunk/admin/partials/chordpress-admin-options.php)
-
tags/3.6.4/chordpress.php (copied) (copied from chordpress/trunk/chordpress.php) (2 diffs)
-
tags/3.6.4/includes/class-chordpress-activator.php (copied) (copied from chordpress/trunk/includes/class-chordpress-activator.php)
-
tags/3.6.4/includes/class-chordpress-chord.php (copied) (copied from chordpress/trunk/includes/class-chordpress-chord.php)
-
tags/3.6.4/includes/class-chordpress-deactivator.php (copied) (copied from chordpress/trunk/includes/class-chordpress-deactivator.php)
-
tags/3.6.4/includes/class-chordpress-i18n.php (copied) (copied from chordpress/trunk/includes/class-chordpress-i18n.php)
-
tags/3.6.4/includes/class-chordpress-license.php (copied) (copied from chordpress/trunk/includes/class-chordpress-license.php)
-
tags/3.6.4/includes/class-chordpress-loader.php (copied) (copied from chordpress/trunk/includes/class-chordpress-loader.php)
-
tags/3.6.4/includes/class-chordpress-plugin.php (copied) (copied from chordpress/trunk/includes/class-chordpress-plugin.php)
-
tags/3.6.4/includes/class-chordpress-renderer.php (copied) (copied from chordpress/trunk/includes/class-chordpress-renderer.php) (4 diffs)
-
tags/3.6.4/languages/chordpress.pot (copied) (copied from chordpress/trunk/languages/chordpress.pot)
-
tags/3.6.4/makepot.cmd (copied) (copied from chordpress/trunk/makepot.cmd)
-
tags/3.6.4/public/class-chordpress-public.php (copied) (copied from chordpress/trunk/public/class-chordpress-public.php)
-
tags/3.6.4/public/css/chordpress-public.css (copied) (copied from chordpress/trunk/public/css/chordpress-public.css)
-
tags/3.6.4/public/js/chordpress-public.js (copied) (copied from chordpress/trunk/public/js/chordpress-public.js)
-
tags/3.6.4/readme.txt (copied) (copied from chordpress/trunk/readme.txt) (2 diffs)
-
tags/3.6.4/uninstall.php (copied) (copied from chordpress/trunk/uninstall.php)
-
trunk/chordpress.php (modified) (2 diffs)
-
trunk/includes/class-chordpress-renderer.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chordpress/tags/3.6.4/chordpress.php
r3202589 r3203607 19 19 * Plugin URI: https://lewe.gitbook.io/lewe-chordpress/ 20 20 * Description: This plugin renders ChordPro formatted text and chord diagrams in WordPress sites. 21 * Version: 3.6. 321 * Version: 3.6.4 22 22 * Author: George Lewe 23 23 * Author URI: https://www.lewe.com … … 38 38 */ 39 39 define('CHORDPRESS_NAME', 'ChordPress'); 40 define('CHORDPRESS_VERSION', '3.6. 3');40 define('CHORDPRESS_VERSION', '3.6.4'); 41 41 define('CHORDPRESS_AUTHOR', 'George Lewe'); 42 42 define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com'); -
chordpress/tags/3.6.4/includes/class-chordpress-renderer.php
r3202589 r3203607 603 603 } 604 604 $interactionForm .= "\">"; 605 $interactionForm .= "<div class='cpress-col cpress-pl-0'>" . __('Font', 'chordpress') . " 605 $interactionForm .= "<div class='cpress-col cpress-pl-0'>" . __('Font', 'chordpress') . "<br> 606 606 <div class='cpress-btn-group' role='group'> 607 607 <button type='button' class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"changeFontSize('%cpressID%', -5);\">-</button> … … 611 611 </div>"; 612 612 if (!$this->hideTranspose) { 613 $interactionForm .= "<div class='cpress-col cpress-text-center' style='display: inline-block; text-wrap: nowrap;'>";613 $interactionForm .= "<div class='cpress-col' style='display: inline-block;'>"; 614 614 if ($this->showNumericTranspose) { 615 615 // … … 623 623 $initialText = '0'; 624 624 } 625 $interactionForm .= "<span class=''>" . __('Transpose', 'chordpress') . "</span>625 $interactionForm .= __('Transpose', 'chordpress') . "<br> 626 626 <div class='cpress-btn-group' role='group'> 627 627 <button type='button' class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"transposeChords('%cpressID%', 'btnTranspose-', 'down', " . $songKey . ");\">-</button> … … 662 662 $interactionForm .= "</div>"; 663 663 } 664 $interactionForm .= "<div class='cpress-col cpress- text-end cpress-pr-0'>";664 $interactionForm .= "<div class='cpress-col cpress-pr-0'>"; 665 665 if (!$this->hidePrint) { 666 $interactionForm .= "<b utton class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"window.print();\">" . __('Print', 'chordpress') . "</button>\n";666 $interactionForm .= "<br><button class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"window.print();\">" . __('Print', 'chordpress') . "</button>\n"; 667 667 } 668 668 $interactionForm .= "</div>"; -
chordpress/tags/3.6.4/readme.txt
r3202589 r3203607 5 5 Requires at least: 4.0 6 6 Tested up to: 6.7 7 Stable tag: 3.6. 37 Stable tag: 3.6.4 8 8 Requires PHP: 5.2.4 9 9 License: GPLv3 … … 130 130 131 131 == Changelog == 132 = 3.6.4 = 133 * 2024-12-06 134 * Adjusted display of the font, transpose and print form objects 135 132 136 = 3.6.3 = 133 137 * 2024-12-04 -
chordpress/trunk/chordpress.php
r3202589 r3203607 19 19 * Plugin URI: https://lewe.gitbook.io/lewe-chordpress/ 20 20 * Description: This plugin renders ChordPro formatted text and chord diagrams in WordPress sites. 21 * Version: 3.6. 321 * Version: 3.6.4 22 22 * Author: George Lewe 23 23 * Author URI: https://www.lewe.com … … 38 38 */ 39 39 define('CHORDPRESS_NAME', 'ChordPress'); 40 define('CHORDPRESS_VERSION', '3.6. 3');40 define('CHORDPRESS_VERSION', '3.6.4'); 41 41 define('CHORDPRESS_AUTHOR', 'George Lewe'); 42 42 define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com'); -
chordpress/trunk/includes/class-chordpress-renderer.php
r3202589 r3203607 603 603 } 604 604 $interactionForm .= "\">"; 605 $interactionForm .= "<div class='cpress-col cpress-pl-0'>" . __('Font', 'chordpress') . " 605 $interactionForm .= "<div class='cpress-col cpress-pl-0'>" . __('Font', 'chordpress') . "<br> 606 606 <div class='cpress-btn-group' role='group'> 607 607 <button type='button' class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"changeFontSize('%cpressID%', -5);\">-</button> … … 611 611 </div>"; 612 612 if (!$this->hideTranspose) { 613 $interactionForm .= "<div class='cpress-col cpress-text-center' style='display: inline-block; text-wrap: nowrap;'>";613 $interactionForm .= "<div class='cpress-col' style='display: inline-block;'>"; 614 614 if ($this->showNumericTranspose) { 615 615 // … … 623 623 $initialText = '0'; 624 624 } 625 $interactionForm .= "<span class=''>" . __('Transpose', 'chordpress') . "</span>625 $interactionForm .= __('Transpose', 'chordpress') . "<br> 626 626 <div class='cpress-btn-group' role='group'> 627 627 <button type='button' class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"transposeChords('%cpressID%', 'btnTranspose-', 'down', " . $songKey . ");\">-</button> … … 662 662 $interactionForm .= "</div>"; 663 663 } 664 $interactionForm .= "<div class='cpress-col cpress- text-end cpress-pr-0'>";664 $interactionForm .= "<div class='cpress-col cpress-pr-0'>"; 665 665 if (!$this->hidePrint) { 666 $interactionForm .= "<b utton class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"window.print();\">" . __('Print', 'chordpress') . "</button>\n";666 $interactionForm .= "<br><button class='cpress-btn cpress-btn-secondary cpress-btn-sm' onclick=\"window.print();\">" . __('Print', 'chordpress') . "</button>\n"; 667 667 } 668 668 $interactionForm .= "</div>"; -
chordpress/trunk/readme.txt
r3202589 r3203607 5 5 Requires at least: 4.0 6 6 Tested up to: 6.7 7 Stable tag: 3.6. 37 Stable tag: 3.6.4 8 8 Requires PHP: 5.2.4 9 9 License: GPLv3 … … 130 130 131 131 == Changelog == 132 = 3.6.4 = 133 * 2024-12-06 134 * Adjusted display of the font, transpose and print form objects 135 132 136 = 3.6.3 = 133 137 * 2024-12-04
Note: See TracChangeset
for help on using the changeset viewer.