Martin Pärtel

Results 22 issues of Martin Pärtel

Please add git version tags to make e.g. `"watch": "1.3.0"` in a user's bower.json work. I like to pin my deps to versions to keep the build more stable :)

`replaceAll` should not treat its second parameter as a regex. ``` js "1$a2".replace('$a', 'b'); // => "1b2" as expected ``` but ``` js s("1$a2").replaceAll('$a', 'b').value(); // => "1$a2" but should...

Resty won't let me override `Accept`, it only lets me add stuff to it. My Rails app is serving a `Resty.text()` request with HTML because Resty places `text/html` before `text/plain`...

When I cast rays against a heightfield, they sometimes fail to hit. Repro here: https://github.com/dimforge/rapier/compare/master...mpartel:heightfield-bug?expand=1 Output: ``` $ cargo run --release --bin all_examples3 -- --example Heightfield [...] Failed to hit...

The man page documents some known caveats with `--multithreaded`. They should be fixed so we can confidently default to multithreaded mode. A simple global lock around accessing file attributes should...

Sometimes it's less error prone to have a missing directory rather than an empty directory.

feature-request

The "Denying recursive access to mountpoint" check fails.

bug

Turns out `readdir_r` was deprecated around a year ago: https://lwn.net/Articles/696474/ We can probably safely replace it with `readdir`, but should check documentation on OS X and FreeBSD to be sure....

internal-cleanup

When the source dir is deleted, bindfs should watch for it being created again and update its cwd. Could be implemented as follows: 1. Add an inotify watch on the...

feature