Andrew Bradley

Results 551 comments of Andrew Bradley

I made a bunch of updates and pushed a new version to `@cspotcode/gitlogg`. You can test it with: ``` $ npm install -g @cspotcode/gitlogg $ gitlogg ./path/to/repo ``` EDIT: forgot...

OK, I'll take a look tomorrow. On Dec 3, 2016 14:31, "Wallace Sidhrée" wrote: > Hi again @cspotcode . I'm testing on a new > machine with everything installed from...

I fixed the errors you were seeing. I think it was caused by double- versus single-quotes in a bash script; I guess we're running different versions of bash? You can...

Are there any workaround until this is added to cmd-ts? Catching and detecting the help error and changing `process.exitCode` or something? Also, I'm curious, why was it implemented this way?...

I think there is another issue here: even if the files are bundled into the virtual filesystem, it cannot be executed. I'm guessing node's ESM resolver does not use the...

@jraoult thanks for taking a look. I think you're correct, that is the file to put tests. It looks like we have two kinds of tests: a) tests that `createSwcConfig()`...

Do any pyglet draw calls modify the view matrix, projection, or viewport? If yes, we must save and reset these values in context manager. I can't find any pyglet draw...

I also can't replicate, seems fixed to me.

Responding to https://github.com/touilleMan/godot-python/issues/174#issuecomment-647773096 Is there a script to re-generate these bindings against the latest version of Godot? Is this feature still being worked on, or has it been put off...

Should we apply the same scaling for `arcade.schedule()` / `arcade.schedule_once()`? Or should we deliberately keep them on real-world time for simplicity? Could be tricky: `arcade.schedule_once(thing, 5) # run in 5...