Changeset 3311795
- Timestamp:
- 06/15/2025 07:20:04 AM (10 months ago)
- Location:
- chordpress
- Files:
-
- 3 edited
- 23 copied
-
tags/3.9.7 (copied) (copied from chordpress/trunk)
-
tags/3.9.7/admin/class-chordpress-admin.php (copied) (copied from chordpress/trunk/admin/class-chordpress-admin.php)
-
tags/3.9.7/admin/js/chordpress-admin.js (copied) (copied from chordpress/trunk/admin/js/chordpress-admin.js)
-
tags/3.9.7/admin/js/tinymce_buttons.js (copied) (copied from chordpress/trunk/admin/js/tinymce_buttons.js)
-
tags/3.9.7/admin/partials/chordpress-admin-chord-meta-box.php (copied) (copied from chordpress/trunk/admin/partials/chordpress-admin-chord-meta-box.php)
-
tags/3.9.7/admin/partials/chordpress-admin-license.php (copied) (copied from chordpress/trunk/admin/partials/chordpress-admin-license.php)
-
tags/3.9.7/admin/partials/chordpress-admin-options.php (copied) (copied from chordpress/trunk/admin/partials/chordpress-admin-options.php)
-
tags/3.9.7/chordpress.php (copied) (copied from chordpress/trunk/chordpress.php) (2 diffs)
-
tags/3.9.7/includes/class-chordpress-activator.php (copied) (copied from chordpress/trunk/includes/class-chordpress-activator.php)
-
tags/3.9.7/includes/class-chordpress-chord.php (copied) (copied from chordpress/trunk/includes/class-chordpress-chord.php)
-
tags/3.9.7/includes/class-chordpress-deactivator.php (copied) (copied from chordpress/trunk/includes/class-chordpress-deactivator.php)
-
tags/3.9.7/includes/class-chordpress-i18n.php (copied) (copied from chordpress/trunk/includes/class-chordpress-i18n.php)
-
tags/3.9.7/includes/class-chordpress-license.php (copied) (copied from chordpress/trunk/includes/class-chordpress-license.php)
-
tags/3.9.7/includes/class-chordpress-loader.php (copied) (copied from chordpress/trunk/includes/class-chordpress-loader.php)
-
tags/3.9.7/includes/class-chordpress-plugin.php (copied) (copied from chordpress/trunk/includes/class-chordpress-plugin.php)
-
tags/3.9.7/includes/class-chordpress-renderer.php (copied) (copied from chordpress/trunk/includes/class-chordpress-renderer.php) (2 diffs)
-
tags/3.9.7/languages/chordpress.pot (copied) (copied from chordpress/trunk/languages/chordpress.pot)
-
tags/3.9.7/makepot.cmd (copied) (copied from chordpress/trunk/makepot.cmd)
-
tags/3.9.7/public/class-chordpress-public.php (copied) (copied from chordpress/trunk/public/class-chordpress-public.php)
-
tags/3.9.7/public/css/chordpress-public.css (copied) (copied from chordpress/trunk/public/css/chordpress-public.css)
-
tags/3.9.7/public/js/chordpress-public.js (copied) (copied from chordpress/trunk/public/js/chordpress-public.js)
-
tags/3.9.7/readme.txt (copied) (copied from chordpress/trunk/readme.txt) (2 diffs)
-
tags/3.9.7/uninstall.php (copied) (copied from chordpress/trunk/uninstall.php)
-
trunk/chordpress.php (modified) (2 diffs)
-
trunk/includes/class-chordpress-renderer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chordpress/tags/3.9.7/chordpress.php
r3309324 r3311795 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.9. 621 * Version: 3.9.7 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.9. 6');40 define('CHORDPRESS_VERSION', '3.9.7'); 41 41 define('CHORDPRESS_AUTHOR', 'George Lewe'); 42 42 define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com'); -
chordpress/tags/3.9.7/includes/class-chordpress-renderer.php
r3309316 r3311795 1028 1028 * No chords on this line 1029 1029 */ 1030 if (isset($line[0]) && ($line[0] == '#' || $line == '<br />')) {1030 if (isset($line[0]) && ($line[0] == '#' || $line == '<br>' || $line == '<br />')) { 1031 1031 /** 1032 1032 * Line starts with "#": It's a comment line => return empty string … … 2434 2434 * @param integer $length - Length of random string to generate 2435 2435 * 2436 * @return false |string2437 */ 2438 private function random_string(bool $alphaonly = false, int $length = 15): string |false{2436 * @return false 2437 */ 2438 private function random_string(bool $alphaonly = false, int $length = 15): string { 2439 2439 if ($alphaonly) { 2440 2440 return substr(str_shuffle(str_repeat($x = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', ceil($length / strlen($x)))), 1, $length); -
chordpress/tags/3.9.7/readme.txt
r3309324 r3311795 5 5 Requires at least: 4.0 6 6 Tested up to: 6.8 7 Stable tag: 3.9. 67 Stable tag: 3.9.7 8 8 Requires PHP: 5.2.4 9 9 License: GPLv3 … … 130 130 131 131 == Changelog == 132 = 3.9.7 = 133 * 2025-06-15 134 * Syntax fix for older PHP versions 135 132 136 = 3.9.6 = 133 137 * 2025-06-10 -
chordpress/trunk/chordpress.php
r3309324 r3311795 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.9. 621 * Version: 3.9.7 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.9. 6');40 define('CHORDPRESS_VERSION', '3.9.7'); 41 41 define('CHORDPRESS_AUTHOR', 'George Lewe'); 42 42 define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com'); -
chordpress/trunk/includes/class-chordpress-renderer.php
r3309316 r3311795 1028 1028 * No chords on this line 1029 1029 */ 1030 if (isset($line[0]) && ($line[0] == '#' || $line == '<br />')) {1030 if (isset($line[0]) && ($line[0] == '#' || $line == '<br>' || $line == '<br />')) { 1031 1031 /** 1032 1032 * Line starts with "#": It's a comment line => return empty string … … 2434 2434 * @param integer $length - Length of random string to generate 2435 2435 * 2436 * @return false |string2437 */ 2438 private function random_string(bool $alphaonly = false, int $length = 15): string |false{2436 * @return false 2437 */ 2438 private function random_string(bool $alphaonly = false, int $length = 15): string { 2439 2439 if ($alphaonly) { 2440 2440 return substr(str_shuffle(str_repeat($x = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', ceil($length / strlen($x)))), 1, $length); -
chordpress/trunk/readme.txt
r3309324 r3311795 5 5 Requires at least: 4.0 6 6 Tested up to: 6.8 7 Stable tag: 3.9. 67 Stable tag: 3.9.7 8 8 Requires PHP: 5.2.4 9 9 License: GPLv3 … … 130 130 131 131 == Changelog == 132 = 3.9.7 = 133 * 2025-06-15 134 * Syntax fix for older PHP versions 135 132 136 = 3.9.6 = 133 137 * 2025-06-10
Note: See TracChangeset
for help on using the changeset viewer.