Skip to content

Commit

Permalink
Update Starter and Tools READMEs for 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Robinson committed May 20, 2009
1 parent 289a211 commit b99ba2c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Tools/READMEs/STARTER-README
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ Included you should find the following:

1. Documentation
2. NewApplication
3. README
3. NibApplication
4. README

NewApplication is a stand alone Cappuccino application that you can use as a template to start building your own apps. To get started, just open up NewApplication/index.html in your favorite web browser. A great place to go from there is to read the "Downloading and Getting Started" tutorial found at http://cappuccino.org/learn/tutorials/starter-tutorial.php. This will walk you through these initial steps as well as getting you to do a little coding. If you want to debug your application, try running it with index-debug.html instead, which should make it easier.

You can build your entire application right from this sample project, but if you want to dig a little deeper, you can also download the Tools package found at http://cappuccino.org/download/. This will set you up with some great additions like syntax modules for certain text editors and build tools to get extra performance.
NibApplication is a stand alone Cappuccino application that uses .cib files for its interface. You will find two files of interest in the Resources folder: MainMenu.xib and MainMenu.cib. To edit the interface, open MainMenu.xib in Interface Builder. When you are done, run the nib2cib command on MainMenu.xib to generate a new MainMenu.cib file, and refresh your application.

You can build your entire application right from either of these sample projects, but if you want to dig a little deeper, you can also download the Tools package found at http://cappuccino.org/download/. This will set you up with some great additions like syntax modules for certain text editors and build tools to get extra performance.
9 changes: 7 additions & 2 deletions Tools/READMEs/TOOLS-README
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This will load the obj-j syntax highlighting when you open files ending in .j
1. Navigate to Tools (the directory containing this README).
2. Enter "sudo sh install-tools"
3. You should see this: "Cappuccino Tools Installed"
5. You can optionally specify a global Build directory. If you wish to use it, you must set the STEAM_BUILD environment variable. Building Cappuccino from source requires this, for example.
4. You can optionally specify a global Build directory. If you wish to use it, you must set the CAPP_BUILD environment variable. Building Cappuccino from source requires this, for example. As does using the -l flag in the capp tool.

**********************************************************************
* objj
Expand All @@ -65,4 +65,9 @@ objjc is a static pre-interpreter for Objective-J. It will take Objective-J file

capp is a simple tool for creating Objective-J applications.

steam /path/to/your/app [options]
capp COMMAND [OPTIONS]

cap gen PROJECT_PATH [-t TEMPLATE_NAME] [-l] [-f] to create new projects

capp config name value to configure capp with your information (such as user.name, user.email, etc.)

0 comments on commit b99ba2c

Please sign in to comment.