Changeset 2607986
- Timestamp:
- 10/01/2021 05:52:04 PM (4 years ago)
- Location:
- no-bs-image-slider
- Files:
-
- 2 added
- 2 edited
- 4 copied
-
tags/1.7.1 (copied) (copied from no-bs-image-slider/trunk)
-
tags/1.7.1/changelog.txt (added)
-
tags/1.7.1/plugin.php (copied) (copied from no-bs-image-slider/trunk/plugin.php) (3 diffs)
-
tags/1.7.1/readme.txt (copied) (copied from no-bs-image-slider/trunk/readme.txt) (2 diffs)
-
tags/1.7.1/style.css (copied) (copied from no-bs-image-slider/trunk/style.css)
-
trunk/changelog.txt (added)
-
trunk/plugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
no-bs-image-slider/tags/1.7.1/plugin.php
r2597622 r2607986 5 5 Plugin URI: https://planetjon.ca/projects/no-bs-image-slider/ 6 6 Description: For displaying a light-weight image slider 7 Version: 1.7. 07 Version: 1.7.1 8 8 Requires at least: 4.7 9 9 Tested up to: 5.8.1 … … 15 15 */ 16 16 17 namespace planetjon\ no_bs_image_slider;17 namespace planetjon\wordpress\no_bs_image_slider; 18 18 19 19 use \WP_Widget, \WP_Post; … … 24 24 $sliderID = 'no-bs-image-slider-' . $id; 25 25 $sliderClass = 'no-bs-image-slider'; 26 $sliderName = $args['name'] ? ?'';27 $sliderDescription = $args['description'] ? ?'';26 $sliderName = $args['name'] ?: ''; 27 $sliderDescription = $args['description'] ?: ''; 28 28 $slideCount = count( $slides ); 29 29 $showCounter = filter_var( $args['showCounter'], FILTER_VALIDATE_BOOLEAN ); -
no-bs-image-slider/tags/1.7.1/readme.txt
r2597643 r2607986 6 6 Tested up to: 5.8.1 7 7 Requires PHP: 5.4 8 Stable tag: trunk9 License: GPL v2 or later8 Stable tag: 1.7.1 9 License: GPL2 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 … … 74 74 == Changelog == 75 75 76 + 1.7.1 = 77 * PHP 5.4 compatibility patch 78 76 79 = 1.7.0 = 77 80 * Images loaded eagerly be default. 78 81 * Image lazy loading parameter. 79 80 = 1.6.1 =81 Hotfix82 * CSS loading resolved83 * Widget show counter checkbox is correctly set84 85 = 1.6 =86 This release brings in some sorely desired features.87 * Support for captions.88 * Support for slide numbering.89 * Aria attributes for better accessibility.90 * Custom hooks for filtering slides and injecting additional CSS.91 * Resolves issue with first-time slider selection in widgets when only one slider has been created. -
no-bs-image-slider/trunk/plugin.php
r2597622 r2607986 5 5 Plugin URI: https://planetjon.ca/projects/no-bs-image-slider/ 6 6 Description: For displaying a light-weight image slider 7 Version: 1.7. 07 Version: 1.7.1 8 8 Requires at least: 4.7 9 9 Tested up to: 5.8.1 … … 15 15 */ 16 16 17 namespace planetjon\ no_bs_image_slider;17 namespace planetjon\wordpress\no_bs_image_slider; 18 18 19 19 use \WP_Widget, \WP_Post; … … 24 24 $sliderID = 'no-bs-image-slider-' . $id; 25 25 $sliderClass = 'no-bs-image-slider'; 26 $sliderName = $args['name'] ? ?'';27 $sliderDescription = $args['description'] ? ?'';26 $sliderName = $args['name'] ?: ''; 27 $sliderDescription = $args['description'] ?: ''; 28 28 $slideCount = count( $slides ); 29 29 $showCounter = filter_var( $args['showCounter'], FILTER_VALIDATE_BOOLEAN ); -
no-bs-image-slider/trunk/readme.txt
r2597643 r2607986 6 6 Tested up to: 5.8.1 7 7 Requires PHP: 5.4 8 Stable tag: trunk9 License: GPL v2 or later8 Stable tag: 1.7.1 9 License: GPL2 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 … … 74 74 == Changelog == 75 75 76 + 1.7.1 = 77 * PHP 5.4 compatibility patch 78 76 79 = 1.7.0 = 77 80 * Images loaded eagerly be default. 78 81 * Image lazy loading parameter. 79 80 = 1.6.1 =81 Hotfix82 * CSS loading resolved83 * Widget show counter checkbox is correctly set84 85 = 1.6 =86 This release brings in some sorely desired features.87 * Support for captions.88 * Support for slide numbering.89 * Aria attributes for better accessibility.90 * Custom hooks for filtering slides and injecting additional CSS.91 * Resolves issue with first-time slider selection in widgets when only one slider has been created.
Note: See TracChangeset
for help on using the changeset viewer.