Skip to content

Xcode 4.1 on OS X 10.7 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 49 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
a318d6d
Modernised project for Xcode 4 on OS X 10.7. For some reason the proj…
Jul 25, 2011
0ff13bf
Chnages project configuration names to Debug and Release to increase …
Aug 3, 2011
1c8a01c
Added BlockSignature.h import to fix missing struct ref error.
Jan 20, 2012
0667db5
Turned off the "unnused parameters" warning.
Jan 20, 2012
12dbfc9
Upgraded nib deployment target to 10.6 to fix attribute warnings.
Jan 20, 2012
2fc44b4
added - (oneway void)release; pre declaration to fix compiler warning.
Jan 20, 2012
69d583c
Removed trailing characters to fix compiler warning
Jan 20, 2012
7757600
Fixed dealloc to match pre dec.
Jan 20, 2012
9842a9b
Fixed release declaration to match that defined by NSObject.
Jan 20, 2012
9334d05
Defined -release signature to match NSObject.
Jan 20, 2012
d821619
Added import for <objc/objc-auto.h> as required by objc_memmove_colle…
Jan 20, 2012
7d763a5
Changed selectedView type to id as it clearly isn't an NSView instance.
Jan 20, 2012
e7514c0
Added local FSKeyedUnarchiver variable to fix compiler warning.
Jan 20, 2012
6664b9a
Fixed dictionaryWithCompilationContext: signature and implementation.
Jan 20, 2012
1eff6ae
Cast to id to fix compiler warning.
Jan 20, 2012
e572bb5
Fixed numeric format specifiers.
Jan 20, 2012
933e05b
Cast to id to fix compiler warning
Jan 20, 2012
5cdbd32
Cast to id to fix compiler warning.
Jan 20, 2012
fcacad4
Cast to id to fix compiler warning
Jan 20, 2012
8b3b836
Adde pre dec of initWithRep:
Jan 20, 2012
c9d5cf2
Added todo highlighting method siganture change.
Jan 20, 2012
b4baf56
Added pre-dec of initWithRep:
Jan 20, 2012
b3d7889
Remove nibs addedd by designer
Jan 20, 2012
81706b9
Reverted base SDK to 10.6 to fix compiler warnings with regard to NST…
Jan 20, 2012
93071e1
Fixed base SDK setting for framework target.
Jan 26, 2012
d867d0e
Modernised .gitnore and cleaned up project
Jan 26, 2012
de8a79d
Refactored FSObjectBrowserViewObjectInfo.m in order to reduce the bui…
Mar 19, 2012
8c866be
Changed the NSView, NSWindow and NSControl method names to differenti…
Mar 19, 2012
58d4c50
Removed unnecessary .xcodeproj personal files
tdbit Mar 22, 2012
c79bec6
Merge pull request #1 from tjpd/master
Mar 22, 2012
dca9ead
Added documentation folder and F-script guide PDF.
Mar 22, 2012
35b1b32
Added README.
Mar 22, 2012
71ce63b
Removed unnecessary temporary files, updated .gitignore
tdbit Mar 22, 2012
5133634
Corrected permissions (ugo-x)
tdbit Mar 22, 2012
7bd3ee8
Merge remote-tracking branch 'upstream/master'
tdbit Mar 22, 2012
658a599
Corrected more permissions (ugo-x)
tdbit Mar 26, 2012
af0dcb1
Merge pull request #2 from tjpd/658a5998
Apr 1, 2012
a36979c
Updated to run on 10.8
Sep 5, 2012
e560f73
Merge branch 'master' of github.com:mugginsoft/F-Script
Sep 30, 2012
88b5fe9
Commented out CGLprofilerxxx.h as they are not present in the 10.8 SDK.
Oct 2, 2012
dbe71da
Marked BlockSignature.h as public framework header rather than project.
Oct 2, 2012
6bfb258
Updated for 32/64 bit architecture. Note that direct obj-c isa access…
Nov 25, 2012
e09a74d
Replaced ->isa with object_getClass() to conform to requirements of t…
Nov 25, 2012
0435a9e
Added warning flag -Wmissing-method-return-type and fixed resultant w…
Nov 26, 2012
e63a18a
Added newline to end of heder to silence warnings generated from -Wal…
Nov 26, 2012
bebf3b2
Removed direct use of ->isa and replaced with object_getClass()
Nov 26, 2012
df15b6d
Make 64 bit only + modernise Xcode project.
Aug 7, 2017
7501a63
Fix warning.
Aug 7, 2017
ffbed20
Modernise project
Aug 12, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
# xcode noise
# Xcode
build/*
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
!default.xcworkspace
xcuserdata/
profile
*.moved-aside

# old skool
.svn

# osx noise
## Ignore incredibly annoying .DS_Store files
.DS_Store
profile

## Ignore temporary files
*~.nib
Binary file added Documentation/FScriptGuide.pdf
Binary file not shown.
3,194 changes: 1,004 additions & 2,190 deletions F-Script/DemoAssistant.xib

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions F-Script/FSNewlyAllocatedObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* This software is open source. See the license. */

#import "FSNewlyAllocatedObject.h"

#import <objc/objc-runtime.h>

@implementation FSNewlyAllocatedObject

Expand All @@ -13,7 +13,7 @@ + (id)newlyAllocatedObjectWithTarget:(id)theTarget

- (NSString *)description
{
return [[@"Proxy for a newly allocated " stringByAppendingString:NSStringFromClass(target->isa)] stringByAppendingString:@". Don't forget to initialize it and to use the object returned by the init... method instead of this proxy." ];
return [[@"Proxy for a newly allocated " stringByAppendingString:NSStringFromClass(object_getClass(target))] stringByAppendingString:@". Don't forget to initialize it and to use the object returned by the init... method instead of this proxy." ];
}

- (void)forwardInvocation:(NSInvocation *)anInvocation
Expand Down
Empty file modified F-Script/FScriptAppController.h
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion F-Script/FScriptAppController.m
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sende

- (void)dealloc
{
if ([[NSApplication sharedApplication] delegate] == self)
if ((id)[[NSApplication sharedApplication] delegate] == self)
[[NSApplication sharedApplication] setDelegate:nil];
// since we don't retain outlets infoPanel and interpreterView, we don't have to release them here.
[showConsoleMenuItem release];
Expand Down
Empty file modified F-Script/fs_main.m
100755 → 100644
Empty file.
Empty file removed FScript.xcodeproj/Icon
Empty file.
Loading