preRelease 0.03

Requirements:
Requires XCode 2.41 or 2.5 - OS X 10.4 

Notes:

- UNIVERSAL BINARIES

All xcode projects produce universal apps.
Because this takes twice as long (you compile once for intel and once for ppc) it is only availble when the project is set to the 'Release' configuration. 

To set the project to Release:
Go to the Project menu.
Select 'Set Active Build Configuration' and change it to 'Release'.

This will produce an app that can run natively on Intel and PPC macs.

We do not recommend doing this though until you have finished developing your app and you are ready to release it. So while you are developing leave it on Debug configuration.


- COMPILE ISSUES

If you get a lot of errors when you first try to compile - try Clean All from the build menu.


- MAKING NEW PROJECTS

The easiest way to make a new project is to either duplicate and rename an example project folder or to unzip the emptyProject.zip which will give you a project that does nothing but launch a window.

- ADDING FILES

And if you are adding your own files into xcode keep them inside your project folder and when you add them make sure you select 'Relative to Project' from the xcode dialog. 


- THE DATA FOLDER

All of openFrameworks file related functions now treat the data/ folder in the same directory as your compiled app as the default path to search for files. 

So a file with the path: 
data/movies/myMovie.mov 

is loaded:
myMoviePlayer.loadMovie("movies/myMovies.mov");


Thank you 
openFrameworks team: Zach and Theo
