Zach Barrier
Zach Barrier
How is this coming along? I'm remaking pacman for the web and have it working except main menu and cut scenes. Audio doesn't work on mobile, was hoping web audio...
Hey, thanks for the reply. Once I finish the project, I may take a stab at adding web audio api support if no one has added it yet.
@matthijsgroen Have you started working on the WebAPI? I'm in need of this also, but do not have the time to implement it myself yet.
Yeah, using anything other than Lisp is a dead giveaway.
Using .NET Aspire causes this issue but everything works fine now without Aspire. It should be consistent.
Can we get an updated nuget with VS 2022 support?
```c# // ... _history.Add(item); _historyIndex = _history.Count - 1; if (_history.Count > _historyMaxSize) { _history.RemoveAt(0); // Need to add here or move the _historyIndex set below if _historyIndex--; } //...
No problem, great work on this library. I'm just getting into Avalonia and found my way to your lib, extremely helpful.
Source generators may be the best option for replacing the reflection code. I too find tremendous value in this library and have a need for AOT compatibility.
This work around only works for the previous version of Aspire. The latest (8.0.2) requires Azure.Storage.Blobs >= 12.20.0. Is there another work around for 8.0.2?