Plugin Directory

Changeset 889596


Ignore:
Timestamp:
04/08/2014 07:43:20 PM (12 years ago)
Author:
apokalyptik
Message:

2.1.1 - bugfix release

Location:
photostream-sync
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • photostream-sync/tags/2.1.1/class-photostream-client.php

    r886424 r889596  
    9393        return sprintf(
    9494            'https://p%s-sharedstreams.icloud.com/%s/sharedstreams/%s',
    95             str_pad( max( 1, abs( intval( $this->shard ) ) ), 2, '0', STR_PAD_LEFT ),
     95            str_pad( max( 1, abs( intval( base_convert( $this->shard, 36, 10 ) ) ) ), 2, '0', STR_PAD_LEFT ),
    9696            $this->key,
    9797            rawurlencode( $type )
  • photostream-sync/tags/2.1.1/readme.txt

    r886424 r889596  
    55Requires at least: 3.8
    66Tested up to: 3.8
    7 Stable tag: 2.1
     7Stable tag: 2.1.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8686
    8787== Changelog ==
     88= 2.1.1 =
     89* Fix a bug where a valid url would fail to validate when attempting to add it to the site.
     90
    8891= 2.1 =
    8992* Updated the plugin user interface to match the modern mobile friendly design introduced in WordPress 3.8.
  • photostream-sync/trunk/class-photostream-client.php

    r886424 r889596  
    9393        return sprintf(
    9494            'https://p%s-sharedstreams.icloud.com/%s/sharedstreams/%s',
    95             str_pad( max( 1, abs( intval( $this->shard ) ) ), 2, '0', STR_PAD_LEFT ),
     95            str_pad( max( 1, abs( intval( base_convert( $this->shard, 36, 10 ) ) ) ), 2, '0', STR_PAD_LEFT ),
    9696            $this->key,
    9797            rawurlencode( $type )
  • photostream-sync/trunk/readme.txt

    r886424 r889596  
    55Requires at least: 3.8
    66Tested up to: 3.8
    7 Stable tag: 2.1
     7Stable tag: 2.1.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8686
    8787== Changelog ==
     88= 2.1.1 =
     89* Fix a bug where a valid url would fail to validate when attempting to add it to the site.
     90
    8891= 2.1 =
    8992* Updated the plugin user interface to match the modern mobile friendly design introduced in WordPress 3.8.
Note: See TracChangeset for help on using the changeset viewer.