Caleb Hearon

Results 35 comments of Caleb Hearon

@jjeising did you do `make clean && make`? I made a test program that links against `atkmm` and it seems to work for me: http://pastebin.ubuntu.com/23447534/ Edit: if you post everything...

that's very weird, it doesn't look like `/usr/local/lib/libatk-1.0.0.dylib` was even picked up at all in your main binary... what's the `otool -L` of the main binary before you run the...

I swear it worked for my dependencies of dependencies... maybe because they weren't symbolic links though. I'll look into it and open another PR if I can figure it out

@jjeising I just finished making my own bundler in python 3 [here](https://github.com/chearon/macpack) based largely on this code. I'd be interested to hear if it works for your unique situation. I...

Awesome! Yeah that and probably partly because I used async/await on the processes, so it launches a bunch of them in parallel and exits pretty fast

Deleting the `register_language` lines didn't help that much for me, I ended up turning all of them off with `let g:vue_disable_pre_processors=1`, but even with that it's hard to bear how...

Yeah, crap, everything before the merge is irrelevant. I just used `git checkout -b retina-fixes butler/master` to start a new branch that's at the same HEAD of the master here...does...

It needs a little more work though: * Probably `attrName` should be set to `color` so the quill document is standard (`{color: "#aaa"}`) * The model gets correctly updated with...

This seems to do everything correctly, I'll update it with any fixes: ```javascript const Inline = Quill.import('blots/inline'); class CustomColor extends Inline { constructor(domNode, value) { super(domNode, value); // Map properties...