Skip to content

Commit

Permalink
Updated proj settings, version docs + headers
Browse files Browse the repository at this point in the history
  • Loading branch information
sveinbjornt committed Apr 24, 2024
1 parent 260c592 commit c9da6ed
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## XX/11/2024 - Version 3.3

* Added path bar which is shown when item is selected. Can be disabled.
* Added path bar which is shown when a file system item is selected. Can be disabled.
* Now defaults to killing w. SIGTERM. The old behaviour of sending SIGKILL can be set in Prefs.
* Minor bug fixes and improvements.

### 30/01/2022 - Version 3.2

Expand Down
4 changes: 2 additions & 2 deletions Sloth.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@
INFOPLIST_FILE = resources/Info.plist;
INFOPLIST_OUTPUT_FORMAT = binary;
INFOPLIST_PREPROCESS = NO;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET = 10.13;
ONLY_ACTIVE_ARCH = YES;
PLIST_FILE_OUTPUT_FORMAT = binary;
SDKROOT = macosx;
Expand Down Expand Up @@ -563,7 +563,7 @@
INFOPLIST_FILE = resources/Info.plist;
INFOPLIST_OUTPUT_FORMAT = binary;
INFOPLIST_PREPROCESS = NO;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET = 10.13;
ONLY_ACTIVE_ARCH = NO;
PLIST_FILE_OUTPUT_FORMAT = binary;
SDKROOT = macosx;
Expand Down
6 changes: 3 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
* Create visualization of pipes between processes in special view
* Preserve expanded items between refreshes
* Upgrade Sparkle version (latest supports 10.13+)

# TODO for Sloth 3.3

* "Copy" on app/process should copy filesystem representation if possible
* Update antiquated screenshots in README
* Get contextual menu working properly in path bar (like in KatSearch)

# TODO for Sloth 3.3

DONE * Always (re)select "General" tab when Preferences are shown
DONE Show Path Control w. selected path at bottom of table view when item selected
DONE * SIGTERM vs. SIGKILL
14 changes: 7 additions & 7 deletions source/SlothController.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
#import <Cocoa/Cocoa.h>
#import "VolumesPopUpButton.h"

@interface SlothController : NSObject < NSApplicationDelegate,
NSWindowDelegate,
NSOutlineViewDataSource,
NSOutlineViewDelegate,
NSMenuDelegate,
NSMenuItemValidation,
VolumesPopUpButtonDelegate >
@interface SlothController : NSObject <NSApplicationDelegate,
NSWindowDelegate,
NSOutlineViewDataSource,
NSOutlineViewDelegate,
NSMenuDelegate,
NSMenuItemValidation,
VolumesPopUpButtonDelegate>
- (IBAction)kill:(id)sender;
- (void)revealItemInFinder:(NSDictionary *)item;
@end
2 changes: 1 addition & 1 deletion source/VolumesPopUpButton.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2018-2020, Sveinbjorn Thordarson <[email protected]>
Copyright (c) 2018-2024, Sveinbjorn Thordarson <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
Expand Down
2 changes: 1 addition & 1 deletion source/VolumesPopUpButton.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2018-2020, Sveinbjorn Thordarson <[email protected]>
Copyright (c) 2018-2024, Sveinbjorn Thordarson <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
Expand Down

0 comments on commit c9da6ed

Please sign in to comment.