Melissa
Melissa
Add a verbose flag which controls whether to show filenames while compiling or not. When we're not being verbose, we could potentially display a progress spinner as well!
Would it be possible to add authentication with scopes? I'm pretty sure I need the `modposts` scope in order to delete posts, because right now I keep getting 403 Forbidden...
I don't really understand how to properly use this class. Here's my current usage: ```c++ // during setup: m_limiter.setSampleRate(sampleRate); m_limiter.setNumChannels(2); m_limiter.setMode(gin::Dynamics::limiter); m_limiter.setParams( 0.002f, // Attack in seconds 0.08f, // Release...
If you have a big map, it looks like you need a huge amount of steps in order to find a path, even though point A and point B are...
I am making an Openplanet plugin called "Better Chat", which replaces the in-game chat. It handles emotes and many other nice things. Here is what it looks like on an...
### Version 4.1.5 ### Reproduction link [jsfiddle.net/16nudxt0/](https://jsfiddle.net/16nudxt0/) ### Steps to reproduce In the jsfiddle, click on "bar". ### What is expected? I would expect the bool values after "foo" to...
Did some profiling a couple weeks ago, and noticed that every word in a TBEditField is rendered individually, even if there's no different style applied to any of them, causing...
I just managed to get our application running on the shape rasterizer branch, and played around with it a bit. Looks really powerful so far. In #44 you mentioned that...
What's the best way to reload a skin at runtime? Currently, I'm using this: ``` tb::g_tb_skin->UnloadBitmaps(); tb::g_tb_skin->Load("resources/default_skin/skin.tb.txt"); m_root.Invalidate(); ``` This works for colors and such, but not for `padding` for...
So apparently, we can do something like this: ``` #define CGV(x, y) CGVectorMake(x, y) #define CGP(x, y) CGPointMake(x, y) #define CGVop(a, op, b) CGV(a.dx op b.dx, a.dy op b.dy) #define...