diff --git a/FindLargestFolders/FindLargestFolders.csproj b/FindLargestFolders/FindLargestFolders.csproj
index f72803b..03799c6 100644
--- a/FindLargestFolders/FindLargestFolders.csproj
+++ b/FindLargestFolders/FindLargestFolders.csproj
@@ -24,9 +24,14 @@
false
false
true
- 9
- 1.0.0.%2a
- false
+ https://github.com/karusb/FLF-FindLargeFolders
+ https://github.com/karusb/FLF-FindLargeFolders
+ Find Large Folders
+ BazWare
+ 1
+ 2.0.1.%2a
+ true
+ true
true
true
@@ -53,7 +58,8 @@
1FE631B04F6089ADFBBEA6FF2DC114C58B672ECA
- signature.pfx
+
+
true
@@ -65,7 +71,7 @@
true
- signature.pfx
+ signature2.pfx
flfico_Lrk_icon.ico
@@ -136,7 +142,7 @@
Settings.settings
True
-
+
diff --git a/FindLargestFolders/Form1.cs b/FindLargestFolders/Form1.cs
index 2232314..b7804e5 100644
--- a/FindLargestFolders/Form1.cs
+++ b/FindLargestFolders/Form1.cs
@@ -17,6 +17,9 @@ namespace FindLargestFolders
public partial class Form1 : Form
{
+/*TODO: Cop kutusu = delete icon
+
+ */
Dictionary directoryUI = new Dictionary();
Dictionary parentSizeMap = new Dictionary();
Dictionary[]> childSizeMap = new Dictionary[]>();
@@ -447,7 +450,10 @@ private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEve
progressUI.SetOperationName("Preparing large folders...");
progressUI.SetProgress(e.ProgressPercentage - 200);
progressUI.SetItemName(lastWorkingItem.Name);
- directoryUI[lastWorkingItem.FullName].Enabled = true;
+ if (directoryUI.ContainsKey(lastWorkingItem.FullName))
+ {
+ directoryUI[lastWorkingItem.FullName].Enabled = true;
+ }
}
}
diff --git a/FindLargestFolders/Properties/AssemblyInfo.cs b/FindLargestFolders/Properties/AssemblyInfo.cs
index 1a0f5ec..7755463 100644
--- a/FindLargestFolders/Properties/AssemblyInfo.cs
+++ b/FindLargestFolders/Properties/AssemblyInfo.cs
@@ -7,7 +7,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BazWare FLF - Find Large Folders")]
-[assembly: AssemblyDescription("")]
+[assembly: AssemblyDescription("Find Large Folders")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("BazWare")]
[assembly: AssemblyProduct("BazWare FLF - Find Large Folders")]
diff --git a/FindLargestFolders/Utilities.cs b/FindLargestFolders/Utilities.cs
index 00f021f..996b9cf 100644
--- a/FindLargestFolders/Utilities.cs
+++ b/FindLargestFolders/Utilities.cs
@@ -137,7 +137,6 @@ public static List> CreateSizeMap(string path)
sizeList.Add(new Tuple(depth2[j].FullName, Utilities.GetDirSize(depth2[j])));
}
sizeList.Sort((x, y) => y.Item2.CompareTo(x.Item2));
- sizeList.Reverse();
return sizeList;
}
public static List> GetFoldersMatchingSizePercentage(long folderSize,int matchPercentage, List> sizeMap)