File tree Expand file tree Collapse file tree 4 files changed +7
-12
lines changed
Expand file tree Collapse file tree 4 files changed +7
-12
lines changed Original file line number Diff line number Diff line change 55### 13/11/2025 - Version 3.4.1
66
77* New application icon
8- * Fix path bar contextual menu handling
9- * Minor UI and bug fixes
10- * Some code modernization
8+ * Improved path bar contextual menu handling
9+ * Minor interface tweaks and bug fixes
10+ * Code modernization
11+ TODO: * Update antiquated screenshots in README
1112
1213### 19/05/2025 - Version 3.4
1314
Original file line number Diff line number Diff line change 1- # TODO for Sloth 3.5
1+ # TODO for Sloth
22
33* Fix checking Regex and Case Insensitive in filter field options
44* Preserve selection between refreshes (preserve expanded items between refreshes?)
88* Add tests for lsof output parsing
99* Click on connected process f. pipes to select and show info of that process
1010* Create visualization of pipes between processes in special view
11-
12- ## For Sloth 3.4.1
13-
14- * Update antiquated screenshots in README
1511* Fix exception raised when "unknown file type" is selected
16-
Original file line number Diff line number Diff line change 2323 <key >CFBundleSignature </key >
2424 <string >???? </string >
2525 <key >CFBundleVersion </key >
26- <string >362 </string >
26+ <string >363 </string >
2727 <key >LSApplicationCategoryType </key >
2828 <string >public.app-category.utilities </string >
2929 <key >LSMinimumSystemVersion </key >
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ - (void)populateMenu {
117117 [volumesMenu addItem: item];
118118 [volumesMenu addItem: [NSMenuItem separatorItem ]];
119119
120- // NEW METHOD: Add all filesystems (except /dev)
120+ // Add all filesystems (except /dev)
121121 for (NSNumber *fsid in [filesystems allKeys ]) {
122122 NSDictionary *fs = filesystems[fsid];
123123 if ([fs[@" mountpoint" ] isEqualToString: @" /dev" ]) {
@@ -142,7 +142,6 @@ - (void)populateMenu {
142142 [item setToolTip: fs[@" mountpoint" ]];
143143 [item setRepresentedObject: fs];
144144 [volumesMenu addItem: item];
145-
146145 }
147146
148147 // Restore selection, if possible
You can’t perform that action at this time.
0 commit comments