X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem%2FSystem.IO%2FChangeLog;h=a6aff6fdca34e55b90dbef86b15353463f25378f;hb=a8b22e0e864c03b8cfd2f2cb5a8075b6611c5553;hp=9549d015731c090c274bde77f6da75cb402c5980;hpb=a6bce082e4da5a3f144b7ae8974819a88efb6817;p=mono.git diff --git a/mcs/class/System/System.IO/ChangeLog b/mcs/class/System/System.IO/ChangeLog old mode 100755 new mode 100644 index 9549d015731..a6aff6fdca3 --- a/mcs/class/System/System.IO/ChangeLog +++ b/mcs/class/System/System.IO/ChangeLog @@ -1,3 +1,84 @@ +2006-11-01 Sebastien Pouliot + + * ErrorEventHandler.cs: Remove [Serializable] in NET_2_0. + * FileSystemEventHandler.cs: Remove [Serializable] in NET_2_0. + * FileSystemWatcher.cs: Add missing attributes for NET_2_0. + * InvalidDataException.cs: Seal class and remove serialization ctor. + * NotifyFilters.cs: Remove [Serializable] in NET_2_0. + * RenamedEventHandler.cs: Remove [Serializable] in NET_2_0. + * WatcherChangeTypes.cs: Remove [Serializable] in NET_2_0. + +2006-10-04 Gonzalo Paniagua Javier + + * InotifyWatcher.cs: workaround for a weird case. Someone is watching + /dev with recursion enabled and the inotify file descriptor shows up + as a directory that fails to open. Already reported to Robert Love. + +2006-09-05 Gonzalo Paniagua Javier + + * InotifyWatcher.cs: fix file names for the rename event. + * FileSystemWatcher.cs: ignore exceptions that happen when invoking + event handlers. + +2006-08-21 Gonzalo Paniagua Javier + + * InotifyWatcher.cs: handle CloseWrite, as it might happen without other + modify events. + +2006-08-16 Gonzalo Paniagua Javier + + * FileSystemWatcher.cs: avoid argument null when we don't know yet the + target of a rename. + +2006-08-03 Gonzalo Paniagua Javier + + * InotifyWatcher.cs: warn about inotify user watches limit. + +2005-07-31 Sebastien Pouliot + + * FileSystemWatcher.cs: Add an EnvironmentPermission assert to read + environment variable MONO_MANAGED_WATCHER. + +2006-07-25 Gonzalo Paniagua Javier + + * FAMWatcher.cs: remove unused method. + * InotifyWatcher.cs: new watcher supporting inotify directly, as there + are some distros that do not install 'gamin' anymore. This new watcher + takes priority over gamin, fam and default. + * FileSystemWatcher.cs: support for the new watcher. + +2006-04-10 Gonzalo Paniagua Javier + + * FAMWatcher.cs: fix race condition when a directory is created and + populated before we start monitoring it. Patch by Thong Nguyen. + +2006-04-06 Gonzalo Paniagua Javier + + * FAMWatcher.cs: add new directories to the hashtable after start + monitoring them, otherwise the ReqNum is not set. Fixes bug #77971. + +2006-01-05 Gonzalo Paniagua Javier + + * FAMWatcher.cs: fix arraylist access when a new directory is added and + the new directory is watched too. Closes bug #77068. + +2005-12-01 Gonzalo Paniagua Javier + + * FAMWatcher.cs: + * FileSystemWatcher.cs: use libgamin-1.so.0 instead of libfam.so.0 when + the runtime finds libgamin. On SUSE libgamin and libfam are not the same + libraries (on debian, they are just the same and there's no fam-server). + +2005-06-25 Gonzalo Paniagua Javier + + * FAMWatcher.cs: reverting my patch. Seems that something got + changed in gamin. + +2005-06-25 Gonzalo Paniagua Javier + + * FAMWatcher.cs: make this really inactive when there are no events to + process. + 2005-05-28 Gonzalo Paniagua Javier * FAMWatcher.cs: move the call to StartMonitoringDirectory out of any