• R/O
  • HTTP
  • SSH
  • HTTPS

コミット一覧

タグ
未設定

よく使われているワード(クリックで追加)

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

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


RSS
Rev. 日時 作者
0171a9e 2011-11-03 00:52:51 Aron Cedercrantz

Remove unused css.

cf22832 2011-11-03 00:46:31 Aron Cedercrantz

Change latest to ordinary directory.

It seems that links did not work with gh pages :P

9cfbd1a 2011-11-03 00:44:32 Aron Cedercrantz

Add link pointing to the latest release.

Let's hope links works with gh pages :)

022d11a 2011-11-03 00:39:11 Aron Cedercrantz

Add all released releases.

:)

94b84db 2011-11-03 00:38:46 Aron Cedercrantz

Add API docs index file.

c8ae97b 2011-11-03 00:25:35 Aron Cedercrantz

Add API docs for head.

aaf1474 2011-11-03 00:22:17 Aron Cedercrantz

Update the project page.

- Improved the content on the page and the order of the content.

- Changed the page style.

1c4f30c 2011-11-03 00:21:49 Aron Cedercrantz

Add git ignore file to gh-pages branch.

677958e 2011-11-02 22:53:25 Aron Cedercrantz

Update readme to reflect online documentation.

d20d5eb 2011-11-02 22:50:55 Aron Cedercrantz

Created gh-pages branch via GitHub

694b652 2011-11-02 22:41:00 Aron Cedercrantz

Add license file.

beb5d71 2011-11-02 22:40:30 Aron Cedercrantz

Add script to generate documentation using appledoc.

44ade61 2011-10-25 06:05:56 Aron Cedercrantz

Update the read me to reflect the new changes.

98a7437 2011-10-25 06:05:36 Aron Cedercrantz

Update the test app to be able to use blocks API.

d95574b 2011-10-25 06:05:05 Aron Cedercrantz

Change project settings.

- Cleanup of the project settings (basically the same as ttilley did in https://github.com/ttilley/CDEvents/commit/140434b7d8238862ad341a10aa57479869807dfd).

f3f10d0 2011-10-25 02:49:35 Aron Cedercrantz

Merge branch 'feature/block' into develop

* feature/block:
Fix lastEvent not getting set.
Added logic to use blocks instead.
Added CDEventsEventBlock type.
Updated the readme to reflect the new deployment target.
Changed the ARC branch to deploy down to 10.6 instead of only 10.7 and up.
Fixed an incorrect copyright notice.
Removed now unsued ivar declarations.
Changed the internal behaviour of the watchedURLs property. Moved ivar declaration in CDEvents to the private class extension.
Added nores on how to use the project to the readme.
Changed the readme to reflect the status of the ARC feature branch.
Updated project for ARC.

Conflicts:
CDEvents.m

4476fa4 2011-10-25 02:45:33 Aron Cedercrantz

Merge branch 'release/1.1.2' into develop

* release/1.1.2:
Bumb version to 1.1.2.

d560344 support/1.1 1.1.2 2011-10-25 02:34:06 Aron Cedercrantz

Merge branch 'release/1.1.2'

* release/1.1.2: (21 commits)
Bumb version to 1.1.2.
Fix lastEvent not getting set.
compatibility shim, runtime checking example, file-level events ---------------------------------------------------------------
validate project settings, update to xcode 3.2
Fixed "missing base SDK".
Fixed a bug in the CDEventsCallback(...) code which could cause the excludedURLs to be disregarded.
Changed the lastEvent property of the CDEvents class to readonly in public and readwrite in private.
Fixed a bug in the test app which could cause an exception to be raised.
Fixed a lot of small formatting and cross reference errors in the API doc.
Fixed a dup symbols bug properly, thanks to Kirk Kerekes.
Defined MACOSX_DEPLOYMENT_TARGET to 10.5.
Added some Xcode 4 stuff to the git ignore file.
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)."
Fixed small markdown error.
Added still maintained image.
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).
Changed test application to use full CDEvents init method.
Fixed missing __weak code mark in the delegate property declaration.
Changed the compiler to LLVM 1.5.
Marked CDEventsDelegate pointer as a weak pointer (for GC).
...

Conflicts:
CDEvents.xcodeproj/project.pbxproj

3987ddc 2011-10-25 02:29:47 Aron Cedercrantz

Bumb version to 1.1.2.

a860bdf 2011-10-25 02:23:50 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.

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