Skip to content

Commit

Permalink
Bump version to beta 3, add review to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderSade committed Jul 23, 2019
1 parent 4732fc4 commit 172edcc
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
6 changes: 4 additions & 2 deletions DirLister.Core/Application/FileReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ private List<FileEntry> ListFiles()
float maxProgress = _configuration.IncludeMediaInfo ? 30 : 80;
var stepSize = (int)Math.Round(maxProgress / _configuration.InputFolders.Count, 0);
var position = 10;
foreach (var inputFolder in _configuration.InputFolders)
for (var i = 0; i < _configuration.InputFolders.Count; i++)
{
var inputFolder = _configuration.InputFolders[i];
var files = ParallelFindNextFile(inputFolder);
position += stepSize;
_configuration.SendProgress(position, "Gathering files");
Expand Down Expand Up @@ -194,8 +195,9 @@ private List<FileEntry> ParallelFindNextFile(string path)
{
if (FindNextFile(x, out var subDirectoryFileList))
{
foreach (var entry in subDirectoryFileList)
for (var i = 0; i < subDirectoryFileList.Count; i++)
{
var entry = subDirectoryFileList[i];
fileList.Add(entry);
}
}
Expand Down
2 changes: 1 addition & 1 deletion DirLister.UI/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Sander.DirLister.UI
{
internal static class Program
{
internal static readonly string Version = "v2 beta 2";
internal static readonly string Version = "v2 beta 3";
internal static readonly string VersionString = $"DirLister {Version}";

/// <summary>
Expand Down
6 changes: 6 additions & 0 deletions VersionHistory.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

<h3>Version history</h3>

<h4>v2.beta 3</h4>
<ul>
<li>Fix issue with incorrect size for large (2GB+) files</li>
</ul>


<h4>v2.beta 2</h4>
<ul>
<li>Add "Open" button to output folder</li>
Expand Down
9 changes: 9 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Easy-to use utility for quickly listing folder or drive contents. DirLister may
* Can include system and hidden files
* Fast, free, open source

#### Reviews
* https://www.ghacks.net/2019/07/22/dirlister-open-source-program-to-print-a-list-of-files-and-folders/

### Installation

* Download from [Releases](https://github.com/SanderSade/DirLister/releases)
Expand Down Expand Up @@ -56,6 +59,12 @@ While most of the preferences can be set from UI, there are some advanced option

<h3>Version history</h3>

<h4>v2.beta 3</h4>
<ul>
<li>Fix issue with incorrect size for large (2GB+) files</li>
</ul>


<h4>v2.beta 2</h4>
<ul>
<li>Add "Open" button to output folder</li>
Expand Down
3 changes: 3 additions & 0 deletions readme.pre.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Easy-to use utility for quickly listing folder or drive contents. DirLister may
* Can include system and hidden files
* Fast, free, open source

#### Reviews
* https://www.ghacks.net/2019/07/22/dirlister-open-source-program-to-print-a-list-of-files-and-folders/

### Installation

* Download from [Releases](https://github.com/SanderSade/DirLister/releases)
Expand Down

0 comments on commit 172edcc

Please sign in to comment.