Changeset 2607980
- Timestamp:
- 10/01/2021 05:35:28 PM (4 years ago)
- Location:
- also-in-this-series
- Files:
-
- 3 deleted
- 5 edited
- 14 copied
-
tags/1.7.6 (copied) (copied from also-in-this-series/trunk)
-
tags/1.7.6/admin-plugin.php (deleted)
-
tags/1.7.6/changelog.txt (copied) (copied from also-in-this-series/trunk/changelog.txt) (1 diff)
-
tags/1.7.6/languages (deleted)
-
tags/1.7.6/plugin-admin.php (copied) (copied from also-in-this-series/trunk/plugin-admin.php)
-
tags/1.7.6/plugin-core.php (copied) (copied from also-in-this-series/trunk/plugin-core.php) (1 diff)
-
tags/1.7.6/plugin-shortcodes.php (copied) (copied from also-in-this-series/trunk/plugin-shortcodes.php)
-
tags/1.7.6/plugin-taxonomies.php (copied) (copied from also-in-this-series/trunk/plugin-taxonomies.php)
-
tags/1.7.6/plugin-widgets.php (copied) (copied from also-in-this-series/trunk/plugin-widgets.php)
-
tags/1.7.6/plugin.php (copied) (copied from also-in-this-series/trunk/plugin.php) (1 diff)
-
tags/1.7.6/readme.txt (copied) (copied from also-in-this-series/trunk/readme.txt) (2 diffs)
-
tags/1.7.6/resources (deleted)
-
tags/1.7.6/views/admin/optionsfield-checkbox.php (copied) (copied from also-in-this-series/trunk/views/admin/optionsfield-checkbox.php)
-
tags/1.7.6/views/admin/settings.php (copied) (copied from also-in-this-series/trunk/views/admin/settings.php)
-
tags/1.7.6/views/admin/widget-form.php (copied) (copied from also-in-this-series/trunk/views/admin/widget-form.php) (1 diff)
-
tags/1.7.6/views/serieslisting.php (copied) (copied from also-in-this-series/trunk/views/serieslisting.php)
-
tags/1.7.6/views/widget-view.php (copied) (copied from also-in-this-series/trunk/views/widget-view.php)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/plugin-core.php (modified) (1 diff)
-
trunk/plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/views/admin/widget-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
also-in-this-series/tags/1.7.6/changelog.txt
r2528557 r2607980 1 = 1.7.3 = 2 * Resolved issue with series framing. 3 * Exposed more options to the widget interface. 4 5 = 1.7.1 = 6 * Significant updates to the codebase to facilitate future updates. 7 * Bulk/Inline Editor now updates correctly. 8 * Theme and Plugin template support. 9 * Plugin correctly flushes rewrite rules on activation to enable series archives. 10 * Other minor tweaks 11 1 12 = 1.4.1 = 2 13 * Added ability to create series in the post editor -
also-in-this-series/tags/1.7.6/plugin-core.php
r2597673 r2607980 37 37 'useframe' => [ 'filter' => FILTER_VALIDATE_BOOLEAN ], 38 38 'framewidth' => [ 'filter' => FILTER_VALIDATE_INT, 'options' => 39 [ ' default' => config( 'window-series-listing' ) ]39 [ 'min_range' => 1, 'default' => config( 'window-series-listing' ) ] 40 40 ], 41 41 'sortorder' => [ 'filter' => FILTER_VALIDATE_REGEXP, 'options' => -
also-in-this-series/tags/1.7.6/plugin.php
r2597673 r2607980 4 4 Plugin URI: https://planetjon.ca/projects/also-in-this-series/ 5 5 Description: Group related posts in a series with a custom Series taxonomy. and a list of all posts in the series in your content. 6 Version: 1.7. 56 Version: 1.7.6 7 7 Requires at least: 4.6 8 8 Requires PHP: 5.4 -
also-in-this-series/tags/1.7.6/readme.txt
r2597673 r2607980 6 6 Requires PHP: 5.4 7 7 Tested up to: 5.8.1 8 Stable tag: trunk8 Stable tag: 1.7.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 57 57 == Changelog == 58 58 59 = 1.7.3 = 60 * Resolved issue with series framing. 61 * Exposed more options to the widget interface. 62 63 = 1.7.1 = 64 * Significant updates to the codebase to facilitate future updates. 65 * Bulk/Inline Editor now updates correctly. 66 * Theme and Plugin template support. 67 * Plugin correctly flushes rewrite rules on activation to enable series archives. 68 * Other minor tweaks 59 = 1.7.6 = 60 * Compatibility patch for PHP 5.4 -
also-in-this-series/tags/1.7.6/views/admin/widget-form.php
r2529462 r2607980 27 27 value="<?php echo esc_attr( $framewidth ) ?>" 28 28 placeholder="Leave blank for default setting" 29 min="1" 29 30 /> 30 31 </p> -
also-in-this-series/trunk/changelog.txt
r2528557 r2607980 1 = 1.7.3 = 2 * Resolved issue with series framing. 3 * Exposed more options to the widget interface. 4 5 = 1.7.1 = 6 * Significant updates to the codebase to facilitate future updates. 7 * Bulk/Inline Editor now updates correctly. 8 * Theme and Plugin template support. 9 * Plugin correctly flushes rewrite rules on activation to enable series archives. 10 * Other minor tweaks 11 1 12 = 1.4.1 = 2 13 * Added ability to create series in the post editor -
also-in-this-series/trunk/plugin-core.php
r2597673 r2607980 37 37 'useframe' => [ 'filter' => FILTER_VALIDATE_BOOLEAN ], 38 38 'framewidth' => [ 'filter' => FILTER_VALIDATE_INT, 'options' => 39 [ ' default' => config( 'window-series-listing' ) ]39 [ 'min_range' => 1, 'default' => config( 'window-series-listing' ) ] 40 40 ], 41 41 'sortorder' => [ 'filter' => FILTER_VALIDATE_REGEXP, 'options' => -
also-in-this-series/trunk/plugin.php
r2597673 r2607980 4 4 Plugin URI: https://planetjon.ca/projects/also-in-this-series/ 5 5 Description: Group related posts in a series with a custom Series taxonomy. and a list of all posts in the series in your content. 6 Version: 1.7. 56 Version: 1.7.6 7 7 Requires at least: 4.6 8 8 Requires PHP: 5.4 -
also-in-this-series/trunk/readme.txt
r2597673 r2607980 6 6 Requires PHP: 5.4 7 7 Tested up to: 5.8.1 8 Stable tag: trunk8 Stable tag: 1.7.6 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 57 57 == Changelog == 58 58 59 = 1.7.3 = 60 * Resolved issue with series framing. 61 * Exposed more options to the widget interface. 62 63 = 1.7.1 = 64 * Significant updates to the codebase to facilitate future updates. 65 * Bulk/Inline Editor now updates correctly. 66 * Theme and Plugin template support. 67 * Plugin correctly flushes rewrite rules on activation to enable series archives. 68 * Other minor tweaks 59 = 1.7.6 = 60 * Compatibility patch for PHP 5.4 -
also-in-this-series/trunk/views/admin/widget-form.php
r2529462 r2607980 27 27 value="<?php echo esc_attr( $framewidth ) ?>" 28 28 placeholder="Leave blank for default setting" 29 min="1" 29 30 /> 30 31 </p>
Note: See TracChangeset
for help on using the changeset viewer.