You are here

ChangeLog.txt in Flickr API 5

---------------------
phpFlickr - Changelog
---------------------

Version 2.2.0
-------------

2008-01-17 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added the preference, safety, content
		and "places" methods.
	* other files: Updated PEAR and HTTP_Request.

	
Version 2.1.0
-------------

2006-11-21 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Updated the buildPhotoURL method to 
      reflect recent changes in the Flickr API.  Also added the 
      photos_getFavorites method and added pagination arguments 
      to photosets_getPhotos..
    
2006-11-21 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added the activity methods.
        
2006-10-18 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added the tags_getHotList method.
        
        
Version 2.0.0
-------------

2006-09-29 Dan Coulter  <dancoulter@users.sourceforge.net>
    IMPORTANT: This version will not be 100% backwards compatible.
        It may very well break older apps if you try to copy it over
        an older version of phpFlickr.  Be sure you test thoroughly.

    * phpFlickr.php: Updated class to use Flickr's Serialized PHP 
        format.  Also, I revamped the error handling and caching.
        Fixed a bug in file uploading.
    * xml.php: Deleted.
    * xml_SAXY_parser.php: Deleted.


Version 1.6.1
-------------

2006-09-01 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Changed the license to the LGPL and
        implemented my friendly geodata service.


Version 1.6
-----------

2006-08-29 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Implemented the new comment and geocoding
        API methods.

2006-08-04 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: added support for new API methods. Also,
        added useSAXY method to switch to the SAXY parser.
    * xml.php: Changed parser so that it uses PHP's XML functions
        by default, but you can choose to use SAXY if you may run
        into unusual characters.  Using SAXY requires alot more
        memory for your scripts.
    

Version 1.6-beta
----------------

2006-06-19 Dan Coulter  <dancoulter@users.sourceforge.net>
    * xml.php: Replaced PHP's XML functions with the SAXY_Parser
        class to remove the problems with unusual characters that
        PHP's functions created.
        
2006-06-15 Dan Coulter <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added support for the new photo replacement API.

Version 1.5.2
-------------

2006-05-07 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added privacy_filter parameter to 
        photosets_getPhotos().


2006-03-13 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed bugs in contacts_getList and 
        contacts_getPublicList when they are returned with one 
        result.

Version 1.5.1
-------------

2006-03-13 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added support for flickr.photos.comments.getList
    
2006-03-11 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug in photos_licenses_setLicense()

Version 1.5
-----------

2006-02-15 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Implemented support for 23's compatible API.
        Implemented flickr.groups.search method.  Fixed bug in
        filesystem caching for PHP versions older than 4.3.0.
        Stopped caching from changing the working directory.
        Included support for HTTP proxy servers.


Version 1.4.3
-------------

2006-01-05 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added interestingness_getList() method.
        Fixed a bug in favorites_getPublicList() that made it
        return less data than it should have.  Note: This
        means that you need to adjust any calls to this function.
	* xml.php: Added Escape character to replacements so that the 
		XML parser will not barf.

2005-12-16 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug in photosets_getPhotos() 
        definition.


Version 1.4.2
-------------

2005-12-13 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Removed extra useless code from 
        favorites_remove().  
        Added photo deletion method: photos_delete().  
        Removed old authentication function login().  Flickr 
        has removed the old auth style from the API.  The only
        way to authenticate now is through the auth() function.
        

2005-12-12 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug setting the PEAR include path
        in Windows.

2005-12-10 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug that would cause database
        caching to fail in Windows.


Version 1.4.1
-------------

2005-12-02 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added "user_id" parameter to the 
        groups_pools_getPhotos() method.  Note, because of the 
        placement in the Flickr API documentation, this make break 
        some older applications.  The third parameter must be 
        the user_id.
    * phpFlickr.php: Changed buildPhotoURL() to use the new URL 
        scheme for photo files.
    * xml.php: Fixed the bug that was causing an "undefined 
        index" notice. 
      
2005-11-15 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: fixed a session bug and added the "extras" 
        parameter to photosets_getPhotos.

Version 1.4
-------------

2005-09-19 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug in getCached() to remove an extra
        database call that was being made.  Avast!

