ChangeLog 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. 2004-09-04 Gonzalo Paniagua Javier <[email protected]>
  2. * FAMWatcher.cs: s/fam/libfam.so.0/ so that g_module finds it even
  3. when the development package is not installed.
  4. 2004-08-06 Geoff Norton <[email protected]>
  5. * FileSystemWatcher.cs: Use the new KeventWatcher if its supported
  6. * KeventWatcher.cs: Added to cvs
  7. 2004-06-24 Gonzalo Paniagua Javier <[email protected]>
  8. * DefaultWatcher.cs: fixed subdirectories notifications and don't
  9. fail when any directory is removed. Closes bug #59840.
  10. 2004-05-09 Atsushi Enomoto <[email protected]>
  11. * FileSystemWatcher.cs : csc build fix. Duplicate name between class
  12. field and local variable. (already filed in bugzilla #47991).
  13. 2004-05-09 Gonzalo Paniagua Javier <[email protected]>
  14. * DefaultWatcher.cs:
  15. * FAMWatcher.cs: use MangledFilter instead of Filter.
  16. * FileSystemWatcher.cs: added MangledFilter and finalizer.
  17. * SearchPattern.cs: fixed the case when the pattern is "*".
  18. 2004-03-30 Gonzalo Paniagua Javier <[email protected]>
  19. * FAMWatcher.cs: support monitoring subdirectories. FAM doesn't do that,
  20. so we have to register the existing directories and add the new ones
  21. that might be created.
  22. * SearchPattern.cs: provide the pattern when it's wrong.
  23. 2004-03-25 Gonzalo Paniagua Javier <[email protected]>
  24. * SearchPattern.cs: small improvement for files with no wildcard.
  25. 2004-01-27 Nick Drochak <[email protected]>
  26. * FAMWatcher.cs:
  27. * FileSystemWatcher.cs: Remove unused variables. Eliminates a couple of
  28. build warnings.
  29. 2004-01-26 Gonzalo Paniagua Javier <[email protected]>
  30. * DefaultWatcher.cs: fixed condition for removal from the watches list.
  31. 2004-01-26 Gonzalo Paniagua Javier <[email protected]>
  32. * DefaultWatcher.cs: check if the FileSystemWatcher is in WaitForChange
  33. and call Monitor.PulseAll in that case.
  34. 2004-01-21 Gonzalo Paniagua Javier <[email protected]>
  35. * DefaultWatcher.cs: implemented.
  36. * FAMWatcher.cs: don't stop the thread when we add a new watch.
  37. * FileSystemWatcher.cs: on windows we use the default watcher by now.
  38. 2004-01-16 Gonzalo Paniagua Javier <[email protected]>
  39. * DefaultWatcher.cs: stub for the default watcher.
  40. * WindowsWatcher.cs: stub for the windows watcher.
  41. * FAMWatcher.cs: FAM watcher.
  42. * FileAction.cs: enum with event types.
  43. * FileSystemEventArgs.cs: added SetName property.
  44. * FileSystemWatcher.cs: added support for the 3 watchers.
  45. * IFileWatcher.cs: interface implemented by the watchers.
  46. * SearchPattern.cs: copied from corlib.
  47. 2003-07-17 Andreas Nahr <[email protected]>
  48. * FileSystemWatcher.cs: Reworked attributes based on the new Consts
  49. scheme
  50. 2003-07-13 Andreas Nahr <[email protected]>
  51. * FileSystemWatcher.cs: Added missing attributes
  52. 2003-07-09 Andreas Nahr <[email protected]>
  53. * IODescriptionAttribute.cs: Removed unneeded field
  54. 2003-05-16 Dick Porter <[email protected]>
  55. * MonoIO.cs: Implement GetTempPath
  56. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  57. * FileSystemWatcher.cs: added attributes and some more implementation.
  58. Now only the guts left to do.
  59. * FileSystemEventArgs.cs:
  60. * RenamedEventArgs.cs: implemented a couple of properties.
  61. 2002-10-31 Dick Porter <[email protected]>
  62. * MonoIO.cs: Return the error status in a parameter, as the
  63. GetLastError() value has long since been blown away if we try and
  64. look it up in a subsequent internal call invocation.
  65. 2002-09-15 Duncan Mak <[email protected]>
  66. * FileSystemWatcher.cs (FileSystemWatcher): Fixed the null-param
  67. constructor.
  68. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  69. * FileSystemWatcher.cs: IDisposable fixes.
  70. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  71. * InternalBufferOverflowException.cs:
  72. * NotifyFilters.cs:
  73. * WatcherChangeTypes.cs: little fixes based on class status page.
  74. 2002-08-15 Tim Coleman <[email protected]>
  75. * ErrorEventArgs.cs:
  76. * ErrorEventHandler.cs:
  77. * FileSystemEventArgs.cs:
  78. * FileSystemEventHandler.cs:
  79. * FileSystemWatcher.cs:
  80. * InternalBufferOverflowException.cs:
  81. * IODescriptionAttribute.cs:
  82. * NotifyFilters.cs:
  83. * RenamedEventArgs.cs:
  84. * RenamedEventHandler.cs:
  85. * WaitForChangedResult.cs:
  86. * WatcherChangeTypes.cs:
  87. New stubs added.
  88. 2002-07-20 Dick Porter <[email protected]>
  89. * MonoIO.cs: Cut down copy of corlib/System.IO/MonoIO.cs, so it
  90. can be used from the System assembly but still not be exposed to
  91. users.