Plugin Directory

Changeset 702235


Ignore:
Timestamp:
04/23/2013 01:23:36 PM (13 years ago)
Author:
tpk
Message:

fix ssl verification, other minor fixes

Location:
my-coderwall-badges/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • my-coderwall-badges/trunk/cw_badges.php

    r550252 r702235  
    44Description: gets your badges from coderwall website and let you show them on your blog.
    55Author: Francesco Lentini
    6 Version: 0.5
     6Version: 0.6
    77Plugin URI: https://github.com/flentini/my-coderwall-badges
    8 Author URI: http://spugna.org/tpk
     8Author URI: http://github.com/flentini
    99*/
    1010
  • my-coderwall-badges/trunk/cwbclass.php

    r550252 r702235  
    5555
    5656        protected function init_badges() {
    57             $cwbadges = wp_remote_get('http://coderwall.com/'.$this->username.'.json');
     57            $cwbadges = wp_remote_get('https://coderwall.com/'.$this->username.'.json', array( 'sslverify' => false));
    5858            if(!empty($cwbadges) && !is_wp_error($cwbadges)){
    5959                $badges_string = '<div>';
  • my-coderwall-badges/trunk/readme.txt

    r550252 r702235  
    44Requires at least: 3.0
    55Tested up to: 3.3.1
    6 Stable tag: 0.5
     6Stable tag: 0.6
    77
    88gets your badges from coderwall website and let you show them on your blog.
     
    1313Install, activate the plugin and set your username in the CW Badges Panel.
    1414You can display your badges using the [cwbadges] shortcode inside your pages/posts.
    15 You also have these functions available:
    16 
    17 echo $cwb->get_username() -> display username
    18 
    19 echo $cwb->get_name() -> display name
    20 
    21 echo $cwb->get_location() -> display location
    22 
    23 echo $cwb->get_badges() -> display user badges
    24 
    25 You can call them inside your theme's files.
    26 
    2715There's also a widget which waits to be activated by you in the theme options.
    2816
     
    3927== Changelog ==
    4028
     29= 0.6 =
     30* fixed ssl verification issue (thanks to tmeinlschmidt)
     31
    4132= 0.5 =
    42 * Added option to show Coderwall endorsements (http://coderwall.com/blog/2012-01-16-the-hacker-version-of-an-embeddable-social-button)
     33* Added option to show Coderwall endorsements (http://coderwall.com/blog/2012-01-16-the-hacker-version-of-an-embeddable-social-button) (thanks to picandocodigo)
    4334
    4435= 0.4 =
    45 * German translation
     36* German translation (thanks to bountin)
    4637
    4738= 0.3 =
    48 * Added a simple widget.
     39* Added a simple widget. (thanks to picandocodigo)
    4940
    5041= 0.2 =
Note: See TracChangeset for help on using the changeset viewer.