diff --git a/CHANGES.md b/CHANGES.md index f205d49..6b5d321 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/Sloth.xcodeproj/project.pbxproj b/Sloth.xcodeproj/project.pbxproj index e8eb217..b8a47b6 100644 --- a/Sloth.xcodeproj/project.pbxproj +++ b/Sloth.xcodeproj/project.pbxproj @@ -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; @@ -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; diff --git a/TODO.md b/TODO.md index 868e4de..1044fd8 100644 --- a/TODO.md +++ b/TODO.md @@ -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 diff --git a/source/SlothController.h b/source/SlothController.h index c01203c..dbc30a4 100644 --- a/source/SlothController.h +++ b/source/SlothController.h @@ -31,13 +31,13 @@ #import #import "VolumesPopUpButton.h" -@interface SlothController : NSObject < NSApplicationDelegate, - NSWindowDelegate, - NSOutlineViewDataSource, - NSOutlineViewDelegate, - NSMenuDelegate, - NSMenuItemValidation, - VolumesPopUpButtonDelegate > +@interface SlothController : NSObject - (IBAction)kill:(id)sender; - (void)revealItemInFinder:(NSDictionary *)item; @end diff --git a/source/VolumesPopUpButton.h b/source/VolumesPopUpButton.h index 799b7cf..9c9464a 100644 --- a/source/VolumesPopUpButton.h +++ b/source/VolumesPopUpButton.h @@ -1,5 +1,5 @@ /* - Copyright (c) 2018-2020, Sveinbjorn Thordarson + Copyright (c) 2018-2024, Sveinbjorn Thordarson All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/source/VolumesPopUpButton.m b/source/VolumesPopUpButton.m index 44f5d61..572f2e8 100644 --- a/source/VolumesPopUpButton.m +++ b/source/VolumesPopUpButton.m @@ -1,5 +1,5 @@ /* - Copyright (c) 2018-2020, Sveinbjorn Thordarson + Copyright (c) 2018-2024, Sveinbjorn Thordarson All rights reserved. Redistribution and use in source and binary forms, with or without modification,