Plugin Directory

Changeset 598933


Ignore:
Timestamp:
09/14/2012 11:02:46 AM (13 years ago)
Author:
QRtool
Message:

Performance update

Location:
wpqr-qr-code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpqr-qr-code/trunk/readme.txt

    r559822 r598933  
    44Tags: qr-code,qr-codes,generator,qr-code generator,qrcode,qr code,qrtool,widget,widgets,articles,posts,shortcode
    55Requires at least: 2.6
    6 Tested up to: 3.4.0
    7 Stable tag: 0.1.4
     6Tested up to: 3.4.2
     7Stable tag: 0.1.5
    88
    99QR-Code widget and shortcode in one QR-Code gernerator plugin. Use the QR-Code widget in your sidebars or generate QR-Codes in pages and articles by inserting [qr-code] right where you want your QR-Code to be displayed.
     
    25253. Sample output
    2626
     27== Changelog ==
     28
     29= 0.1.5 =
     30* Performance improvement
     31* Removed html comment
     32
     33= 0.1.4 =
     34* Added options for QR-Code color
     35* Clear fix in widget configuration
     36
     37== Upgrade Notice ==
     38
     39= 0.1.5 =
     40This version improves performance due to better caching of generated codes
     41
    2742== Installation ==
    2843
  • wpqr-qr-code/trunk/wpqr_qr-code-generator.php

    r559831 r598933  
    55Description: QR-Code widget and shortcode in one QR-Code gernerator plugin. Use the QR-Code widget in your sidebars or generate QR-Codes in pages and articles
    66Author: QRtool
    7 Version: 0.1.4
     7Version: 0.1.5
    88Author URI: http://qrtool.de
    99License: CC+
     
    171171 
    172172  $qr_code = '';
    173  
    174   $qr_code .= '<img'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>';
    175   $qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->';
     173  $qr_code .= '<a href="http://qrtool.de/qr-code-generator/" style="cursor:default;border:0;text-decoration:none;">';
     174  $qr_code .= '<img alt="qr code generator"'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>';
     175  $qr_code .= '</a>';
     176  //$qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->';
    176177   
    177178    return $qr_code;
     
    381382            echo  '<div'.$class_p.$style_p.'>';
    382383        $qr_code = '';
    383         $qr_code .= '<img'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>';
    384     $qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->';
     384        $qr_code .= '<a href="http://qrtool.de/qr-code-generator/" style="cursor:default;border:0;text-decoration:none;">';
     385        $qr_code .= '<img alt="qr code generator"'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>';
     386    $qr_code .= '</a>';
     387    //$qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->';
    385388       
    386389        echo $qr_code;
Note: See TracChangeset for help on using the changeset viewer.