Changeset 3374532
- Timestamp:
- 10/07/2025 03:35:04 PM (6 months ago)
- Location:
- pie-calendar
- Files:
-
- 8 edited
- 1 copied
-
tags/1.3.0.1 (copied) (copied from pie-calendar/trunk)
-
tags/1.3.0.1/includes/utils/General.php (modified) (1 diff)
-
tags/1.3.0.1/languages/piecal.pot (modified) (2 diffs)
-
tags/1.3.0.1/plugin.php (modified) (2 diffs)
-
tags/1.3.0.1/readme.txt (modified) (3 diffs)
-
trunk/includes/utils/General.php (modified) (1 diff)
-
trunk/languages/piecal.pot (modified) (2 diffs)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pie-calendar/tags/1.3.0.1/includes/utils/General.php
r3371799 r3374532 155 155 156 156 if( strlen( $excerpt ) > $length ) { 157 $excerpt = substr( $excerpt, 0, $length ) . '...';157 $excerpt = mb_substr( $excerpt, 0, $length ) . '...'; 158 158 } 159 159 -
pie-calendar/tags/1.3.0.1/languages/piecal.pot
r3371799 r3374532 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Pie Calendar 1.3.0 \n"5 "Project-Id-Version: Pie Calendar 1.3.0.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pie-calendar\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-10-0 1T13:47:17+00:00\n"12 "POT-Creation-Date: 2025-10-07T14:59:43+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
pie-calendar/tags/1.3.0.1/plugin.php
r3371799 r3374532 10 10 * Plugin URI: https://piecalendar.com 11 11 * Description: Turn any post type into a calendar event and display it on a calendar. 12 * Version: 1.3.0 12 * Version: 1.3.0.1 13 13 * Author: Elijah Mills & Jonathan Jernigan 14 14 * Author URI: https://piecalendar.com/about … … 26 26 } 27 27 28 define( 'PIECAL_VERSION', '1.3.0 ' );28 define( 'PIECAL_VERSION', '1.3.0.1' ); 29 29 define( 'PIECAL_PATH', plugin_dir_url( __FILE__ ) ); 30 30 define( 'PIECAL_DIR', plugin_dir_path( __FILE__ ) ); -
pie-calendar/tags/1.3.0.1/readme.txt
r3371799 r3374532 1 === WordPress Events Calendar Plugin –Pie Calendar ===1 === Events Calendar Made Simple - Pie Calendar === 2 2 Contributors: apexws, spellhammer 3 3 Tags: events, calendar, event … … 6 6 Tested up to: 6.8.3 7 7 Requires PHP: 7.4 8 Stable tag: 1.3.0 8 Stable tag: 1.3.0.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 E asily display WordPress posts as events on a flexible front-end calendar. Supports any post type. Free and Pro versions12 Events calendar - the simple way. Easily display any WordPress post as an event on a flexible front-end calendar. Supports any post type. 13 13 14 14 == Description == … … 89 89 90 90 == Changelog == 91 92 = 1.3.0.1 = 93 * Fix: Use multibyte safe function for limiting excerpt length to avoid breakages when multibyte characters are present. 91 94 92 95 = 1.3.0 = -
pie-calendar/trunk/includes/utils/General.php
r3371799 r3374532 155 155 156 156 if( strlen( $excerpt ) > $length ) { 157 $excerpt = substr( $excerpt, 0, $length ) . '...';157 $excerpt = mb_substr( $excerpt, 0, $length ) . '...'; 158 158 } 159 159 -
pie-calendar/trunk/languages/piecal.pot
r3371799 r3374532 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Pie Calendar 1.3.0 \n"5 "Project-Id-Version: Pie Calendar 1.3.0.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pie-calendar\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-10-0 1T13:47:17+00:00\n"12 "POT-Creation-Date: 2025-10-07T14:59:43+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
pie-calendar/trunk/plugin.php
r3371799 r3374532 10 10 * Plugin URI: https://piecalendar.com 11 11 * Description: Turn any post type into a calendar event and display it on a calendar. 12 * Version: 1.3.0 12 * Version: 1.3.0.1 13 13 * Author: Elijah Mills & Jonathan Jernigan 14 14 * Author URI: https://piecalendar.com/about … … 26 26 } 27 27 28 define( 'PIECAL_VERSION', '1.3.0 ' );28 define( 'PIECAL_VERSION', '1.3.0.1' ); 29 29 define( 'PIECAL_PATH', plugin_dir_url( __FILE__ ) ); 30 30 define( 'PIECAL_DIR', plugin_dir_path( __FILE__ ) ); -
pie-calendar/trunk/readme.txt
r3371799 r3374532 1 === WordPress Events Calendar Plugin –Pie Calendar ===1 === Events Calendar Made Simple - Pie Calendar === 2 2 Contributors: apexws, spellhammer 3 3 Tags: events, calendar, event … … 6 6 Tested up to: 6.8.3 7 7 Requires PHP: 7.4 8 Stable tag: 1.3.0 8 Stable tag: 1.3.0.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 E asily display WordPress posts as events on a flexible front-end calendar. Supports any post type. Free and Pro versions12 Events calendar - the simple way. Easily display any WordPress post as an event on a flexible front-end calendar. Supports any post type. 13 13 14 14 == Description == … … 89 89 90 90 == Changelog == 91 92 = 1.3.0.1 = 93 * Fix: Use multibyte safe function for limiting excerpt length to avoid breakages when multibyte characters are present. 91 94 92 95 = 1.3.0 =
Note: See TracChangeset
for help on using the changeset viewer.