Releases: Simnico99/ZirconNet
4.0.2
Fixed and optimized the queue further.
Full Changelog: 4.0.1...4.0.2
4.0.1
Added BufferedThreadDispatcher that allow a maximum of threads to modify the ui without freezing the ui.
Full Changelog: 4.0.0...4.0.1
4.0.0
Major changes to alot of functions + alot of optimizations has been done.
Full Changelog: 3.1.14...4.0.0
3.1.14
Added the inclusive extension to Ranges and int.
foreach(var i in (0..10).Inclusive())
{
Console.WriteLine(i.ToString());
}
foreach(var i in 0..10.Inclusive())
{
Console.WriteLine(i.ToString());
}
Full Changelog: 3.1.13...3.1.14
3.1.13
Added the inclusive extension to Ranges.
foreach(var i in (0..10).Inclusive())
{
Console.WriteLine(i.ToString());
}
Full Changelog: 3.1.12...3.1.13
3.1.12
(Corrected)
Fixed build issues.
Added extension for range to be able to write for loops more cleanly in netcoreapp3.1+
//Old
for(var i = 0; i <= 10; i++)
{
Console.WriteLine(i.ToString());
}
//New
foreach(var i in 0..10)
{
Console.WriteLine(i.ToString());
}
Special credits to Nick Chapsas on youtube for this method.
Aka @Elfocrash on GitHub.
Full Changelog: 3.1.10...3.1.11
3.1.10
3.1.9
Full Changelog: 3.1.8...3.1.9
3.1.8
Full Changelog: 3.1.7...3.1.8
3.1.7
Full Changelog: 3.1.6...3.1.7