Changeset 3419512
- Timestamp:
- 12/14/2025 06:39:02 PM (4 months ago)
- Location:
- pie-calendar
- Files:
-
- 18 edited
- 1 copied
-
tags/1.3.0.3 (copied) (copied from pie-calendar/trunk)
-
tags/1.3.0.3/includes/block.php (modified) (1 diff)
-
tags/1.3.0.3/includes/js/piecal.js (modified) (1 diff)
-
tags/1.3.0.3/includes/piecal-info-shortcode.php (modified) (2 diffs)
-
tags/1.3.0.3/includes/shortcode.php (modified) (2 diffs)
-
tags/1.3.0.3/includes/utils/Scripts.php (modified) (1 diff)
-
tags/1.3.0.3/includes/utils/Time.php (modified) (2 diffs)
-
tags/1.3.0.3/languages/piecal.pot (modified) (9 diffs)
-
tags/1.3.0.3/plugin.php (modified) (2 diffs)
-
tags/1.3.0.3/readme.txt (modified) (3 diffs)
-
trunk/includes/block.php (modified) (1 diff)
-
trunk/includes/js/piecal.js (modified) (1 diff)
-
trunk/includes/piecal-info-shortcode.php (modified) (2 diffs)
-
trunk/includes/shortcode.php (modified) (2 diffs)
-
trunk/includes/utils/Scripts.php (modified) (1 diff)
-
trunk/includes/utils/Time.php (modified) (2 diffs)
-
trunk/languages/piecal.pot (modified) (9 diffs)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pie-calendar/tags/1.3.0.3/includes/block.php
r3391964 r3419512 257 257 "type" => "listMonth", 258 258 "duration" => [ 259 "months" => isset( $_GET['duration'] ) ? intval( $_GET['duration'] ) : 2259 "months" => isset( $_GET['duration'] ) ? absint( $_GET['duration'] ) : 2 260 260 ], 261 261 "customProps" => [ -
pie-calendar/tags/1.3.0.3/includes/js/piecal.js
r3391964 r3419512 72 72 Alpine.store("calendarEngine").eventStart = info.event.start; 73 73 Alpine.store("calendarEngine").eventEnd = info.event.end; 74 Alpine.store("calendarEngine").eventDetails = info.event._def.extendedProps.details ;74 Alpine.store("calendarEngine").eventDetails = info.event._def.extendedProps.details ?? ''; 75 75 Alpine.store("calendarEngine").eventUrl = info.event._def.extendedProps.permalink; 76 76 Alpine.store("calendarEngine").eventAllDay = info.event.allDay; -
pie-calendar/tags/1.3.0.3/includes/piecal-info-shortcode.php
r3371799 r3419512 35 35 if( isset( $_GET['timezone'] ) && apply_filters('piecal_use_adaptive_timezones', false) ) { 36 36 /* Translators: This string is for displaying the viewer's time zone via the Pie Calendar Info shortcode */ 37 $timezone = __( 'Event times are listed in your local time zone: ', 'piecal' ) . $_GET['timezone'];37 $timezone = __( 'Event times are listed in your local time zone: ', 'piecal' ) . sanitize_text_field( $_GET['timezone'] ); 38 38 } 39 39 … … 100 100 <?php if( empty($allday) && $show_timezone === true && Piecal\Utils\General::foundInArray( ['timezone', 'all'], $atts['fragments'] ?? [] ) ) { ?> 101 101 <p class="piecal-info__timezone"> 102 <?php echo $timezone; ?>102 <?php echo esc_html($timezone); ?> 103 103 </p> 104 104 <?php } ?> -
pie-calendar/tags/1.3.0.3/includes/shortcode.php
r3391964 r3419512 141 141 } 142 142 143 $eventsArray = apply_filters('piecal_events_array_filter', $eventsArray, $rangeStart = null, $rangeEnd = null, $appendOffset); 143 $eventsArray = apply_filters('piecal_events_array_filter', $eventsArray, $rangeStart = null, $rangeEnd = null, $appendOffset, $atts); 144 145 $eventSources = [ 146 $eventsArray 147 ]; 148 149 $eventSources = apply_filters('piecal_event_sources', $eventSources, $rangeStart = null, $rangeEnd = null, $appendOffset, $atts); 144 150 145 151 $eventSources = [ … … 233 239 <script> 234 240 let piecalAJAX = { 235 ajaxURL: "<?php echo admin_url('admin-ajax.php'); ?>",241 ajaxURL: "<?php echo esc_url( admin_url('admin-ajax.php') ); ?>", 236 242 ajaxNonce: "<?php echo wp_create_nonce('piecal_ajax_nonce'); ?>" 237 243 } -
pie-calendar/tags/1.3.0.3/includes/utils/Scripts.php
r3351250 r3419512 82 82 83 83 wp_localize_script( 'piecal-utils', 'piecalVars', [ 84 'useAdaptiveTimezones' => $useAdaptiveTimezones 84 'useAdaptiveTimezones' => $useAdaptiveTimezones, 85 'siteTimezoneString' => wp_timezone_string(), 86 'siteGMTOffset' => piecal_site_gmt_offset() 85 87 ] ); 86 88 break; -
pie-calendar/tags/1.3.0.3/includes/utils/Time.php
r3174521 r3419512 112 112 // Helper function to get start date from pass-through (URL) or meta key depending on what's available. 113 113 public static function getStartDate() { 114 $timezoneObj = new DateTimeZone( $_GET['timezone'] ?? wp_timezone_string() ); 114 $tz_string = isset( $_GET['timezone'] ) ? sanitize_text_field( wp_unslash( $_GET['timezone'] ) ) : wp_timezone_string(); 115 116 if( in_array( $tz_string, timezone_identifiers_list(), true ) ) { 117 try { 118 $timezoneObj = new DateTimeZone( $tz_string ); 119 } catch( Exception $e ) { 120 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 121 } 122 } else { 123 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 124 } 125 115 126 $startDate = null; 116 127 … … 131 142 // Helper function to get end date from pass-through (URL) or meta key depending on what's available. 132 143 public static function getEndDate() { 133 $timezoneObj = new DateTimeZone( $_GET['timezone'] ?? wp_timezone_string() ); 144 $tz_string = isset( $_GET['timezone'] ) ? sanitize_text_field( wp_unslash( $_GET['timezone'] ) ) : wp_timezone_string(); 145 146 if( in_array( $tz_string, timezone_identifiers_list(), true ) ) { 147 try { 148 $timezoneObj = new DateTimeZone( $tz_string ); 149 } catch( Exception $e ) { 150 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 151 } 152 } else { 153 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 154 } 155 134 156 $endDate = null; 135 157 -
pie-calendar/tags/1.3.0.3/languages/piecal.pot
r3391964 r3419512 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Pie Calendar 1.3.0. 2\n"5 "Project-Id-Version: Pie Calendar 1.3.0.3\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-1 1-07T20:49:50+00:00\n"12 "POT-Creation-Date: 2025-12-14T17:32:03+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" … … 49 49 #. Translators: String for Month - Classic view in view picker dropdown. 50 50 #: includes/block.php:223 51 #: includes/shortcode.php:1 6451 #: includes/shortcode.php:170 52 52 msgid "Month - Classic" 53 53 msgstr "" … … 55 55 #. Translators: String for Month - List view in view picker dropdown. 56 56 #: includes/block.php:225 57 #: includes/shortcode.php:1 6657 #: includes/shortcode.php:172 58 58 msgid "Month - List" 59 59 msgstr "" … … 61 61 #. Translators: String for Week - Time Grid view in view picker dropdown. 62 62 #: includes/block.php:227 63 #: includes/shortcode.php:1 6863 #: includes/shortcode.php:174 64 64 msgid "Week - Time Grid" 65 65 msgstr "" … … 67 67 #. Translators: String for Week - List view in view picker dropdown. 68 68 #: includes/block.php:229 69 #: includes/shortcode.php:17 069 #: includes/shortcode.php:176 70 70 msgid "Week - List" 71 71 msgstr "" … … 78 78 #. Translators: String for Day - List view in view picker dropdown. 79 79 #: includes/block.php:233 80 #: includes/shortcode.php:1 7480 #: includes/shortcode.php:180 81 81 msgid "Day - List" 82 82 msgstr "" … … 134 134 #. Translators: This string is for displaying the viewer's time zone via the Pie Calendar Info shortcode 135 135 #: includes/piecal-info-shortcode.php:37 136 #: includes/shortcode.php:56 0136 #: includes/shortcode.php:566 137 137 msgid "Event times are listed in your local time zone: " 138 138 msgstr "" … … 166 166 167 167 #. Translators: String for Week - Day Grid view in view picker dropdown. 168 #: includes/shortcode.php:17 2168 #: includes/shortcode.php:178 169 169 msgid "Week - Day Grid" 170 170 msgstr "" 171 171 172 #: includes/shortcode.php:4 39172 #: includes/shortcode.php:445 173 173 msgid "Skip Calendar" 174 174 msgstr "" 175 175 176 #: includes/shortcode.php:45 1176 #: includes/shortcode.php:457 177 177 msgid "Back to full month view." 178 178 msgstr "" 179 179 180 #: includes/shortcode.php:45 3180 #: includes/shortcode.php:459 181 181 msgid "Back To Full Month" 182 182 msgstr "" 183 183 184 184 #. Translators: Label for calendar view chooser. 185 #: includes/shortcode.php:4 58185 #: includes/shortcode.php:464 186 186 msgid "Choose View" 187 187 msgstr "" 188 188 189 189 #. Translators: Label for close button in Pie Calendar popover. 190 #: includes/shortcode.php:50 0190 #: includes/shortcode.php:506 191 191 msgid "Close event details" 192 192 msgstr "" 193 193 194 194 #. Translators: Label for event start date in Pie Calendar popover. 195 #: includes/shortcode.php:51 3195 #: includes/shortcode.php:519 196 196 msgid "Starts" 197 197 msgstr "" 198 198 199 199 #. Translators: Label for event end date in Pie Calendar popover. 200 #: includes/shortcode.php:52 2200 #: includes/shortcode.php:528 201 201 msgid "Ends" 202 202 msgstr "" 203 203 204 204 #. Translators: Label for "View <Post Type>" in Pie Calendar popover. 205 #: includes/shortcode.php:54 1205 #: includes/shortcode.php:547 206 206 msgid "View " 207 207 msgstr "" -
pie-calendar/tags/1.3.0.3/plugin.php
r3391964 r3419512 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. 212 * Version: 1.3.0.3 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. 2' );28 define( 'PIECAL_VERSION', '1.3.0.3' ); 29 29 define( 'PIECAL_PATH', plugin_dir_url( __FILE__ ) ); 30 30 define( 'PIECAL_DIR', plugin_dir_path( __FILE__ ) ); -
pie-calendar/tags/1.3.0.3/readme.txt
r3391964 r3419512 1 === Events Calendar Made Simple - Pie Calendar===1 === Pie Calendar - Events Calendar Made Simple === 2 2 Contributors: apexws, spellhammer 3 3 Tags: events, calendar, event 4 4 Donate link: https://piecalendar.com 5 5 Requires at least: 5.9 6 Tested up to: 6. 8.36 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.3.0. 28 Stable tag: 1.3.0.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 14 14 == Description == 15 ** The Most Flexible Events Calendar Plugin for WordPress**15 **Create an event calendar in less than 4 minutes. Simple, flexible, and light-weight.** 16 16 17 17 Pie Calendar lets you effortlessly turn any post on your WordPress site into an event, making it visible on a user-friendly front-end calendar. It doesn't lock you into any post type - use the default WordPress posts or pages, or create your own Custom Post Type (CPT). … … 89 89 90 90 == Changelog == 91 92 = 1.3.0.3 = 93 * Tweak: Addressed a few minor issues turned up during a security review. 94 * Tweak: Changed readme to comply with .org requirements. 91 95 92 96 = 1.3.0.2 = -
pie-calendar/trunk/includes/block.php
r3391964 r3419512 257 257 "type" => "listMonth", 258 258 "duration" => [ 259 "months" => isset( $_GET['duration'] ) ? intval( $_GET['duration'] ) : 2259 "months" => isset( $_GET['duration'] ) ? absint( $_GET['duration'] ) : 2 260 260 ], 261 261 "customProps" => [ -
pie-calendar/trunk/includes/js/piecal.js
r3391964 r3419512 72 72 Alpine.store("calendarEngine").eventStart = info.event.start; 73 73 Alpine.store("calendarEngine").eventEnd = info.event.end; 74 Alpine.store("calendarEngine").eventDetails = info.event._def.extendedProps.details ;74 Alpine.store("calendarEngine").eventDetails = info.event._def.extendedProps.details ?? ''; 75 75 Alpine.store("calendarEngine").eventUrl = info.event._def.extendedProps.permalink; 76 76 Alpine.store("calendarEngine").eventAllDay = info.event.allDay; -
pie-calendar/trunk/includes/piecal-info-shortcode.php
r3371799 r3419512 35 35 if( isset( $_GET['timezone'] ) && apply_filters('piecal_use_adaptive_timezones', false) ) { 36 36 /* Translators: This string is for displaying the viewer's time zone via the Pie Calendar Info shortcode */ 37 $timezone = __( 'Event times are listed in your local time zone: ', 'piecal' ) . $_GET['timezone'];37 $timezone = __( 'Event times are listed in your local time zone: ', 'piecal' ) . sanitize_text_field( $_GET['timezone'] ); 38 38 } 39 39 … … 100 100 <?php if( empty($allday) && $show_timezone === true && Piecal\Utils\General::foundInArray( ['timezone', 'all'], $atts['fragments'] ?? [] ) ) { ?> 101 101 <p class="piecal-info__timezone"> 102 <?php echo $timezone; ?>102 <?php echo esc_html($timezone); ?> 103 103 </p> 104 104 <?php } ?> -
pie-calendar/trunk/includes/shortcode.php
r3391964 r3419512 141 141 } 142 142 143 $eventsArray = apply_filters('piecal_events_array_filter', $eventsArray, $rangeStart = null, $rangeEnd = null, $appendOffset); 143 $eventsArray = apply_filters('piecal_events_array_filter', $eventsArray, $rangeStart = null, $rangeEnd = null, $appendOffset, $atts); 144 145 $eventSources = [ 146 $eventsArray 147 ]; 148 149 $eventSources = apply_filters('piecal_event_sources', $eventSources, $rangeStart = null, $rangeEnd = null, $appendOffset, $atts); 144 150 145 151 $eventSources = [ … … 233 239 <script> 234 240 let piecalAJAX = { 235 ajaxURL: "<?php echo admin_url('admin-ajax.php'); ?>",241 ajaxURL: "<?php echo esc_url( admin_url('admin-ajax.php') ); ?>", 236 242 ajaxNonce: "<?php echo wp_create_nonce('piecal_ajax_nonce'); ?>" 237 243 } -
pie-calendar/trunk/includes/utils/Scripts.php
r3351250 r3419512 82 82 83 83 wp_localize_script( 'piecal-utils', 'piecalVars', [ 84 'useAdaptiveTimezones' => $useAdaptiveTimezones 84 'useAdaptiveTimezones' => $useAdaptiveTimezones, 85 'siteTimezoneString' => wp_timezone_string(), 86 'siteGMTOffset' => piecal_site_gmt_offset() 85 87 ] ); 86 88 break; -
pie-calendar/trunk/includes/utils/Time.php
r3174521 r3419512 112 112 // Helper function to get start date from pass-through (URL) or meta key depending on what's available. 113 113 public static function getStartDate() { 114 $timezoneObj = new DateTimeZone( $_GET['timezone'] ?? wp_timezone_string() ); 114 $tz_string = isset( $_GET['timezone'] ) ? sanitize_text_field( wp_unslash( $_GET['timezone'] ) ) : wp_timezone_string(); 115 116 if( in_array( $tz_string, timezone_identifiers_list(), true ) ) { 117 try { 118 $timezoneObj = new DateTimeZone( $tz_string ); 119 } catch( Exception $e ) { 120 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 121 } 122 } else { 123 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 124 } 125 115 126 $startDate = null; 116 127 … … 131 142 // Helper function to get end date from pass-through (URL) or meta key depending on what's available. 132 143 public static function getEndDate() { 133 $timezoneObj = new DateTimeZone( $_GET['timezone'] ?? wp_timezone_string() ); 144 $tz_string = isset( $_GET['timezone'] ) ? sanitize_text_field( wp_unslash( $_GET['timezone'] ) ) : wp_timezone_string(); 145 146 if( in_array( $tz_string, timezone_identifiers_list(), true ) ) { 147 try { 148 $timezoneObj = new DateTimeZone( $tz_string ); 149 } catch( Exception $e ) { 150 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 151 } 152 } else { 153 $timezoneObj = new DateTimeZone( wp_timezone_string() ?: 'UTC' ); 154 } 155 134 156 $endDate = null; 135 157 -
pie-calendar/trunk/languages/piecal.pot
r3391964 r3419512 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Pie Calendar 1.3.0. 2\n"5 "Project-Id-Version: Pie Calendar 1.3.0.3\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-1 1-07T20:49:50+00:00\n"12 "POT-Creation-Date: 2025-12-14T17:32:03+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" … … 49 49 #. Translators: String for Month - Classic view in view picker dropdown. 50 50 #: includes/block.php:223 51 #: includes/shortcode.php:1 6451 #: includes/shortcode.php:170 52 52 msgid "Month - Classic" 53 53 msgstr "" … … 55 55 #. Translators: String for Month - List view in view picker dropdown. 56 56 #: includes/block.php:225 57 #: includes/shortcode.php:1 6657 #: includes/shortcode.php:172 58 58 msgid "Month - List" 59 59 msgstr "" … … 61 61 #. Translators: String for Week - Time Grid view in view picker dropdown. 62 62 #: includes/block.php:227 63 #: includes/shortcode.php:1 6863 #: includes/shortcode.php:174 64 64 msgid "Week - Time Grid" 65 65 msgstr "" … … 67 67 #. Translators: String for Week - List view in view picker dropdown. 68 68 #: includes/block.php:229 69 #: includes/shortcode.php:17 069 #: includes/shortcode.php:176 70 70 msgid "Week - List" 71 71 msgstr "" … … 78 78 #. Translators: String for Day - List view in view picker dropdown. 79 79 #: includes/block.php:233 80 #: includes/shortcode.php:1 7480 #: includes/shortcode.php:180 81 81 msgid "Day - List" 82 82 msgstr "" … … 134 134 #. Translators: This string is for displaying the viewer's time zone via the Pie Calendar Info shortcode 135 135 #: includes/piecal-info-shortcode.php:37 136 #: includes/shortcode.php:56 0136 #: includes/shortcode.php:566 137 137 msgid "Event times are listed in your local time zone: " 138 138 msgstr "" … … 166 166 167 167 #. Translators: String for Week - Day Grid view in view picker dropdown. 168 #: includes/shortcode.php:17 2168 #: includes/shortcode.php:178 169 169 msgid "Week - Day Grid" 170 170 msgstr "" 171 171 172 #: includes/shortcode.php:4 39172 #: includes/shortcode.php:445 173 173 msgid "Skip Calendar" 174 174 msgstr "" 175 175 176 #: includes/shortcode.php:45 1176 #: includes/shortcode.php:457 177 177 msgid "Back to full month view." 178 178 msgstr "" 179 179 180 #: includes/shortcode.php:45 3180 #: includes/shortcode.php:459 181 181 msgid "Back To Full Month" 182 182 msgstr "" 183 183 184 184 #. Translators: Label for calendar view chooser. 185 #: includes/shortcode.php:4 58185 #: includes/shortcode.php:464 186 186 msgid "Choose View" 187 187 msgstr "" 188 188 189 189 #. Translators: Label for close button in Pie Calendar popover. 190 #: includes/shortcode.php:50 0190 #: includes/shortcode.php:506 191 191 msgid "Close event details" 192 192 msgstr "" 193 193 194 194 #. Translators: Label for event start date in Pie Calendar popover. 195 #: includes/shortcode.php:51 3195 #: includes/shortcode.php:519 196 196 msgid "Starts" 197 197 msgstr "" 198 198 199 199 #. Translators: Label for event end date in Pie Calendar popover. 200 #: includes/shortcode.php:52 2200 #: includes/shortcode.php:528 201 201 msgid "Ends" 202 202 msgstr "" 203 203 204 204 #. Translators: Label for "View <Post Type>" in Pie Calendar popover. 205 #: includes/shortcode.php:54 1205 #: includes/shortcode.php:547 206 206 msgid "View " 207 207 msgstr "" -
pie-calendar/trunk/plugin.php
r3391964 r3419512 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. 212 * Version: 1.3.0.3 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. 2' );28 define( 'PIECAL_VERSION', '1.3.0.3' ); 29 29 define( 'PIECAL_PATH', plugin_dir_url( __FILE__ ) ); 30 30 define( 'PIECAL_DIR', plugin_dir_path( __FILE__ ) ); -
pie-calendar/trunk/readme.txt
r3391964 r3419512 1 === Events Calendar Made Simple - Pie Calendar===1 === Pie Calendar - Events Calendar Made Simple === 2 2 Contributors: apexws, spellhammer 3 3 Tags: events, calendar, event 4 4 Donate link: https://piecalendar.com 5 5 Requires at least: 5.9 6 Tested up to: 6. 8.36 Tested up to: 6.9 7 7 Requires PHP: 7.4 8 Stable tag: 1.3.0. 28 Stable tag: 1.3.0.3 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 14 14 == Description == 15 ** The Most Flexible Events Calendar Plugin for WordPress**15 **Create an event calendar in less than 4 minutes. Simple, flexible, and light-weight.** 16 16 17 17 Pie Calendar lets you effortlessly turn any post on your WordPress site into an event, making it visible on a user-friendly front-end calendar. It doesn't lock you into any post type - use the default WordPress posts or pages, or create your own Custom Post Type (CPT). … … 89 89 90 90 == Changelog == 91 92 = 1.3.0.3 = 93 * Tweak: Addressed a few minor issues turned up during a security review. 94 * Tweak: Changed readme to comply with .org requirements. 91 95 92 96 = 1.3.0.2 =
Note: See TracChangeset
for help on using the changeset viewer.