Skip to content

Commit

Permalink
Updated copyright date / Fross library version
Browse files Browse the repository at this point in the history
  • Loading branch information
frossm committed Feb 4, 2023
1 parent 90d59c7 commit 3e0b154
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2011-2022 Michael Fross
Copyright (c) 2011-2023 Michael Fross

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# DirSize
<img align="right" width="200" src="https://github.com/frossm/dirsize/raw/master/graphics/PostIt-512x512.jpg">DirSize is a directory reporting tool. It recursively scans the provided (or current) directory, and reports the number of files and director sizes of each subdirectory present. It also defaults to sorting by by directory size, but there are other options.

Lastly, it's written in Java and packaged into a single executable JAR file. All of the dependencies built in so it should run anywhere. Howver, I've only tested it on Windows 10 and Ubuntu.
Lastly, it's written in Java and packaged into a single executable JAR file. All of the dependencies built in so it should run anywhere. Howver, I've only tested it on Windows 10/11 and Ubuntu.

## Maps
One of the interesting things about DirSize is it shows a visual representation of the file sizes of counts. I call this a SizeMap or FilesMap and it's the area to the right of the output. If you sort by size (default or -ss) or directories (-sd) is will show the SizeMap. If sorted by file counts (-sf) the map will change to show a visual representation of the number of files per subdirectory, sorted from high to low.
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>org.fross</groupId>
<artifactId>dirsize</artifactId>
<version>2.2.17</version>
<version>2.2.18</version>

<name>dirsize</name>

Expand Down Expand Up @@ -186,7 +186,7 @@
<dependency>
<groupId>org.fross</groupId>
<artifactId>library</artifactId>
<version>2022.09.07</version>
<version>2022.11.21</version>
</dependency>

</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dirsize
version: '2.2.17'
version: '2.2.18'
summary: The Command line Directory Reporting Tool
description: |
DirSize is a directory reporting tool. It recursively scans
Expand Down Expand Up @@ -36,7 +36,7 @@ parts:
plugin: maven
source: https://github.com/frossm/library.git
source-type: git
source-tag: 'v2022.09.07'
source-tag: 'v2022.11.21'
maven-options: [install]

dirsize:
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fross/dirsize/Benchmark.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* DirSize is a simple command line based directory size reporting tool
*
* Copyright (c) 2019-2022 Michael Fross
* Copyright (c) 2019-2023 Michael Fross
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fross/dirsize/Help.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* DirSize is a simple command line based directory size reporting tool
*
* Copyright (c) 2019-2022 Michael Fross
* Copyright (c) 2019-2023 Michael Fross
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fross/dirsize/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* DirSize is a simple command line based directory size reporting tool
*
* Copyright (c) 2019-2022 Michael Fross
* Copyright (c) 2019-2023 Michael Fross
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fross/dirsize/ScanDir.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* DirSize is a simple command line based directory size reporting tool
*
* Copyright (c) 2019-2022 Michael Fross
* Copyright (c) 2019-2023 Michael Fross
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/fross/dirsize/SizeMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* DirSize is a simple command line based directory size reporting tool
*
* Copyright (c) 2019-2022 Michael Fross
* Copyright (c) 2019-2023 Michael Fross
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 3e0b154

Please sign in to comment.