Plugin Directory

Changeset 225301


Ignore:
Timestamp:
04/04/2010 05:43:53 PM (16 years ago)
Author:
plpetitclerc
Message:
 
Location:
wp-prettyphoto
Files:
1 deleted
2 edited
8 copied

Legend:

Unmodified
Added
Removed
  • wp-prettyphoto/tags/1.6.1/readme.txt

    r186245 r225301  
    33Tags: prettyphoto, jquery, lightbox, gallery, ajax, pictures, flash, video, animation, movie, mov, swf, youtube, iframe, modal, images, quicktime
    44Requires at least: 2.7
    5 Tested up to: 2.8.9
    6 Stable tag: 1.6
     5Tested up to: 2.9.2
     6Stable tag: 1.6.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    4848
    4949== ChangeLog ==
     50
     51= Version 1.6.1 =
     52
     53* Fixed a small bug that made displaying the autoplay directive be valueless
     54
    5055
    5156= Version 1.6 =
  • wp-prettyphoto/tags/1.6.1/wp-prettyphoto.php

    r186245 r225301  
    44Plugin URI: http://blog.fusi0n.org/category/wp-prettyphoto
    55Description: prettyPhoto is a jQuery based lightbox clone. Not only does it support images, it also add support for videos, flash, YouTube, iFrame. It's a full blown media modal box. WP-prettyPhoto embeds those functionalities in WordPress.
    6 Version: 1.6
     6Version: 1.6.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    135135        echo "<!--\n";
    136136    foreach ($this->opts as $k=>$v) {
    137             echo "$k = ".get_option($k)."\n";
    138137            if (get_option($k) === false) { add_option($k, $this->opts[$k]['default']); }
    139138    }
     
    413412    $wppp_modal           = $this->wppp_modal == '1'? 'true' : 'false';
    414413    $wppp_picturecallback = $this->wppp_picturecallback;
    415         $wppp_wmode                     = $this->wppp_wmode;
    416         $wppp_autoplay              = $this->wppp_autoplay;
    417         $wppp_markup                    = $this->wppp_markup;
    418         $wppp_imarkup                   = $this->wppp_imarkup;
    419         $wppp_fmarkup                   = $this->wppp_fmarkup;
    420         $wppp_qmarkup                   = $this->wppp_qmarkup;
    421         $wppp_frmmarkup             = $this->wppp_frmmarkup;
    422         $wppp_inmarkup              = $this->wppp_inmarkup;
     414    $wppp_wmode       = $this->wppp_wmode;
     415    $wppp_autoplay    = $this->wppp_autoplay == '1'? 'true' : 'false';
     416    $wppp_markup      = $this->wppp_markup;
     417    $wppp_imarkup     = $this->wppp_imarkup;
     418    $wppp_fmarkup     = $this->wppp_fmarkup;
     419    $wppp_qmarkup     = $this->wppp_qmarkup;
     420    $wppp_frmmarkup   = $this->wppp_frmmarkup;
     421    $wppp_inmarkup    = $this->wppp_inmarkup;
    423422    $output = <<<EOHTML
    424423      <script type="text/javascript" charset="utf-8">
  • wp-prettyphoto/trunk/readme.txt

    r186245 r225301  
    33Tags: prettyphoto, jquery, lightbox, gallery, ajax, pictures, flash, video, animation, movie, mov, swf, youtube, iframe, modal, images, quicktime
    44Requires at least: 2.7
    5 Tested up to: 2.8.9
    6 Stable tag: 1.6
     5Tested up to: 2.9.2
     6Stable tag: 1.6.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    4848
    4949== ChangeLog ==
     50
     51= Version 1.6.1 =
     52
     53* Fixed a small bug that made displaying the autoplay directive be valueless
     54
    5055
    5156= Version 1.6 =
  • wp-prettyphoto/trunk/wp-prettyphoto.php

    r186245 r225301  
    44Plugin URI: http://blog.fusi0n.org/category/wp-prettyphoto
    55Description: prettyPhoto is a jQuery based lightbox clone. Not only does it support images, it also add support for videos, flash, YouTube, iFrame. It's a full blown media modal box. WP-prettyPhoto embeds those functionalities in WordPress.
    6 Version: 1.6
     6Version: 1.6.1
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    135135        echo "<!--\n";
    136136    foreach ($this->opts as $k=>$v) {
    137             echo "$k = ".get_option($k)."\n";
    138137            if (get_option($k) === false) { add_option($k, $this->opts[$k]['default']); }
    139138    }
     
    413412    $wppp_modal           = $this->wppp_modal == '1'? 'true' : 'false';
    414413    $wppp_picturecallback = $this->wppp_picturecallback;
    415         $wppp_wmode                     = $this->wppp_wmode;
    416         $wppp_autoplay              = $this->wppp_autoplay;
    417         $wppp_markup                    = $this->wppp_markup;
    418         $wppp_imarkup                   = $this->wppp_imarkup;
    419         $wppp_fmarkup                   = $this->wppp_fmarkup;
    420         $wppp_qmarkup                   = $this->wppp_qmarkup;
    421         $wppp_frmmarkup             = $this->wppp_frmmarkup;
    422         $wppp_inmarkup              = $this->wppp_inmarkup;
     414    $wppp_wmode       = $this->wppp_wmode;
     415    $wppp_autoplay    = $this->wppp_autoplay == '1'? 'true' : 'false';
     416    $wppp_markup      = $this->wppp_markup;
     417    $wppp_imarkup     = $this->wppp_imarkup;
     418    $wppp_fmarkup     = $this->wppp_fmarkup;
     419    $wppp_qmarkup     = $this->wppp_qmarkup;
     420    $wppp_frmmarkup   = $this->wppp_frmmarkup;
     421    $wppp_inmarkup    = $this->wppp_inmarkup;
    423422    $output = <<<EOHTML
    424423      <script type="text/javascript" charset="utf-8">
Note: See TracChangeset for help on using the changeset viewer.