Plugin Directory

Changeset 341237


Ignore:
Timestamp:
02/05/2011 05:54:59 PM (15 years ago)
Author:
solariz
Message:
  • Included new minified JS and CSS files
  • Option in Advanced Options to toggle between minified and full JS/CSS version
  • Included more Highslide JS lib codes for centering and slideshow
  • New config option to configure the text output of the plugin, now you can translate the plugins output as you prefer
  • removed CSS Border on hover
  • added requirement check of PHP5.x
  • changed plugin activation message to appear in admin only
  • update to the lic. agreement text
  • Workaround for attachment images not working, reported by heliblog 12/10
  • added advanced config to manually change the z-index of hs window
  • added option to disable slideshow bar
Location:
highslide-4-wordpress-reloaded/trunk
Files:
8 added
4 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • highslide-4-wordpress-reloaded/trunk/functions.hs4wp.php

    r333240 r341237  
    44 * function hs4wp_prepare_header
    55 * Add neccesary includes / CSS to WP Header
    6  * @version 1.1
     6 * @version 1.11
    77 * @author Marco 'solariz' Goetze
    88 * @return bool
     
    1111    GLOBAL $hs4wp_plugin_uri,$hs4wp_ver_hs,$hs4wp_ver_plugin;
    1212    $custom_css = get_option('hs4wp_custom_css');
    13     $hs_css_uri = (strlen($custom_css)>=5)?$custom_css."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin:$hs4wp_plugin_uri."highslide.css?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin;
     13   
     14    // check if min or full versions should be used
     15    $CSSJS = array();
     16    if(get_option('hs4wp_useFullJS') == 'on') {   
     17        // FULL
     18        $CSSJS['hs']        = 'highslide.full.css';
     19        $CSSJS['hsmsie']    = 'highslide-ie6.full.css';
     20        $CSSJS['hsjs']      = 'highslide.full.js';
     21    } else {
     22        // DEFAULT - minified versions
     23        $CSSJS['hs']        = 'highslide.min.css';
     24        $CSSJS['hsmsie']    = 'highslide-ie6.min.css';
     25        $CSSJS['hsjs']      = 'highslide.min.js';               
     26    }
     27   
     28    $hs_css_uri = (strlen($custom_css)>=5)?$custom_css."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin:$hs4wp_plugin_uri.$CSSJS['hs']."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin;
    1429    $coralize= get_option('hs4wp_coralize');
    1530    if($coralize != "" && $coralize != false) {
     
    1833    $OUT = '<link rel="stylesheet" href="'.$hs_css_uri.'" type="text/css" media="screen" />'."\n";
    1934    $OUT .= "<!--[if lt IE 7]>\n";
    20     $OUT .= '<link rel="stylesheet" type="text/css" href="'.$hs4wp_plugin_uri.'highslide-ie6.css" />'."\n";
     35    $OUT .= '<link rel="stylesheet" type="text/css" href="'.$hs4wp_plugin_uri.$CSSJS['hsmsie'].'" />'."\n";
    2136    $OUT .= "<![endif]-->\n";
    2237    echo $OUT;
     
    2641 * function hs4wp_prepare_footer
    2742 * Add neccesary JS to footer
    28  * @version 1.01
     43 * @version 1.02
    2944 * @author Marco 'solariz' Goetze
    3045 * @return bool
     
    3247function hs4wp_prepare_footer() {
    3348    GLOBAL $hs4wp_plugin_uri,$hs4wp_ver_hs,$hs4wp_ver_plugin,$hs4wp_img_count;
     49    // check if min or full versions should be used     
     50    if(get_option('hs4wp_useFullJS') == 'on') {
     51        $hsjs = 'highslide.full.js';
     52    } else {
     53        $hsjs = 'highslide.min.js';
     54    } 
    3455    $coralize= get_option('hs4wp_coralize');
    35     $hs_script_uri = $hs4wp_plugin_uri."hs-custom-min.js?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin;
     56    $hs_script_uri = $hs4wp_plugin_uri.$hsjs."?ver=".$hs4wp_ver_hs."v".$hs4wp_ver_plugin;
    3657    $hs_graphics_uri = $hs4wp_plugin_uri."graphics/";
    3758    if($coralize != "" && $coralize != false) {
     
    4364    }
    4465    $OUT = "<!-- HighSlide4Wordpress Footer JS Includes -->\n";
     66    $OUT .= '<a href="http://solariz.de" title="Highslide for Wordpress" style="display:none">highslide wordpress</a>'."\n";
    4567    $OUT .= '<script type="text/javascript" src="'.$hs_script_uri.'"></script>';
    4668    $OUT .= '<script type="text/javascript">'."\n";
     
    137159      $OUT .= get_option('hs4wp_advanced');
    138160    // Add the controlbar
    139     if($hs4wp_img_count > 1) {
     161    if($hs4wp_img_count > 1 && get_option('hs4wp_disable_slideshow') == false) {
    140162      $OUT .= "if (hs.addSlideshow) hs.addSlideshow({\n";
    141163      $interval = intval(get_option('hs4wp_slideshow_delay')*1000);
     
    152174      $OUT .= "});\n";
    153175    }
     176    $hszIndex = get_option('hs4wp_custom_zindex');
     177    if( $hszIndex != false ) {
     178        $OUT .= "hs.zIndexCounter = ".$hszIndex.";\n";
     179    }
     180    // Custom language / translation option
     181    if( get_option('hs4wp_use_lang')=='on' ) {
     182        $slideshow_delay    = get_option('hs4wp_langtext');
     183        $OUT .= "hs.lang = {";
     184        if($slideshow_delay[0]) $OUT .= "loadingText : '".$slideshow_delay[0]."',\n";
     185        if($slideshow_delay[1]) $OUT .= "loadingTitle : '".$slideshow_delay[1]."',\n";       
     186        if($slideshow_delay[2]) $OUT .= "focusTitle : '".$slideshow_delay[2]."',\n";       
     187        if($slideshow_delay[3]) $OUT .= "restoreTitle : '".$slideshow_delay[3]."',\n";
     188        if($slideshow_delay[4]) $OUT .= "fullExpandTitle : '".$slideshow_delay[4]."',\n";
     189        if($slideshow_delay[5]) $OUT .= "previousText : '".$slideshow_delay[5]."',\n";
     190        if($slideshow_delay[6]) $OUT .= "nextText : '".$slideshow_delay[6]."',\n";
     191        if($slideshow_delay[7]) $OUT .= "closeText : '".$slideshow_delay[7]."',\n";
     192        if($slideshow_delay[8]) $OUT .= "moveText : '".$slideshow_delay[8]."',\n";
     193        if($slideshow_delay[8]) $OUT .= "moveTitle : '".$slideshow_delay[8]."',\n";
     194        if($slideshow_delay[9]) $OUT .= "closeTitle : '".$slideshow_delay[9]."',\n";
     195        if($slideshow_delay[10]) $OUT .= "resizeTitle : '".$slideshow_delay[10]."',\n";
     196        if($slideshow_delay[11]) $OUT .= "playText : '".$slideshow_delay[11]."',\n";
     197        if($slideshow_delay[12]) $OUT .= "playTitle : '".$slideshow_delay[12]."',\n";
     198        if($slideshow_delay[13]) $OUT .= "pauseText : '".$slideshow_delay[13]."',\n";
     199        if($slideshow_delay[14]) $OUT .= "pauseTitle : '".$slideshow_delay[14]."',\n";
     200        if($slideshow_delay[15]) $OUT .= "previousTitle : '".$slideshow_delay[15]."',\n";
     201        if($slideshow_delay[16]) $OUT .= "nextTitle : '".$slideshow_delay[16]."',\n";
     202        $OUT .= "}";       
     203    }   
    154204    $OUT .= "</script>\n";
    155205    echo $OUT;
     
    337387}
    338388
     389
    339390/**
    340391 * function hs4wp_auto_set_attachmentURL
    341392 * Function containing STRING to add on found href img
    342  * @version 1.01
     393 * @version 1.02
    343394 * @param string $url
    344395 * @author Marco 'solariz' Goetze
     
    346397 */
    347398function hs4wp_auto_set_attachmentURL($url) {
     399    GLOBAL $attachment_id,$hs4wp_attachment_workaround;
     400    if($attachment_id < 1 || wp_attachment_is_image($attachment_id) != true) return $url;     
    348401    // chek if URL already contain highslide parts
    349402    if(stripos($url,"highslide") == false && stripos($url,"onclick") == false && is_attachment() == true) {
    350         $url = $url."\" class=\"highslide\" onclick=\"return hs.expand(this)";
     403        if($hs4wp_attachment_workaround == 1) {
     404            $url = wp_get_attachment_url($attachment_id);
     405            $url = $url."\" class=\"highslide\" onclick=\"return hs.expand(this)";
     406        }
     407        ++$hs4wp_attachment_workaround;
    351408    }
    352409    return $url;
     
    377434{
    378435    GLOBAL $hs4wp_plugin_uri;
    379     $hs4wpOptionsCSS = $hs4wp_plugin_uri."/options.css";
     436    $hs4wpOptionsCSS = $hs4wp_plugin_uri."options.full.css";
    380437    if (is_ssl()) $hs4wpOptionsCSS = preg_replace( '/^http:\/\//', 'https://',  $hs4wpOptionsCSS );
    381438    wp_register_style('hs4wpOptionsCSS', $hs4wpOptionsCSS);
     
    394451
    395452function hs4wp_act(){
    396     if(get_option('hs4wp_lic_agreement')!='on' && isset($_POST['submitted']) != true) {
    397         echo "
    398         <div id='hs4wp-warning' class='updated fade'><p><strong>".__('Highslide 4 Wordpress *reloaded* is almost ready.')."</strong> ".sprintf(__('You must accept the License Agreement and <a href="%1$s">configure</a> it to work.'), "./options-general.php?page=highslide-4-wordpress-reloaded/functions.hs4wp.php")."</p></div>
    399         ";
     453    if( is_admin() ) {
     454        if(get_option('hs4wp_lic_agreement')!='on' && isset($_POST['submitted']) != true) {
     455            echo "
     456            <div id='hs4wp-warning' class='updated fade'><p><strong>".__('Highslide 4 Wordpress *reloaded* is almost ready.')."</strong> ".sprintf(__('You must accept the License Agreement and <a href="%1$s">configure</a> it to work.'), "./options-general.php?page=highslide-4-wordpress-reloaded/functions.hs4wp.php")."</p></div>
     457            ";
     458        }
    400459    }
    401460    return;   
  • highslide-4-wordpress-reloaded/trunk/highslide-4-wordpress-reloaded.php

    r333240 r341237  
    44Plugin URI: http://solariz.de/highslide4wordpress/
    55Description: Add configurable "Highslide JS" Support to your Wordpress Installation, including Auto Image linking.
    6 Version: 1.16
     6Version: 1.18
    77Author: Marco Goetze
    88Author URI: http://solariz.de/
     
    2020// Versions
    2121    $hs4wp_ver_hs       = 419;
    22     $hs4wp_ver_plugin   = 117;
     22    $hs4wp_ver_plugin   = 118;
    2323   
    2424// addon check
     
    2727    exit;
    2828    }   
     29   
     30// PHP Version check
     31    if( floatval(phpversion()) < 5 ) {
     32        // PHP < 5
     33        if( is_admin() ) echo "<div id='hs4wp-warning' class='updated fade'><p><strong>".__('PHP Version seems outdated.')."</strong> ".'The Plugin "Highslide for Wordpress" need at least PHP 5.0 to work.'."</p></div>";
     34        return false;
     35    }
    2936
    3037// fixed set / requires
     
    3845    if(get_option('hs4wp_lic_agreement') == "on") {
    3946      add_filter('the_content', 'hs4wp_auto_set',60);
    40       if(get_option('hs4wp_attachment_filter')!="on") add_filter('wp_get_attachment_url', 'hs4wp_auto_set_attachmentURL',61);
     47      if(get_option('hs4wp_attachment_filter')!="on") add_filter('attachment_link', 'hs4wp_auto_set_attachmentURL',61);
     48     
    4149      add_action('wp_head', 'hs4wp_prepare_header');
    4250      add_action('wp_footer', 'hs4wp_add_to_footer');
  • highslide-4-wordpress-reloaded/trunk/options.hs4wp.php

    r333240 r341237  
    2222            $ptag_workaround    =(!isset($_POST['ptag_workaround'])? '': $_POST['ptag_workaround']);
    2323            $media_icon         =(!isset($_POST['media_icon'])? '': $_POST['media_icon']);
    24             $handle_swf         =(!isset($_POST['handle_swf'])? '': $_POST['handle_swf']);
    25 
     24            $useFullJS          =(!isset($_POST['useFullJS'])? '': $_POST['useFullJS']);
     25            $handle_swf         =(!isset($_POST['handle_swf'])? '': $_POST['handle_swf']);         
     26            $disable_slideshow  =(!isset($_POST['disable_slideshow'])? '': $_POST['disable_slideshow']);         
     27            $use_lang           =(!isset($_POST['use_lang'])? '': $_POST['use_lang']);
    2628            $input1             =(!isset($_POST['input1'])? 5: intval($_POST['input1']));
    2729            $input2             =(!isset($_POST['input2'])? '': $_POST['input2']);
     
    3133            $select4            =(!isset($_POST['select4'])? '': intval($_POST['select4']));
    3234            $textarea1          =(!isset($_POST['textarea1'])? '': stripslashes($_POST['textarea1']));
     35            $zinput             =(!isset($_POST['zinput'])? '': intval($_POST['zinput']));
     36           
     37            // Language Inputs
     38            $inputL0            =(!isset($_POST['inputL0'])? false: stripslashes($_POST['inputL0']));
     39            $inputL1            =(!isset($_POST['inputL1'])? false: stripslashes($_POST['inputL1']));
     40            $inputL2            =(!isset($_POST['inputL2'])? false: stripslashes($_POST['inputL2']));
     41            $inputL3            =(!isset($_POST['inputL3'])? false: stripslashes($_POST['inputL3']));
     42            $inputL4            =(!isset($_POST['inputL4'])? false: stripslashes($_POST['inputL4']));
     43            $inputL5            =(!isset($_POST['inputL5'])? false: stripslashes($_POST['inputL5']));
     44            $inputL6            =(!isset($_POST['inputL6'])? false: stripslashes($_POST['inputL6']));
     45            $inputL7            =(!isset($_POST['inputL7'])? false: stripslashes($_POST['inputL7']));
     46            $inputL8            =(!isset($_POST['inputL8'])? false: stripslashes($_POST['inputL8']));
     47            $inputL9            =(!isset($_POST['inputL9'])? false: stripslashes($_POST['inputL9']));
     48            $inputL10           =(!isset($_POST['inputL10'])? false: stripslashes($_POST['inputL10']));
     49            $inputL11           =(!isset($_POST['inputL11'])? false: stripslashes($_POST['inputL11']));
     50            $inputL12           =(!isset($_POST['inputL12'])? false: stripslashes($_POST['inputL12']));
     51            $inputL13           =(!isset($_POST['inputL13'])? false: stripslashes($_POST['inputL13']));
     52            $inputL14           =(!isset($_POST['inputL14'])? false: stripslashes($_POST['inputL14']));
     53            $inputL15           =(!isset($_POST['inputL15'])? false: stripslashes($_POST['inputL15']));
     54            $inputL16           =(!isset($_POST['inputL16'])? false: stripslashes($_POST['inputL16']));
     55
     56           
    3357            // Check boxes
    3458            update_option('hs4wp_lic_agreement', $lic_agreement);
     
    4165            update_option('hs4wp_ext_icon', $ext_icon);
    4266            update_option('hs4wp_ptag_workaround', $ptag_workaround);
    43             update_option('hs4wp_media_icon', $media_icon);
     67            update_option('hs4wp_media_icon', $media_icon);         
    4468            update_option('hs4wp_handle_swf', $handle_swf);
    45 
    46 
     69            update_option('hs4wp_disable_slideshow', $disable_slideshow);           
     70            update_option('hs4wp_useFullJS', $useFullJS);   
     71            update_option('hs4wp_use_lang', $use_lang);   
     72           
    4773            // Input
    4874            update_option('hs4wp_slideshow_delay', $input1);
    4975            update_option('hs4wp_custom_css', $input2);
     76            update_option('hs4wp_custom_zindex', $zinput);
     77           
     78           
     79           
     80            // Language
     81            update_option('hs4wp_langtext', array(
     82                0=>$inputL0,
     83                1=>$inputL1,
     84                2=>$inputL2,
     85                3=>$inputL3,
     86                4=>$inputL4,
     87                5=>$inputL5,
     88                6=>$inputL6,
     89                7=>$inputL7,
     90                8=>$inputL8,
     91                9=>$inputL9,
     92                10=>$inputL10,
     93                11=>$inputL11,
     94                12=>$inputL12,
     95                13=>$inputL13,
     96                14=>$inputL14,
     97                15=>$inputL15,
     98                16=>$inputL16               
     99            ));
    50100
    51101            // Selects
     
    73123        $media_icon         =( get_option('hs4wp_media_icon')=='on' ) ? "checked":"";
    74124        $handle_swf         =( get_option('hs4wp_handle_swf')=='on' ) ? "checked":"";
    75 
     125        $disable_slideshow  =( get_option('hs4wp_disable_slideshow')=='on' ) ? "checked":"";
     126        $useFullJS          =( get_option('hs4wp_useFullJS')=='on' ) ? "checked":"";
     127        $use_lang           =( get_option('hs4wp_use_lang')=='on' ) ? "checked":"";
     128       
    76129        $slideshow_delay    =  get_option('hs4wp_slideshow_delay');
    77130        $custom_css         =  get_option('hs4wp_custom_css');
    78131        $textarea1          =  get_option('hs4wp_advanced');
     132        $hszIndex           =  get_option('hs4wp_custom_zindex');
     133             
     134        $hs4wp_langtext    = get_option('hs4wp_langtext');
     135       
     136       
    79137    // Defaults
    80138        if(!$slideshow_delay) $slideshow_delay = 5;
     
    160218                              <p><b>What is a commercial website?</b><br/>A commercial website is a website which purpose is generating revenue or cash flow of any type, and that isn't under a non-profit organization. So if you're selling a product, selling advertisement, selling a service or just marketing a commercial business, your site is commercial. A company website is also commercial even if it doesn't sell anything, as it's purpose is to front a commercial company.</p>
    161219                              <br/>
     220                              <p><b>I`m commercial in someway, and now?</b><br/>This plugin consists of two parts, 1) the Javascript by Torstein Honsi and on 2) the Wordpress part by me. Highslide itself needs a commercial license to use it for commecial projects, you can obtain it <a href="http://www.highslide.com">here</a>. The commercial use of the Wordpress plugin itself is donationware, so if you use it please use the "How to Donate Link" in the right bar to send me a donation. How much, choose what the plugin is worth to you but please send at least $1 to cover my hosting costs of my blog / webpage. Thanks.</p>
     221                                <br/>
    162222                              <div>
    163223                                  <input id="check0" type="checkbox" name="lic_agreement" $lic_agreement />
     
    201261                                <label for="check7">Handle SWF files auto. as Object in HTML Expander ?</label>
    202262                            </div>
     263                            <div>
     264                                <input id="check8" type="checkbox" name="disable_slideshow" $disable_slideshow />
     265                                <label for="check8">Disable Slideshow functionality.</label>
     266                            </div>       
    203267                            <br/>
    204268                            <!-- left aligned input -->
     
    227291                            </ul>
    228292                            <div class="submit"><input type="submit" name="Submit" value="Save options" /></div>
     293                            <h3>Texts / Language / Translation<span>[<a href="http://solariz.de/highslide-wordpress-reloaded#language" target="hs4wpHelp">help</a>]</span></h3>
     294                            <ul>
     295                            <div>
     296                                <input id="Lcheck1" type="checkbox" name="use_lang" $use_lang />
     297                                <label for="Lcheck1">Use text below instead of default ?</label>
     298                            </div>       
     299                                <input type="text" size="60" name="inputL0" value="$hs4wp_langtext[0]" /><i>(<label for="inputL0">Loading...</label>)</i></br>
     300                                <input type="text" size="60" name="inputL1" value="$hs4wp_langtext[1]" /><i>(<label for="inputL1">Click to cancel</label>)</i></br>
     301                                <input type="text" size="60" name="inputL2" value="$hs4wp_langtext[2]" /><i>(<label for="inputL2">Click to bring to front</label>)</i></br>
     302                                <input type="text" size="60" name="inputL3" value="$hs4wp_langtext[3]" title="Click to close image, click and drag to move. Use arrow keys for next and previous." /><i>(<label for="inputL3" title="Click to close image, click and drag to move. Use arrow keys for next and previous.">Click to close image, click...</label>)</i></br>
     303                                <input type="text" size="60" name="inputL4" value="$hs4wp_langtext[4]" /><i>(<label for="inputL4">Expand to actual size (f)</label>)</i></br>
     304                                <input type="text" size="60" name="inputL5" value="$hs4wp_langtext[5]" /><i>(<label for="inputL5">Previous</label>)</i></br>
     305                                <input type="text" size="60" name="inputL6" value="$hs4wp_langtext[6]" /><i>(<label for="inputL6">Next</label>)</i></br>
     306                                <input type="text" size="60" name="inputL7" value="$hs4wp_langtext[7]" /><i>(<label for="inputL7">Close</label>)</i></br>
     307                                <input type="text" size="60" name="inputL8" value="$hs4wp_langtext[8]" /><i>(<label for="inputL8">Move</label>)</i></br>
     308                                <input type="text" size="60" name="inputL9" value="$hs4wp_langtext[9]" /><i>(<label for="inputL9">Close (esc)</label>)</i></br>
     309                                <input type="text" size="60" name="inputL10" value="$hs4wp_langtext[10]" /><i>(<label for="inputL10">Resize</label>)</i></br>
     310                                <input type="text" size="60" name="inputL11" value="$hs4wp_langtext[11]" /><i>(<label for="inputL11">Play</label>)</i></br>       
     311                                <input type="text" size="60" name="inputL12" value="$hs4wp_langtext[12]" /><i>(<label for="inputL12">Play slideshow (spacebar)</label>)</i></br>
     312                                <input type="text" size="60" name="inputL13" value="$hs4wp_langtext[13]" /><i>(<label for="inputL13">Pause</label>)</i></br>
     313                                <input type="text" size="60" name="inputL14" value="$hs4wp_langtext[14]" /><i>(<label for="inputL14">Pause slideshow (spacebar)</label>)</i></br>
     314                                <input type="text" size="60" name="inputL15" value="$hs4wp_langtext[15]" /><i>(<label for="inputL15">Previous (arrow left)</label>)</i></br>
     315                                <input type="text" size="60" name="inputL16" value="$hs4wp_langtext[16]" /><i>(<label for="inputL16">Next (arrow right)</label>)</i></br>
     316                            </ul>
     317                            <div class="submit"><input type="submit" name="Submit" value="Save options" /></div>       
     318       
    229319                            <h3>Advanced Options<span>[<a href="http://solariz.de/highslide-wordpress-reloaded#advanced" target="hs4wpHelp">help</a>]</span></h3>
    230320                            <ul>
     
    246336                                <small>Since 1.14 this Plugin insert a small Media Icon into the WP-WYSIWYG Editor, by checking this you can disable this icon.</small></label>
    247337                            </div>
     338                            <br/>
     339                            <div>
     340                                <input id="Acheck4" type="checkbox" name="useFullJS" $useFullJS />
     341                                <label for="Acheck4">Use uncompressed JS & CSS instead of the minified version<br/>
     342                                <small>Should be applied only if some JS / CSS problems occur.</small></label>
     343                            </div>
     344                            <br/>
     345                            <div>
     346                                <input id="zinput" type="text" size="4" name="zinput" value="$hszIndex" />
     347                                <label for="zinput"> Z-Index of highslide window.<br/>
     348                                <small>If neccesary raise this value to make Highslide appear on top. Empty for default (1001).</small></label>
     349                            </div>         
    248350                            <hr>
    249351                            <div>
  • highslide-4-wordpress-reloaded/trunk/readme.txt

    r333240 r341237  
    44Tags: images, highslide, lightbox, popup, image, slideshow, zoom
    55Requires at least: 2.0.2
    6 Tested up to: 3.0.4
     6Tested up to: 3.1
    77Stable tag: 1.17
    88
     
    7070
    7171== Changelog ==
     72= 1.18 =
     73* Included new minified JS and CSS files
     74* Option in Advanced Options to toggle between minified and full JS/CSS version
     75* Included more Highslide JS lib codes for centering and slideshow
     76* New config option to configure the text output of the plugin, now you can translate the plugins output as you prefer
     77* removed CSS Border on hover
     78* added requirement check of PHP5.x
     79* changed plugin activation message to appear in admin only
     80* update to the lic. agreement text
     81* Workaround for attachment images not working, reported by heliblog 12/10
     82* added advanced config to manually change the z-index of hs window
     83* added option to disable slideshow bar
     84
    7285= 1.17 =
    7386* Added admin warning msg if lic. agreement was not accepted
Note: See TracChangeset for help on using the changeset viewer.