Changeset 221871
- Timestamp:
- 03/26/2010 04:09:46 PM (16 years ago)
- Location:
- frontpage-slideshow/trunk
- Files:
-
- 2 edited
-
frontpage-slideshow.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontpage-slideshow/trunk/frontpage-slideshow.php
r221870 r221871 4 4 Plugin URI: http://www.modulaweb.fr/blog/wp-plugins/frontside-slideshow/en/ 5 5 Description: Frontpage Slideshow provides a slide show like you can see on <a href="http://linux.com">linux.com</a> or <a href="http://modulaweb.fr/">modulaweb.fr</a> front page. <a href="options-general.php?page=frontpage-slideshow">Configuration Page</a> 6 Version: 0.9. 16 Version: 0.9.2 7 7 Author: Jean-François VIAL 8 8 Author URI: http://www.modulaweb.fr/ … … 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 */ 26 define ('FRONTPAGE_SLIDESHOW_VERSION', '0.9. 1');26 define ('FRONTPAGE_SLIDESHOW_VERSION', '0.9.2'); 27 27 $fs_already_displayed = false; // the slideshow dont have been displayed yet 28 28 function frontpageSlideshow($content,$force_display=false,$options=array()) { … … 55 55 if ($image == '') { // if no image : use the first image on the post 56 56 $image = $fspost->post_content; 57 if (preg_match('/<img .*src="([^"]*)"/',$image,$matches)) {57 if (preg_match('/<img[^>]*src="([^"]*)"/i',$image,$matches)) { 58 58 $image = $matches[1]; 59 59 } else { -
frontpage-slideshow/trunk/readme.txt
r221869 r221871 82 82 * v 0.8 : Adding an admin zone to easily add or modify options for posts into the edit post page. + adding the complete shortcode under the preview + modifying the "How to use / Getting help section" + if no picture is available, display a default picture (a 1x1 transparent pixel GIF) 83 83 * v 0.9 : Port from PrototypeJS+ScriptAculoUs to jQuery ; Add ability to configure background-images of all elements and loader animation picture by simple drag-drop ; fixing default link bug ; fixing quick buttons bar show when image is has 100% width bug ; adding some way to load the image chooser on demand to allow people that have alot of images to not stand by all images to be loaded. 84 * v 0.9.1 : Some bugs corrected. 84 * v 0.9.1 : some improuvement and correcting svn files (js files were missing). 85 * v 0.9.2 : Improuve the way to find the URL of very first image of a post. 85 86 86 87 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.