Plugin Directory

Changeset 3374532


Ignore:
Timestamp:
10/07/2025 03:35:04 PM (6 months ago)
Author:
spellhammer
Message:

Update to version 1.3.0.1 from GitHub

Location:
pie-calendar
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pie-calendar/tags/1.3.0.1/includes/utils/General.php

    r3371799 r3374532  
    155155
    156156        if( strlen( $excerpt ) > $length ) {
    157             $excerpt = substr( $excerpt, 0, $length ) . '...';
     157            $excerpt = mb_substr( $excerpt, 0, $length ) . '...';
    158158        }
    159159
  • pie-calendar/tags/1.3.0.1/languages/piecal.pot

    r3371799 r3374532  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Pie Calendar 1.3.0\n"
     5"Project-Id-Version: Pie Calendar 1.3.0.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pie-calendar\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-10-01T13:47:17+00:00\n"
     12"POT-Creation-Date: 2025-10-07T14:59:43+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • pie-calendar/tags/1.3.0.1/plugin.php

    r3371799 r3374532  
    1010 * Plugin URI:        https://piecalendar.com
    1111 * 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
    1313 * Author:            Elijah Mills & Jonathan Jernigan
    1414 * Author URI:        https://piecalendar.com/about
     
    2626}
    2727
    28 define( 'PIECAL_VERSION', '1.3.0' );
     28define( 'PIECAL_VERSION', '1.3.0.1' );
    2929define( 'PIECAL_PATH', plugin_dir_url( __FILE__ ) );
    3030define( '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 ===
    22Contributors: apexws, spellhammer
    33Tags: events, calendar, event
     
    66Tested up to: 6.8.3
    77Requires PHP: 7.4
    8 Stable tag: 1.3.0
     8Stable tag: 1.3.0.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Easily display WordPress posts as events on a flexible front-end calendar. Supports any post type. Free and Pro versions
     12Events calendar - the simple way. Easily display any WordPress post as an event on a flexible front-end calendar. Supports any post type.
    1313
    1414== Description ==
     
    8989
    9090== 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.
    9194
    9295= 1.3.0 =
  • pie-calendar/trunk/includes/utils/General.php

    r3371799 r3374532  
    155155
    156156        if( strlen( $excerpt ) > $length ) {
    157             $excerpt = substr( $excerpt, 0, $length ) . '...';
     157            $excerpt = mb_substr( $excerpt, 0, $length ) . '...';
    158158        }
    159159
  • pie-calendar/trunk/languages/piecal.pot

    r3371799 r3374532  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Pie Calendar 1.3.0\n"
     5"Project-Id-Version: Pie Calendar 1.3.0.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pie-calendar\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-10-01T13:47:17+00:00\n"
     12"POT-Creation-Date: 2025-10-07T14:59:43+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • pie-calendar/trunk/plugin.php

    r3371799 r3374532  
    1010 * Plugin URI:        https://piecalendar.com
    1111 * 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
    1313 * Author:            Elijah Mills & Jonathan Jernigan
    1414 * Author URI:        https://piecalendar.com/about
     
    2626}
    2727
    28 define( 'PIECAL_VERSION', '1.3.0' );
     28define( 'PIECAL_VERSION', '1.3.0.1' );
    2929define( 'PIECAL_PATH', plugin_dir_url( __FILE__ ) );
    3030define( '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 ===
    22Contributors: apexws, spellhammer
    33Tags: events, calendar, event
     
    66Tested up to: 6.8.3
    77Requires PHP: 7.4
    8 Stable tag: 1.3.0
     8Stable tag: 1.3.0.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 Easily display WordPress posts as events on a flexible front-end calendar. Supports any post type. Free and Pro versions
     12Events calendar - the simple way. Easily display any WordPress post as an event on a flexible front-end calendar. Supports any post type.
    1313
    1414== Description ==
     
    8989
    9090== 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.
    9194
    9295= 1.3.0 =
Note: See TracChangeset for help on using the changeset viewer.