Skip to content

Commit

Permalink
starting new launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
parmanoir committed Apr 3, 2009
1 parent 00be89c commit aa45004
Show file tree
Hide file tree
Showing 36 changed files with 8,713 additions and 691 deletions.
6 changes: 6 additions & 0 deletions JSCocoa/class.js
@@ -1,4 +1,9 @@


// ObjC
var nil = null
var YES = true
var NO = false

function log(str) { JSCocoaController.log('' + str) } function log(str) { JSCocoaController.log('' + str) }


function dumpHash(o) { var str = ''; for (var i in o) str += i + '=' + o[i] + '\n'; return str } function dumpHash(o) { var str = ''; for (var i in o) str += i + '=' + o[i] + '\n'; return str }
Expand Down Expand Up @@ -32,6 +37,7 @@
,'float' : 'f' ,'float' : 'f'
,'double' : 'd' ,'double' : 'd'
,'bool' : 'B' ,'bool' : 'B'
,'BOOL' : 'B'
,'void' : 'v' ,'void' : 'v'
,'undef' : '?' ,'undef' : '?'
,'pointer' : '^' ,'pointer' : '^'
Expand Down
3,343 changes: 3,343 additions & 0 deletions JSCocoaLauncher OLD/English.lproj/MainMenu.xib

Large diffs are not rendered by default.

File renamed without changes.
47 changes: 47 additions & 0 deletions JSCocoaLauncher OLD/Info.plist
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>com.inexdo.${PRODUCT_NAME:identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>NSDocumentClass</key>
<string>JSCocoaDocument</string>
<key>CFBundleTypeExtensions</key>
<array>
<string>jscocoa</string>
</array>
<key>CFBundleTypeMIMETypes</key>
<array>
<string>text/jscocoa</string>
</array>
<key>CFBundleTypeName</key>
<string>JSCocoa standalone file</string>
<key>CFBundleTypeRole</key>
<string>Viewer</string>
</dict>
</array>
</dict>
</plist>
File renamed without changes.

0 comments on commit aa45004

Please sign in to comment.