2005-09-18 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added support for uploading.  Both synchronous
        and asynchronous uploading have been implemented.
      
Version 1.3.3
-------------

2005-09-18 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added support for flickr.photos.getAllContexts.
        Adjusted behavior of certain methods to make results more consistant.
        Added callMethod() function for generic access to methods. Made sure
        that methods that set data do not cache the results.

2005-09-14 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added support for flickr.photos.licenses.setLicense. 

2005-09-08 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Changed variable definition from $error_num
        to $error_code.

2005-09-07 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed bug in photos_getNotInSet(). 

2005-08-23 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed file system detection. 

Version 1.3.2
-------------

2005-08-17 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug in the include paths and a bug 
      that was causing the cache not to work.
    
2005-08-16 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added filter parameter to contacts_getList().

2005-08-10 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added support for flickr.people.getUploadStatus
    
2005-08-11 Dan Coulter  <dancoulter@users.sourceforge.net>
    * xml.php: Fixed a bug that removed all newline characters from the
        XML returned from Flickr.

Version 1.3.1
-------------

2005-08-05 Dan Coulter  <dancoulter@users.sourceforge.net>
    * auth.php: Updated to use Flickr's extra callback argument for the 
        redirect instead of a session variable.

2005-08-04 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Included code to add the packaged PEAR folder
        in the include path.
      

Version 1.3
-------------

2005-07-22 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added support for the new authentication scheme.
        Added the three new auth methods plus the phpFlickr::auth() function
        to act as a simple authentication check.
        Fixed bugs in the error handling functions.
    * README.txt: Fixed several typos relating to photos_search() and to
        the PEAR prereqs. 

Version 1.2.1
-------------

2005-06-30 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added a comment to the photos_search() method to 
        help people know how to use it. 
    * README.txt: Fixed several typos relating to photos_search() and to
        the PEAR prereqs. 

2005-06-23 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug in the buildPhotoURL method that caused 
        an invalid URL to be returned.
    * phpFlickr.php: removed the login parameters from the constructor
        and added "die_on_error" parameter.  Added login() and two error
        methods.
    * README.txt: Edited text about constructor's parameters and included 
        information on new login method.

Version 1.2
-----------

2005-06-12 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Created functions for the new methods: photosets.addPhoto
        and photosets.removePhoto.  Also fixed some code formatting.
    * phpFlickr.php: Changed URLs to reflect the new phpflickr.com site.
    * README.txt: Changed URLs to reflect the new phpflickr.com site and added
        a few notes about coding.
    * example.php: Added an example php script.
          
2005-06-11 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Fixed a bug in the definition of groups_pools_getPhotos()
        that made the fifth parameter not optional.
      
Version 1.1
-----------

2005-06-09 Dan Coulter  <dancoulter@users.sourceforge.net>
    * phpFlickr.php: Added caching functionality

File

