progmars
progmars
Found a fix: ``` protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified) { if (DesignMode || IsDisposed) { base.SetBoundsCore(x, y, width, height, specified); return; }...
Confirming something similar with value redraw issues. When opening a dropdown and moving your mouse over the items, sometimes you can notice the dropdown suddenly replacing its value with the...
This got me as well, spent quite a few minutes investigating file paths, formats and whatnot, and finally found the faulty place: https://github.com/dwmkerr/sharpgl/blob/9a18e2624f488635ee87d4ee5a75aa2e6df09cdd/source/SharpGL/Core/SharpGL.Serialization/Wavefront/ObjFileFormat.cs#L254 Fortunately, it was pretty easy to create...
What has changed with the recent merge? Was the "PluggableUSBSerial - fix race condition on rx_buffer" included? Does it mean that bytes will not be missing from the middle of...
CSR dongles seem to have some issues in some Linux kernel versions. But maybe that's because of crappy Chinese clones. And maybe sunxi is able to fix these issues. Or...
Actually, my initial idea of the fix was insufficient; it failed for the same reason in tts.py. So it needs two fixes: core.py: with open(os.path.join("rvc", "lib", "tools", "tts_voices.json"), encoding='utf-8') as...
@AznamirWoW Wondering if this would affect Python JSON loader as well? Is it using this Windows setting? @blaisewf I cloned the latest main, just to be sure my PR gets...
Ah, it looks like these were the changes that made it impossible to start Applio: https://github.com/IAHispano/Applio/pull/729 Something might have been missing in that PR. Maybe it expects some kind of...
@AznamirWoW Ok, I'll try that. I used git clone mostly because I wanted to make sure that my PR could be merged above the latest code without conflicts (and also...
I recently used Mozilla Common Voice dataset to finetune another TTS model blindly following their instructions, and it worked ok. It would be nice if Chatterbox too had out-of-the-box instructions...