Skip to content

Commit

Permalink
Getting ready for V0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tommaier123 committed Feb 17, 2022
1 parent 8943dbe commit 2e45d91
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
4 changes: 0 additions & 4 deletions NoodleManagerX/Models/DownloadScheduler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ private static void QueueChanged(object sender, NotifyCollectionChangedEventArgs
if (queue.Count > 0 && !running)
{
running = true;
System.Diagnostics.Stopwatch stopWatch = new System.Diagnostics.Stopwatch();
stopWatch.Start();
await Task.Delay(100);//not sure why this is necessary for requeueing. Seems like queuecount is !=0 but the queue is empty?
MainViewModel.Log("Started queue check");
while (queue.Count > 0)
Expand All @@ -96,8 +94,6 @@ private static void QueueChanged(object sender, NotifyCollectionChangedEventArgs
}
}
running = false;
stopWatch.Stop();
Console.WriteLine("Time taken " + stopWatch.Elapsed.Minutes + ":" + stopWatch.Elapsed.Seconds);
MainViewModel.Log("Stopped queue check");
}
});
Expand Down
4 changes: 1 addition & 3 deletions NoodleManagerX/Models/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,12 @@ class MainViewModel : ReactiveObject
//multiple files
//figure out how to detect quest connection
//update reminder
//make sure all streams are closed when no longer needed
//don't leave thread safety up to luck
//get a updated at timestamp for updating, published at is fine for filesystem timestamp
//window unmoveable when dialog is launched during startup



[Reactive] private string version { get; set; } = "V0.5.0";
[Reactive] private string version { get; set; } = "V0.6.0";

public static MainViewModel s_instance;

Expand Down
2 changes: 1 addition & 1 deletion NoodleManagerX/NoodleManagerX.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net5.0-windows</TargetFrameworks>
<ApplicationIcon>icon-nm.ico</ApplicationIcon>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
Expand Down

0 comments on commit 2e45d91

Please sign in to comment.