Kan18
Kan18
This issue also happens for me on macOS 12 - I fixed it using the same "NSURLSession Websocket" workaround, the "Experimental Features" menu is available through the Develop menu in...
I think this might break again when CC:T 1.110.0 is released, here are some other ideas I had: - Multiply the minor version by 10 if it is >= 100...
Here are some more ideas: (Install-related) - [ ] Make it easy to develop and test separate forks by adding a branch option to the Opus installer (branches as in...
You can do something like this by modifying [skymodem.lua](https://github.com/hugeblank/qs-cc/blob/master/src/skymodem.lua) to fit Opus, and then putting it in sys/init, although more generically, I think a "custom modem for networking" would be...
Networks with hundreds of chests are not unheard of on SwitchCraft (To be clear, this affects 1.12, 1.19, and probably other versions but I haven't tested with them) - my...
Another possibly-related issue: ``` print(-0.0) ``` prints -0 on versions of PUC Lua before 5.3, -0.0 on versions of PUC Lua after/including 5.3, but 0 on Cobalt
> Another interesting issue with PUC lua5.1(linux): > > ``` > > =string.format("%d", 0/0) > -9223372036854775808 > > =("%d").format(0/0) > -nan > ``` shouldn't the `("%d").format` be `("%d"):format` here?
> It's probably a sensible idea, but I have no clue how to do it without causing problems for existing programs. Idea I just had: split multi-line pastes into the...
I think Anavrins mentioned at one point that returning multiple values could be a good implementation. I can try working on that (this is somewhat urgent now, since SwitchCraft 2...