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