Mario Ranftl
Mario Ranftl
Bug: Navigating back to the root page does not clear out dynamically set font title.
Tried that just now, works way more consistent now. Just an idea: To keep apps restricted to run in a single instance only, one might want to add this flag...
@adam-lynch example procedure after update first start: ``` javascript var pkg = require('./package.json'); var fs = require('fs'); if (pkg["single-instance"] === false) { pkg["single-instance"] = true; fs.writeFile('./package.json', JSON.stringify(pkg), function(err) { if...
@adam-lynch Well it's really just an **hack-y** idea, I'm really not sure if this "trick" will work consistently across all platforms, so don't use it in production. It would be...
I'm using node-webkit-updaterto create a desktop variant of [Cryptocat](https://github.com/majodev/cryptocat/tree/master/src/node-webkit) ([ticket](https://github.com/cryptocat/cryptocat/issues/566)), hence this issue is of high priority for me (I'm no security expert). Let's assert that the most up-to-date application's...
@sashahilton00 OK, big thanks for providing this important information! I think the [Sparkle Update Framework](https://github.com/sparkle-project/Sparkle/wiki/Publishing-An-Update) handles signing + checking in a same manner as described by you. So, to accomplish...
If anyone is interested in contributing this to node-webkit-updater (or securing your own application), I've implemented DSA signing and verifying today in my fork of Cryptocat. The DSA Signature gets...
@sashahilton00 Currently not, but I'll change my mind maybe if I have some free time in the future (and nobody had time to contribute it already). To integrate it here,...
I also felt that providing such a implementation is a bit over the top within this package. It depends on too many side factors + I don't want to force...
WIP, still requires deprecation switch.