Rev 27 | Rev 33 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
29 | luk | 1 | 0.6.0 2006-12-28 |
2 | * added methods for getting/setting inotify capabilities and limits |
||
3 | * added IN_SELF_MOVED flag (if defined) |
||
4 | * added Inotify::IsRecursive() for identifying recursive watches |
||
5 | (will be implemented in future versions) |
||
6 | |||
27 | luk | 7 | 0.5.3 2006-12-06 |
8 | * fixed incorrect error handling in WaitForEvents() |
||
9 | |||
10 | |||
25 | luk | 11 | 0.5.2 2006-11-12 |
12 | * problem with ignoring IN_OPEN has been fixed (#0000102) |
||
13 | |||
14 | |||
23 | luk | 15 | 0.5.1 2006-11-10 |
16 | * problems with includes have been fixed (#0000099) |
||
17 | |||
25 | luk | 18 | |
21 | luk | 19 | 0.5.0 2006-10-29 |
20 | * partial thread safety has been implemented (using rwlocks) |
||
21 | * Inotify::GetEnabledCount() method has been added |
||
22 | |||
23 | |||
19 | luk | 24 | 0.4.1 2006-10-14 |
25 | * wrong value returned by Inotify::GetWatchCount() has been fixed |
||
26 | (#0000092) |
||
27 | |||
28 | |||
17 | luk | 29 | 0.4.0 2006-10-13 |
30 | * two additional flags (IN_ONLYDIR and IN_DONT_FOLLOW) may be used |
||
31 | if available (#0000086) |
||
32 | * "errorneous" multiple watches on the same path are no longer |
||
33 | possible (#0000087) |
||
34 | * tarball structure has been fixed (#0000088) |
||
35 | * inotify-syscalls.h is included only if inotify.h doesn't contain |
||
36 | syscall definitions (#0000090) |
||
37 | * enabling/disabling is now done through watch presence in the kernel |
||
38 | instead of dropping events (#0000091) |
||
39 | * InotifyWatch::SetMask() method has been added to allow later mask |
||
40 | modification |
||
41 | |||
42 | |||
15 | luk | 43 | 0.3.1 2006-10-03 |
44 | * fixed: wrong behavior for EWOULDBLOCK (Inotify::WaitForEvents()) |
||
45 | |||
46 | |||
13 | luk | 47 | 0.3.0 2006-10-03 |
48 | * all errors now handled using exceptions (InotifyException) |
||
49 | * InotifyEvent no longer use struct inotity_event as its |
||
50 | internal data structure |
||
51 | * removed InotifyEvent::GetData() - internal data changed |
||
52 | * removed Inotify::IsReady() - no longer necessary |
||
53 | * added Inotify::GetDescriptor() - returns inotify file descriptor |
||
54 | * added Inotify::SetNonBlock() - switches nonblocking mode on/off |
||
15 | luk | 55 | * added possibility to enable/disable watches |
13 | luk | 56 | * some code cleanups |
57 | |||
15 | luk | 58 | |
11 | luk | 59 | 0.2.0 2006-09-15 |
60 | * InotifyEvent now contains a pointer to the source InotifyWatch |
||
61 | * fixed: InotifyEvent::IsType() - it now handles the mask correctly |
||
62 | * added a static method (InotifyEvent::GetMaskByName()) for finding a mask |
||
63 | for a name |
||
64 | * added a static version of InotifyEvent::DumpTypes() method |
||
65 | * added a static version of InotifyEvent::IsType() method |
||
66 | * dumped types (InotifyEvent::DumpTypes()) now separated by commas |
||
67 | instead of spaces |
||
68 | * InotifyEvent::DumpTypes() methods now use as general types as possible |
||
69 | * InotifyWatch now contains a pointer to the related Inotify |
||
70 | |||
71 | |||
3 | luk | 72 | 0.1.0 2006-09-04 |
73 | first alpha version |