Changeset 3072575
- Timestamp:
- 04/17/2024 05:41:37 PM (2 years ago)
- Location:
- chordpress
- Files:
-
- 3 edited
- 12 copied
-
tags/3.6.2 (copied) (copied from chordpress/trunk)
-
tags/3.6.2/admin/partials/chordpress-admin-options.php (copied) (copied from chordpress/trunk/admin/partials/chordpress-admin-options.php)
-
tags/3.6.2/chordpress.php (copied) (copied from chordpress/trunk/chordpress.php) (2 diffs)
-
tags/3.6.2/includes/class-chordpress-plugin.php (copied) (copied from chordpress/trunk/includes/class-chordpress-plugin.php)
-
tags/3.6.2/includes/class-chordpress-renderer.php (copied) (copied from chordpress/trunk/includes/class-chordpress-renderer.php) (3 diffs)
-
tags/3.6.2/languages/chordpress.pot (copied) (copied from chordpress/trunk/languages/chordpress.pot)
-
tags/3.6.2/makepot.cmd (copied) (copied from chordpress/trunk/makepot.cmd)
-
tags/3.6.2/public/class-chordpress-public.php (copied) (copied from chordpress/trunk/public/class-chordpress-public.php)
-
tags/3.6.2/public/css/chordpress-public.css (copied) (copied from chordpress/trunk/public/css/chordpress-public.css)
-
tags/3.6.2/public/js/chordpress-public.js (copied) (copied from chordpress/trunk/public/js/chordpress-public.js)
-
tags/3.6.2/readme.txt (copied) (copied from chordpress/trunk/readme.txt) (2 diffs)
-
tags/3.6.2/uninstall.php (copied) (copied from chordpress/trunk/uninstall.php)
-
trunk/chordpress.php (modified) (2 diffs)
-
trunk/includes/class-chordpress-renderer.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chordpress/tags/3.6.2/chordpress.php
r3067783 r3072575 17 17 * Plugin URI: https://lewe.gitbook.io/lewe-chordpress/ 18 18 * Description: This plugin renders ChordPro formatted text and chord diagrams in WordPress sites. 19 * Version: 3.6. 119 * Version: 3.6.2 20 20 * Author: George Lewe 21 21 * Author URI: https://www.lewe.com … … 36 36 */ 37 37 define('CHORDPRESS_NAME', 'ChordPress'); 38 define('CHORDPRESS_VERSION', '3.6. 1');38 define('CHORDPRESS_VERSION', '3.6.2'); 39 39 define('CHORDPRESS_AUTHOR', 'George Lewe'); 40 40 define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com'); -
chordpress/tags/3.6.2/includes/class-chordpress-renderer.php
r3067783 r3072575 426 426 * @var array 427 427 */ 428 private $allowedChordPrefixes = array( '~', '|', '/', '.', '-' );428 private $allowedChordPrefixes = array( '~', '|', '/', '.', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', '9' ); 429 429 430 430 … … 611 611 } else { 612 612 // 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. 615 614 // 616 615 if (strlen($this->arrDirectives['key']) && in_array($this->arrDirectives['key'], $this->arrKeys)) { … … 896 895 897 896 /** 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. 899 898 * Att: ... will end up as &ellip; . Use blanks between each dot. 900 899 */ -
chordpress/tags/3.6.2/readme.txt
r3067783 r3072575 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 3.6. 17 Stable tag: 3.6.2 8 8 Requires PHP: 5.2.4 9 9 License: GPLv3 … … 130 130 131 131 == Changelog == 132 = 3.6.2 = 133 * 2024-04-17 134 * Added '1' - '9' as allowed chord prefix 135 132 136 = 3.6.1 = 133 137 * 2024-04-09 -
chordpress/trunk/chordpress.php
r3067783 r3072575 17 17 * Plugin URI: https://lewe.gitbook.io/lewe-chordpress/ 18 18 * Description: This plugin renders ChordPro formatted text and chord diagrams in WordPress sites. 19 * Version: 3.6. 119 * Version: 3.6.2 20 20 * Author: George Lewe 21 21 * Author URI: https://www.lewe.com … … 36 36 */ 37 37 define('CHORDPRESS_NAME', 'ChordPress'); 38 define('CHORDPRESS_VERSION', '3.6. 1');38 define('CHORDPRESS_VERSION', '3.6.2'); 39 39 define('CHORDPRESS_AUTHOR', 'George Lewe'); 40 40 define('CHORDPRESS_AUTHOR_URI', 'https://www.lewe.com'); -
chordpress/trunk/includes/class-chordpress-renderer.php
r3067783 r3072575 426 426 * @var array 427 427 */ 428 private $allowedChordPrefixes = array( '~', '|', '/', '.', '-' );428 private $allowedChordPrefixes = array( '~', '|', '/', '.', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', '9' ); 429 429 430 430 … … 611 611 } else { 612 612 // 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. 615 614 // 616 615 if (strlen($this->arrDirectives['key']) && in_array($this->arrDirectives['key'], $this->arrKeys)) { … … 896 895 897 896 /** 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. 899 898 * Att: ... will end up as &ellip; . Use blanks between each dot. 900 899 */ -
chordpress/trunk/readme.txt
r3067783 r3072575 5 5 Requires at least: 4.0 6 6 Tested up to: 6.5 7 Stable tag: 3.6. 17 Stable tag: 3.6.2 8 8 Requires PHP: 5.2.4 9 9 License: GPLv3 … … 130 130 131 131 == Changelog == 132 = 3.6.2 = 133 * 2024-04-17 134 * Added '1' - '9' as allowed chord prefix 135 132 136 = 3.6.1 = 133 137 * 2024-04-09
Note: See TracChangeset
for help on using the changeset viewer.