Skip to content

Commit 8460006

Browse files
committed
Updated documentation
1 parent 5dd3d7f commit 8460006

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

CHANGES.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
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

TODO.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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?)
@@ -8,9 +8,4 @@
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-

resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
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>

source/Util/VolumesPopUpButton.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)