Releases: jmattaa/laser
v1.7.6
v1.7.5
v1.7.4
v1.7.3
v1.7.2
What's Changed
This patch adds a line at the end of the output with the total size of all entries when using the -s/--directory-size to provide a summary of all the listed entries.
Full Changelog: v1.7.1...v1.7.2
v1.7.1
What's Changed
This release adress some issues with the git status listing of symlinks and the single entry listing.
- Symlink entries: The git status information wouldn't show correctly it would either return empty brackets or nothing at all, now the issue has been fixed, where symlinks alsow shows the git status.
- Single file listing: Before these commits if you listed a single entry it would always be treated as a regular file, now single entries are handled correctly and colored and outputed as expected.
Full Changelog: v1.7.0...v1.7.1
v1.7.0
What's Changed
Add -s / --directory-size flag
The new -s flag enables the program to calculate and display the sizes of subdirectories. When used, this flag automatically forces the --long flag.
The default value of it can be changed via the L_default_args:
L_default_args = {
-- ...
directory_size = false, -- calculate the sizes of subdirectories
-- ...
}Full Changelog: v1.6.3...v1.7.0
v1.6.3
Minor feature fix
Added the recursive option as a default arg for lua
L_default_args = {
-- ... everything is like before
recursive = false -- boolean to enable recursive tree printing by default
-- ...
}Full Changelog: v1.6.2...v1.6.3
v1.6.2
Fix bug
Fix a bug where calling --no-sort and -r will throw a free address which was not malloc()-ed error.
Full Changelog: v1.6.1...v1.6.2