google-sharp/ChangeLog

105 строки
3.7 KiB
Plaintext
Исходник Обычный вид История

2006-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google/GoogleConnection.cs: avoid nullref.
2006-09-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google/GoogleConnection.cs: some changes to make it work on
the MS runtime. Copied from System.Net.
2006-09-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaV1.cs: send the authtoken in the query
string. This will give us the cookie for further access.
* src/Mono.Google/GoogleConnection.cs: add an ApplicationName property that
needs to be set when Assembly.GetEntryAssembly returns null (non-root
appdomains). Also keep the authtoken around.
* src/Mono.Google/Authentication.cs: use the same method as picasa2 to
authenticate. Two requests, no redirects, and we get 2 cookies plus the
authtoken.
* src/Makefile.am: reference System.Web.
2006-09-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaWeb.cs: fix nullref when the user is not
authenticated and tries to create or delete an album. Should fix b.g.o.
#354621.
2006-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaWeb.cs: use the invariant culture when
generating the creation date. Hopefully fixes b.g.o. #354295.
2006-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaAlbum.cs: they added a new 'bytesused'
to tell the size of the album.
2006-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/Makefile.am:
* src/Makefile.am:
* src/Mono.Google.Picasa/PicasaWeb.cs:
* src/Mono.Google.Picasa/XmlUtil.cs:
* src/Mono.Google.Picasa/PicasaAlbum.cs: use System.Xml to write the
POST requests. Support the 'description' argument.
2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* sample/Makefile.am:
* src/Makefile.am:
* src/Mono.Google.Picasa/Makefile.am:
* src/Mono.Google.Picasa/UploadProgressEventArgs.cs:
* src/Mono.Google.Picasa/UploadProgressEventHandler.cs: upload progress
event handler.
* src/Mono.Google.Picasa/PicasaPicture.cs: use the right format for date
parsing. Some fields are now optional, as we can download public albums
or private albums with known id without the need for an authenticated
user.
* src/Mono.Google.Picasa/PicasaAlbum.cs: new static method to get the
pictures from known albums (user, album id needed). New
UploadProgress event to give feedback while uploading.
* src/Mono.Google.Picasa/PicasaV1.cs: retrieve the upgrade storage link
* and album RSS.
* src/Mono.Google/MultipartRequest.cs: if the response throws, don't
intercept that exception so that the user knows what's going on. Support
for buffering in a stream different than the request stream, needed when
the upload progress event is used.
2006-08-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google/GoogleConnection.cs: make DownloadToStream work on
slow connections.
2006-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaWeb.cs: actually send the description
field when provided.
2006-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaWeb.cs: added a new overload of
DeleteAlbum.
* src/Mono.Google.Picasa/PicasaAlbumCollection.cs:
* src/Mono.Google.Picasa/PicasaPictureCollection.cs: rename a
parameter.
2006-07-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* src/Mono.Google.Picasa/PicasaWeb.cs: simplify building POST requests
and added DeleteAlbum.
* src/Mono.Google.Picasa/PicasaAlbum.cs: simplify buildint POST
request.
* src/Mono.Google.Picasa/DeleteAlbumException.cs: new exception.
* src/Mono.Google/MultipartRequest.cs: wrapper for easy creation of a
multipart/form-data web request.