phpFlickr/ChangeLog.txt
View source
  1. ---------------------
  2. phpFlickr - Changelog
  3. ---------------------
  4. Version 2.2.0
  5. -------------
  6. 2008-01-17 Dan Coulter
  7. * phpFlickr.php: Added the preference, safety, content
  8. and "places" methods.
  9. * other files: Updated PEAR and HTTP_Request.
  10. Version 2.1.0
  11. -------------
  12. 2006-11-21 Dan Coulter
  13. * phpFlickr.php: Updated the buildPhotoURL method to
  14. reflect recent changes in the Flickr API. Also added the
  15. photos_getFavorites method and added pagination arguments
  16. to photosets_getPhotos..
  17. 2006-11-21 Dan Coulter
  18. * phpFlickr.php: Added the activity methods.
  19. 2006-10-18 Dan Coulter
  20. * phpFlickr.php: Added the tags_getHotList method.
  21. Version 2.0.0
  22. -------------
  23. 2006-09-29 Dan Coulter
  24. IMPORTANT: This version will not be 100% backwards compatible.
  25. It may very well break older apps if you try to copy it over
  26. an older version of phpFlickr. Be sure you test thoroughly.
  27. * phpFlickr.php: Updated class to use Flickr's Serialized PHP
  28. format. Also, I revamped the error handling and caching.
  29. Fixed a bug in file uploading.
  30. * xml.php: Deleted.
  31. * xml_SAXY_parser.php: Deleted.
  32. Version 1.6.1
  33. -------------
  34. 2006-09-01 Dan Coulter
  35. * phpFlickr.php: Changed the license to the LGPL and
  36. implemented my friendly geodata service.
  37. Version 1.6
  38. -----------
  39. 2006-08-29 Dan Coulter
  40. * phpFlickr.php: Implemented the new comment and geocoding
  41. API methods.
  42. 2006-08-04 Dan Coulter
  43. * phpFlickr.php: added support for new API methods. Also,
  44. added useSAXY method to switch to the SAXY parser.
  45. * xml.php: Changed parser so that it uses PHP's XML functions
  46. by default, but you can choose to use SAXY if you may run
  47. into unusual characters. Using SAXY requires alot more
  48. memory for your scripts.
  49. Version 1.6-beta
  50. ----------------
  51. 2006-06-19 Dan Coulter
  52. * xml.php: Replaced PHP's XML functions with the SAXY_Parser
  53. class to remove the problems with unusual characters that
  54. PHP's functions created.
  55. 2006-06-15 Dan Coulter
  56. * phpFlickr.php: Added support for the new photo replacement API.
  57. Version 1.5.2
  58. -------------
  59. 2006-05-07 Dan Coulter
  60. * phpFlickr.php: Added privacy_filter parameter to
  61. photosets_getPhotos().
  62. 2006-03-13 Dan Coulter
  63. * phpFlickr.php: Fixed bugs in contacts_getList and
  64. contacts_getPublicList when they are returned with one
  65. result.
  66. Version 1.5.1
  67. -------------
  68. 2006-03-13 Dan Coulter
  69. * phpFlickr.php: Added support for flickr.photos.comments.getList
  70. 2006-03-11 Dan Coulter
  71. * phpFlickr.php: Fixed a bug in photos_licenses_setLicense()
  72. Version 1.5
  73. -----------
  74. 2006-02-15 Dan Coulter
  75. * phpFlickr.php: Implemented support for 23's compatible API.
  76. Implemented flickr.groups.search method. Fixed bug in
  77. filesystem caching for PHP versions older than 4.3.0.
  78. Stopped caching from changing the working directory.
  79. Included support for HTTP proxy servers.
  80. Version 1.4.3
  81. -------------
  82. 2006-01-05 Dan Coulter
  83. * phpFlickr.php: Added interestingness_getList() method.
  84. Fixed a bug in favorites_getPublicList() that made it
  85. return less data than it should have. Note: This
  86. means that you need to adjust any calls to this function.
  87. * xml.php: Added Escape character to replacements so that the
  88. XML parser will not barf.
  89. 2005-12-16 Dan Coulter
  90. * phpFlickr.php: Fixed a bug in photosets_getPhotos()
  91. definition.
  92. Version 1.4.2
  93. -------------
  94. 2005-12-13 Dan Coulter
  95. * phpFlickr.php: Removed extra useless code from
  96. favorites_remove().
  97. Added photo deletion method: photos_delete().
  98. Removed old authentication function login(). Flickr
  99. has removed the old auth style from the API. The only
  100. way to authenticate now is through the auth() function.
  101. 2005-12-12 Dan Coulter
  102. * phpFlickr.php: Fixed a bug setting the PEAR include path
  103. in Windows.
  104. 2005-12-10 Dan Coulter
  105. * phpFlickr.php: Fixed a bug that would cause database
  106. caching to fail in Windows.
  107. Version 1.4.1
  108. -------------
  109. 2005-12-02 Dan Coulter
  110. * phpFlickr.php: Added "user_id" parameter to the
  111. groups_pools_getPhotos() method. Note, because of the
  112. placement in the Flickr API documentation, this make break
  113. some older applications. The third parameter must be
  114. the user_id.
  115. * phpFlickr.php: Changed buildPhotoURL() to use the new URL
  116. scheme for photo files.
  117. * xml.php: Fixed the bug that was causing an "undefined
  118. index" notice.
  119. 2005-11-15 Dan Coulter
  120. * phpFlickr.php: fixed a session bug and added the "extras"
  121. parameter to photosets_getPhotos.
  122. Version 1.4
  123. -------------
  124. 2005-09-19 Dan Coulter
  125. * phpFlickr.php: Fixed a bug in getCached() to remove an extra
  126. database call that was being made. Avast!
  127. 2005-09-18 Dan Coulter
  128. * phpFlickr.php: Added support for uploading. Both synchronous
  129. and asynchronous uploading have been implemented.
  130. Version 1.3.3
  131. -------------
  132. 2005-09-18 Dan Coulter
  133. * phpFlickr.php: Added support for flickr.photos.getAllContexts.
  134. Adjusted behavior of certain methods to make results more consistant.
  135. Added callMethod() function for generic access to methods. Made sure
  136. that methods that set data do not cache the results.
  137. 2005-09-14 Dan Coulter
  138. * phpFlickr.php: Added support for flickr.photos.licenses.setLicense.
  139. 2005-09-08 Dan Coulter
  140. * phpFlickr.php: Changed variable definition from $error_num
  141. to $error_code.
  142. 2005-09-07 Dan Coulter
  143. * phpFlickr.php: Fixed bug in photos_getNotInSet().
  144. 2005-08-23 Dan Coulter
  145. * phpFlickr.php: Fixed file system detection.
  146. Version 1.3.2
  147. -------------
  148. 2005-08-17 Dan Coulter
  149. * phpFlickr.php: Fixed a bug in the include paths and a bug
  150. that was causing the cache not to work.
  151. 2005-08-16 Dan Coulter
  152. * phpFlickr.php: Added filter parameter to contacts_getList().
  153. 2005-08-10 Dan Coulter
  154. * phpFlickr.php: Added support for flickr.people.getUploadStatus
  155. 2005-08-11 Dan Coulter
  156. * xml.php: Fixed a bug that removed all newline characters from the
  157. XML returned from Flickr.
  158. Version 1.3.1
  159. -------------
  160. 2005-08-05 Dan Coulter
  161. * auth.php: Updated to use Flickr's extra callback argument for the
  162. redirect instead of a session variable.
  163. 2005-08-04 Dan Coulter
  164. * phpFlickr.php: Included code to add the packaged PEAR folder
  165. in the include path.
  166. Version 1.3
  167. -------------
  168. 2005-07-22 Dan Coulter
  169. * phpFlickr.php: Added support for the new authentication scheme.
  170. Added the three new auth methods plus the phpFlickr::auth() function
  171. to act as a simple authentication check.
  172. Fixed bugs in the error handling functions.
  173. * README.txt: Fixed several typos relating to photos_search() and to
  174. the PEAR prereqs.
  175. Version 1.2.1
  176. -------------
  177. 2005-06-30 Dan Coulter
  178. * phpFlickr.php: Added a comment to the photos_search() method to
  179. help people know how to use it.
  180. * README.txt: Fixed several typos relating to photos_search() and to
  181. the PEAR prereqs.
  182. 2005-06-23 Dan Coulter
  183. * phpFlickr.php: Fixed a bug in the buildPhotoURL method that caused
  184. an invalid URL to be returned.
  185. * phpFlickr.php: removed the login parameters from the constructor
  186. and added "die_on_error" parameter. Added login() and two error
  187. methods.
  188. * README.txt: Edited text about constructor's parameters and included
  189. information on new login method.
  190. Version 1.2
  191. -----------
  192. 2005-06-12 Dan Coulter
  193. * phpFlickr.php: Created functions for the new methods: photosets.addPhoto
  194. and photosets.removePhoto. Also fixed some code formatting.
  195. * phpFlickr.php: Changed URLs to reflect the new phpflickr.com site.
  196. * README.txt: Changed URLs to reflect the new phpflickr.com site and added
  197. a few notes about coding.
  198. * example.php: Added an example php script.
  199. 2005-06-11 Dan Coulter
  200. * phpFlickr.php: Fixed a bug in the definition of groups_pools_getPhotos()
  201. that made the fifth parameter not optional.
  202. Version 1.1
  203. -----------
  204. 2005-06-09 Dan Coulter
  205. * phpFlickr.php: Added caching functionality