Nathaniel Perry

Results 16 comments of Nathaniel Perry

This code does work to create a recording: ``` ~/Applications/AndroidTool.app/Contents/Resources/adb shell screenrecord --verbose /sdcard/demo.mp4 (press Ctrl-C to stop) ~/Applications/AndroidTool.app/Contents/Resources/adb pull /sdcard/demo.mp4 ```

Full disclosure, I found that code on the Wiki [Troubleshooting page](https://github.com/mortenjust/androidtool-mac/wiki/Troubleshooting)

Same error here. MCEdit Unified for Java 1.12 and Bedrock v1.5.6.0 ``` Running in fixed mode. Support files are in your Documents folder. Splash load... [ ****** ] ~~~~~~~~~~ Starting...

I thought the whole thing with unified was that it was compatible... Am I missing something?

I see on the website that 1.5 is the latest. Is there a release for 1.6 somewhere else, or is it unreleased?

It took a minute, but I see the download for `MCEdit-Unified 1.6.0.53-testing`. Thanks for the help!

That worked. It looks like it doesn't support some of the new blocks, but it is working and that's what I needed. Thanks again.

> Guys I think this might be a crypto scam....... I reported it. You can too if you want.

@clarkie This might be a good opportunity to create an organization and transfer the project to that in order to help better maintain it going forward.

This seems to work to promisify everything: ``` javascript var Promise = require("bluebird"); var vogels = require("vogels"); Promise.promisifyAll(require('vogels/lib/table').prototype); Promise.promisifyAll(require('vogels/lib/item').prototype); Promise.promisifyAll(require('vogels/lib/query').prototype); Promise.promisifyAll(require('vogels/lib/scan').prototype); Promise.promisifyAll(require('vogels/lib/parallelScan').prototype); var vogels_model = vogels.model; vogels.model = function(name, model){...