added DanielSWolf to ProgressBar, because he made it.
This commit is contained in:
16
Program.cs
16
Program.cs
@@ -8,9 +8,19 @@ using System.IO;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Serialization;
|
||||
|
||||
/*
|
||||
* Autor : Pablu
|
||||
* Email : pablu23@gmx.de
|
||||
* Erstelldatum : 25.06.2020
|
||||
* Last change : 25.06.2020
|
||||
*
|
||||
*
|
||||
* TODO : Add comments, bug fixes. Add Background removal. Finish Project.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace ConvertTo16x16
|
||||
{
|
||||
|
||||
class Count
|
||||
{
|
||||
public int Argb { get; set; }
|
||||
@@ -163,8 +173,6 @@ namespace ConvertTo16x16
|
||||
using (StreamReader r = new StreamReader(@"C:\Users\zamk\Documents\MyProjects\16x16\settings.json"))
|
||||
{
|
||||
settings = JsonConvert.DeserializeObject<Settings>(r.ReadToEnd());
|
||||
/*string json = r.ReadToEnd();
|
||||
List<Settings> items = JsonConvert.DeserializeObject<List<Settings>>(json);*/
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
@@ -175,8 +183,6 @@ namespace ConvertTo16x16
|
||||
using (StreamReader r = new StreamReader(@"C:\Users\zamk\Documents\MyProjects\16x16\settings.json"))
|
||||
{
|
||||
JsonConvert.DeserializeObject<Settings>(r.ReadToEnd());
|
||||
/*string json = r.ReadToEnd();
|
||||
List<Settings> items = JsonConvert.DeserializeObject<List<Settings>>(json);*/
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
using System.Text;
|
||||
using System.Threading;
|
||||
|
||||
// From DanielSWolf @ https://gist.github.com/DanielSWolf/0ab6a96899cc5377bf54
|
||||
|
||||
/// <summary>
|
||||
/// An ASCII progress bar
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user