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