Micah
Micah
I'm surprised that this isn't an existing issue given that there's on-going discussion about it on Discord, but here we go. In order for full-moon to be used for a...
In the case that you forget an `end` somewhere in a Lua file, the error emitted by Full Moon makes it difficult to diagnose where the `end` should have been....
[On November 15th (38 days from now), Roblox will be blocking several ports from HttpService.](https://devforum.roblox.com/t/port-restrictions-for-httpservice/1500073) These are: - any port below `1024` except `80` and `443` - port `1194` This...
It's been revealed while helping someone on their implementation that the documentation for referents is wrong! It doesn't say that referents are bigendian or that they're transformed. This should be...
Some properties (like `Instance.Tags` and `Instance.AttributesSerialize`) are stored in special strings called `BinaryStrings`. All of these have different formats depending upon what the property is, and we should document those...
I have an element like this: ```xml 😃 ``` If those characters are literally interpreted, they should be the byte sequence `f0 9f 98 83`, which should be U+1F603, or...
The version of [`notify`](https://crates.io/crates/notify) we are using as a backend for `memofs` is over 3 years out of date. In that time, Apple has released its own chips, MacOS has...
Currently, we trust the user to choose their own extension when building. However, this allows mistakes because people can build models as place files or vice versa. Given that this...
Ref properties have been neglected by Rojo for a long time, in no small part because of the potential complexity of their implementation. We've gotten by since they've been handled...
Closes #205. This introduces new API that allows for the plugin to request a list of Instances via their ID to be built and placed into the content folder and...