Skip to content

Releases: Simnico99/ZirconNet

4.0.2

26 Jan 16:41
Compare
Choose a tag to compare

Fixed and optimized the queue further.

Full Changelog: 4.0.1...4.0.2

4.0.1

26 Jan 16:14
Compare
Choose a tag to compare

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

26 Jan 15:20
Compare
Choose a tag to compare

Major changes to alot of functions + alot of optimizations has been done.

Full Changelog: 3.1.14...4.0.0

3.1.14

25 Jan 19:11
Compare
Choose a tag to compare

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

25 Jan 18:54
Compare
Choose a tag to compare

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

25 Jan 15:02
Compare
Choose a tag to compare

(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

11 Jan 14:23
Compare
Choose a tag to compare
Testing again.

3.1.9

11 Jan 13:52
Compare
Choose a tag to compare

Full Changelog: 3.1.8...3.1.9

3.1.8

11 Jan 13:39
Compare
Choose a tag to compare

Full Changelog: 3.1.7...3.1.8

3.1.7

11 Jan 12:38
Compare
Choose a tag to compare

Full Changelog: 3.1.6...3.1.7