Plugin Directory

Changeset 164068


Ignore:
Timestamp:
10/16/2009 05:35:50 PM (16 years ago)
Author:
reaperhulk
Message:

1.3.4 release

Location:
fidgetr
Files:
1 deleted
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • fidgetr/tags/1.3.4/fidgetr.php

    r146988 r164068  
    44    Plugin URI: http://langui.sh/fidgetr
    55    Description: A themeable Flickr widget that can fetch pictures and comments and style them in a myriad of attractive ways.
    6     Version: 1.3.3
     6    Version: 1.3.4
    77    Author: Paul Kehrer
    88    Author URI: http://langui.sh/
     
    1515require_once("flickrApi.class.php");
    1616
    17 define('FIDGETR_VERSION','1.3.3');
     17define('FIDGETR_VERSION','1.3.4');
    1818
    1919//instantiate our object
     
    214214    /*array2json provided by bin-co.com under BSD license*/
    215215    private function array2json($arr) {
    216         if(function_exists('json_encode')) return stripslashes(json_encode($arr)); //Latest versions of PHP already have this functionality.
     216        //commenting the PHP native json_encode out until I have time to figure out why it doesn't think utf8 chars are utf8
     217        //if(function_exists('json_encode')) return stripslashes(json_encode($arr)); //Latest versions of PHP already have this functionality.
    217218        $parts = array();
    218219        $is_list = false;
  • fidgetr/tags/1.3.4/readme.txt

    r146988 r164068  
    55Requires at least: 2.5
    66Tested up to: 2.8.4
    7 Stable tag: 1.3.3
     7Stable tag: 1.3.4
    88
    99A simple and beautiful Flickr widget that supports themes.
     
    1616
    1717== Changelog ==
     18
     19= 1.3.4 =
     20* UTF-8 fix.  Disabled native json_encode until I can investigate why it's hex encoding chars it shouldn't be...
    1821
    1922= 1.3.3 =
     
    3942You can also invoke Fidgetr via $fidgetr->fidgetr_images()
    4043
     44
    4145== Frequently Asked Questions ==
    4246
    4347= Fidgetr won't accept my username or email =
    44 Some users can't locate their NSID via search due to privacy settings or age restrictions..  As of 1.2 Fidgetr allows you to specify your actual NSID in the username field.  You can obtain it here: http://idgettr.com/
     48Some users can't locate their NSID via search due to privacy settings or age restrictions..  As of 1.2 Fidgetr allows you to specify your actual NSID in the username field.  You can obtain it here: http://www.flickr.com/services/api/explore/?method=flickr.people.getInfo   It's on the right under "your user id"
    4549
    4650= Comments don't appear in my theme/show up underneath other content! (iNove and others) =
  • fidgetr/trunk/fidgetr.php

    r146988 r164068  
    44    Plugin URI: http://langui.sh/fidgetr
    55    Description: A themeable Flickr widget that can fetch pictures and comments and style them in a myriad of attractive ways.
    6     Version: 1.3.3
     6    Version: 1.3.4
    77    Author: Paul Kehrer
    88    Author URI: http://langui.sh/
     
    1515require_once("flickrApi.class.php");
    1616
    17 define('FIDGETR_VERSION','1.3.3');
     17define('FIDGETR_VERSION','1.3.4');
    1818
    1919//instantiate our object
     
    214214    /*array2json provided by bin-co.com under BSD license*/
    215215    private function array2json($arr) {
    216         if(function_exists('json_encode')) return stripslashes(json_encode($arr)); //Latest versions of PHP already have this functionality.
     216        //commenting the PHP native json_encode out until I have time to figure out why it doesn't think utf8 chars are utf8
     217        //if(function_exists('json_encode')) return stripslashes(json_encode($arr)); //Latest versions of PHP already have this functionality.
    217218        $parts = array();
    218219        $is_list = false;
  • fidgetr/trunk/readme.txt

    r146988 r164068  
    55Requires at least: 2.5
    66Tested up to: 2.8.4
    7 Stable tag: 1.3.3
     7Stable tag: 1.3.4
    88
    99A simple and beautiful Flickr widget that supports themes.
     
    1616
    1717== Changelog ==
     18
     19= 1.3.4 =
     20* UTF-8 fix.  Disabled native json_encode until I can investigate why it's hex encoding chars it shouldn't be...
    1821
    1922= 1.3.3 =
     
    3942You can also invoke Fidgetr via $fidgetr->fidgetr_images()
    4043
     44
    4145== Frequently Asked Questions ==
    4246
    4347= Fidgetr won't accept my username or email =
    44 Some users can't locate their NSID via search due to privacy settings or age restrictions..  As of 1.2 Fidgetr allows you to specify your actual NSID in the username field.  You can obtain it here: http://idgettr.com/
     48Some users can't locate their NSID via search due to privacy settings or age restrictions..  As of 1.2 Fidgetr allows you to specify your actual NSID in the username field.  You can obtain it here: http://www.flickr.com/services/api/explore/?method=flickr.people.getInfo   It's on the right under "your user id"
    4549
    4650= Comments don't appear in my theme/show up underneath other content! (iNove and others) =
Note: See TracChangeset for help on using the changeset viewer.