Plugin Directory

Changeset 496283


Ignore:
Timestamp:
01/27/2012 08:43:33 PM (14 years ago)
Author:
puzich
Message:

3.0.1

  • [FIX] small and fast fix to show floats in the right way.
Location:
lightview-plus/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lightview-plus/trunk/lightview-plus.php

    r496280 r496283  
    66Author: Puzich
    77Author URI: http://www.puzich.com
    8 Version: 3.0
     8Version: 3.0.1
    99Put in /wp-content/plugins/ of your Wordpress installation
    1010*/
     
    314314    // prints all lightview special options
    315315    function get_data_lightview_options() {
    316         $options  = sprintf('background: { color: \'%s\', opacity: %1.2f }, ', $this->get_option('lv_background_color'), $this->get_option('lv_background_opacity'));
     316        $options  = sprintf('background: { color: \'%s\', opacity: %1.2F }, ', $this->get_option('lv_background_color'), $this->get_option('lv_background_opacity'));
    317317        $options .= sprintf('skin: \'%s\', ', $this->get_option('lv_skin'));
    318         $options .= sprintf('border: { color: \'%s\', opacity: %1.2f, size: %d }, ', $this->get_option('lv_border_color'), $this->get_option('lv_border_opacity'), $this->get_option('lv_border_size'));
     318        $options .= sprintf('border: { color: \'%s\', opacity: %1.2F, size: %d }, ', $this->get_option('lv_border_color'), $this->get_option('lv_border_opacity'), $this->get_option('lv_border_size'));
    319319        $options .= sprintf('controls: \'%s\', ', $this->get_option('lv_controls_type'));
    320         $options .= sprintf('overlay: { background: \'%s\', opacity: %1.2f, close: true }, ', $this->get_option('lv_overlay_color'), $this->get_option('lv_overlay_opacity'));
     320        $options .= sprintf('overlay: { background: \'%s\', opacity: %1.2F, close: true }, ', $this->get_option('lv_overlay_color'), $this->get_option('lv_overlay_opacity'));
    321321        $options .= sprintf('radius: { size: %d, position: \'border\' }, ', $this->get_option('lv_radius_size'));
    322322       
    323323        if($this->get_option('lv_shadow')) {
    324             $options .= sprintf('shadow: { color: \'%s\', opacity: %1.2f, blur: %d }', $this->get_option('lv_shadow_color'), $this->get_option('lv_shadow_opacity'), $this->get_option('lv_shadow_blur'));
     324            $options .= sprintf('shadow: { color: \'%s\', opacity: %1.2F, blur: %d }', $this->get_option('lv_shadow_color'), $this->get_option('lv_shadow_opacity'), $this->get_option('lv_shadow_blur'));
    325325        } else {
    326326            $options .= 'shadow: false';
  • lightview-plus/trunk/readme.txt

    r496280 r496283  
    88Requires at least: 3.0
    99Tested up to: 3.3.1
    10 Stable tag: 3.0
     10Stable tag: 3.0.1
    1111
    1212Seamless integration of Lightview (similar to Lightbox, Thickbox, Floatbox, Thickbox, Fancybox) to create a nice overlay to display images and videos without the need to change html.
     
    3737
    3838== Changelog ==
     39
     40= 3.0.1 =
     41* [FIX] small and fast fix to show floats in the right way.
    3942
    4043= 3.0 =
Note: See TracChangeset for help on using the changeset viewer.