• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

An Objective-C wrapper for Mac OS X’s FSEvents C API.


RSS
Rev. Tiempo Autor
98abd8e feature/block 2011-10-25 02:08:30 Aron Cedercrantz

Fix lastEvent not getting set.

- The lastEvent could some times not get set if the last event sent to the
callback was ignored or excluded.

- Did some cleanup in the callback.

91faddd 2011-10-22 01:38:53 Aron Cedercrantz

Added logic to use blocks instead.

- Added init* methods for blocks.

- Changed so that the old init* methods for delegates now call the new block based ones.

- Changed so that the callback executes the block.

f5c2709 2011-10-22 01:36:24 Aron Cedercrantz

Added CDEventsEventBlock type.

f4da940 feature/arc 2011-08-31 03:29:43 Aron Cedercrantz

Updated the readme to reflect the new deployment target.

3d2a8dd 2011-08-31 03:28:20 Aron Cedercrantz

Changed the ARC branch to deploy down to 10.6 instead of only 10.7 and up.

This change requires the user of the framework to set the CDEvents delegate to nil when it is no longer needed (i.e. in -dealloc).

4250cf9 2011-08-31 03:07:00 Aron Cedercrantz

Merge branch 'develop' into feature/arc

Conflicts:
CDEvents.xcodeproj/project.pbxproj

9b37a8e 2011-08-31 02:26:58 Aron Cedercrantz

Merge pull request #2 from ttilley/ttilley

compatibility shim, file level events in lion, runtime version detection

d65e893 2011-08-21 21:29:03 Aron Cedercrantz

Fixed an incorrect copyright notice.

Still under MIT though!

d43157c 2011-08-21 21:00:46 Travis Tilley

compatibility shim, runtime checking example, file-level events
---------------------------------------------------------------

* add flag checking and property macros to make all the boolean flag checks
look quite a bit tidier (especially since i'll be adding another 19 of
them)

* include an fsevent stream flag compatibility shim that's essentially the
same as what I'm currently using in fsevent_watch and import it from
CDEvent.m directly so that it need not be public

* add support for the new 10.7 file level events as boolean properties

* update the test application to use runtime version detection and enable
ignore-self and file level events when running on 10.6 and 10.7
respectively

e2660eb 2011-08-21 17:02:10 Travis Tilley

validate project settings, update to xcode 3.2

1aa80ce 2011-08-18 21:10:45 Aron Cedercrantz

Removed now unsued ivar declarations.

b22a031 2011-08-18 21:09:47 Aron Cedercrantz

Changed the internal behaviour of the watchedURLs property.
Moved ivar declaration in CDEvents to the private class extension.

984bcba 2011-08-18 21:02:09 Aron Cedercrantz

Added nores on how to use the project to the readme.

4bf77e1 2011-08-18 20:41:24 Aron Cedercrantz

Changed the readme to reflect the status of the ARC feature branch.

69a2adc 2011-08-18 03:35:37 Aron Cedercrantz

Updated project for ARC.

c576a9e 2011-08-17 01:34:41 Aron Cedercrantz

Fixed "missing base SDK".

e6cae0b 2011-02-14 12:08:12 Aron Cedercrantz

Fixed a bug in the CDEventsCallback(...) code which could cause the excludedURLs to be disregarded.

847bac2 2011-02-14 11:58:26 Aron Cedercrantz

Changed the lastEvent property of the CDEvents class to readonly in public and readwrite in private.

1ccca38 2011-02-14 11:57:30 Aron Cedercrantz

Fixed a bug in the test app which could cause an exception to be raised.

13d814f 2011-02-14 11:05:32 Aron Cedercrantz

Fixed a lot of small formatting and cross reference errors in the API doc.

b0e1f6d 2011-02-05 10:52:42 Aron Cedercrantz

Fixed a dup symbols bug properly, thanks to Kirk Kerekes.

0b77510 2011-02-05 10:48:18 Aron Cedercrantz

Defined MACOSX_DEPLOYMENT_TARGET to 10.5.

16c147e 2011-02-05 10:46:20 Aron Cedercrantz

Added some Xcode 4 stuff to the git ignore file.

ee2bf9e 2011-02-05 10:26:39 Aron Cedercrantz

Revert "Changed two "const <type> <name>" constants to macros (they caused duplicate symbol linking errors when the header was included more than once for the same product)."

This reverts commit ca72868e5179e7e9d8c7022377932c7c8cd48805.

2a5546c 2010-12-08 04:46:21 Aron Cedercrantz

Fixed small markdown error.

7587f0e 2010-12-08 04:44:53 Aron Cedercrantz

Added still maintained image.

ca72868 2010-09-25 05:50:45 Aron Cedercrantz

Changed two "const <type> <name>" constants to macros (they caused duplicate symbol linking errors when the header was included more than once for the same product).

f341d03 2010-09-25 05:38:13 Aron Cedercrantz

Changed test application to use full CDEvents init method.

d117237 2010-09-25 00:33:19 Aron Cedercrantz

Fixed missing __weak code mark in the delegate property declaration.

4c10a3b 2010-09-24 23:57:48 Aron Cedercrantz

Merge remote branch 'origin/develop' into develop