Skip to content

Commit

Permalink
prepare release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Marko Koleznik authored and Marko Koleznik committed Sep 14, 2015
1 parent cc7ae27 commit b2d12a5
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,23 @@ AgdaWriter.xcodeproj/project.xcworkspace/xcuserdata/markokoleznik.xcuserdatad/xc
*.xcbkptlist

*.xcbkptlist

Agda Writer/Base.lproj/.DS_Store

Agda Writer/Images.xcassets/.DS_Store

Agda Writer/Images.xcassets/AppIcon.appiconset/.DS_Store

Agda WriterTests/.DS_Store

Agda Writer/agda/.DS_Store

Agda Writer/.DS_Store

Agda Writer.xcodeproj/xcuserdata/markokoleznik.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

Agda Writer.xcodeproj/xcuserdata/markokoleznik.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

*.xcbkptlist

.DS_Store
Binary file not shown.
11 changes: 9 additions & 2 deletions Agda Writer/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,18 @@ @implementation AppDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application

// check for agda!
if ([[AWNotifications agdaLaunchPath] isEqualToString:@""]) {
// agda path is not yet set
NSArray * reasonablePlacesForAgda = @[@"~/.cabal/bin/agda", @"~/Library/Haskell/bin/agda", @"/Library/Haskell/bin/agda"];



NSArray * reasonablePlacesForAgda =
@[
@"~/.cabal/bin/agda",
@"~/Library/Haskell/bin/agda",
@"/Library/Haskell/bin/agda"
];
for (NSString * path in reasonablePlacesForAgda) {

if ([self isAgdaAvaliableAtPath:path]) {
Expand Down

0 comments on commit b2d12a5

Please sign in to comment.