Skip to content

Commit

Permalink
Updated documentation and phpSmug revision
Browse files Browse the repository at this point in the history
  • Loading branch information
lildude committed Jun 21, 2011
1 parent b426913 commit 88aec2b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
19 changes: 12 additions & 7 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
phpSmug 3.3 - PHP Wrapper for the SmugMug API
phpSmug 3.4 - PHP Wrapper for the SmugMug API
=============================================

Written by Colin Seymour
Expand Down Expand Up @@ -35,14 +35,13 @@ donation (http://phpsmug.com/donate).



What's New in phpSmug 3.3
What's New in phpSmug 3.4
=========================

phpSmug 3.3 is the next minor release of phpSmug and fixes only one issue found
in the way phpSmug was handling empty or FALSE argument values. No change in
usage from the user perspective is needed, you'll just find phpSmug handles
boolean and empty argument values correctly and will now generate correct OAuth
signatures for those methods involved.
Only a single small change in phpSmug 3.4: phpSmug was neglecting to set the
appropriate "hidden" upload header when uploading photos that should be marked
as hidden. phpSmug 3.4 now resolves this and "hidden" uploads should now show
up as hidden when they arrive on SmugMug.



Expand Down Expand Up @@ -508,6 +507,12 @@ This document is also available online at `http://phpsmug.com/docs'.
Change History
==============

* 3.4 - 21 Jun '11


* Added missing hidden header for image uploads that should be hidden.
Fixes Ticket #12.

* 3.3 - 3 Jun '11


Expand Down
4 changes: 2 additions & 2 deletions phpSmug.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* without having to worry about the finer details of the API.
*
* @author Colin Seymour <lildood@gmail.com>
* @version 3.3
* @version 3.4
* @package phpSmug
* @license GPL 3 {@link http://www.gnu.org/copyleft/gpl.html}
* @copyright Copyright (c) 2008 Colin Seymour
Expand Down Expand Up @@ -54,7 +54,7 @@ class PhpSmugException extends Exception {}
* @package phpSmug
**/
class phpSmug {
var $version = '3.3';
var $version = '3.4';
private $cacheType = FALSE;
var $SessionID;
var $loginType;
Expand Down

0 comments on commit 88aec2b

Please sign in to comment.