Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix copy task | Dan Finlay | 2016-07-27 | 1 | -1/+0 |
| | |||||
* | Fix chrome build | Dan Finlay | 2016-07-27 | 1 | -2/+2 |
| | |||||
* | Store versioned builds in builds folder | Dan Finlay | 2016-07-27 | 1 | -4/+5 |
| | |||||
* | Add platform specific builds and zip tasks (#486) | Dan Finlay | 2016-07-27 | 1 | -12/+41 |
| | | | | | | | | | | | | | | | | | | | | | | | | * Add platform specific folders to dist folder * Remove gulp hacks * Add platform specific bundling dev and dist tasks now build into platform-specific folders within the `dist` folder. Added tasks `gulp zip` and `gulp dist`. `zip` builds the platform-specific folders into platform-specific bundles within the `dist` folder. `dist` builds and then zips all at once. * Fix chrome bundle zipping * Fix broken reference in eth warning * Fix but where web3.eth.accounts are not available in firefox. * Bump changelog | ||||
* | Inject inpage script synchronously | Dan Finlay | 2016-07-26 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | Huge thanks to the Firefox team, for their help on the issue of our long-standing inpage script race condition. http://stackoverflow.com/questions/38577656/how-can-i-make-a-firefox-add-on-contentscript-inject-and-run-a-script-before-oth The problem is that we were injecting a `script` tag and assigning its `src` attribute, which triggers an asynchronous fetch request, and does not guarantee execution order! (That was news to me!) Instead, I'm now assigning the `script` tag a `textContent` value of the script to inject, and it seems to fix the problem! There is also a Firefox-only API that could solve this whole problem in an even more elegant way, so we might want to expose a code path for that solution later on: https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Language_Bindings/Components.utils.exportFunction Allows you to expose an object from one scope to another. There was even talk of creating a polyfill for it that does virtually what we do, message passing between contexts. | ||||
* | Manually linted | Dan Finlay | 2016-06-22 | 1 | -3/+3 |
| | |||||
* | Got eslint running correctly | Dan Finlay | 2016-06-22 | 1 | -1/+3 |
| | |||||
* | Began adding auto linting | Dan Finlay | 2016-06-22 | 1 | -2/+22 |
| | |||||
* | Make gulp watch images folder | Dan Finlay | 2016-06-15 | 1 | -1/+1 |
| | |||||
* | ui - redesign - app header + accounts selection | kumavis | 2016-05-11 | 1 | -1/+5 |
| | |||||
* | build - post process with dereq | kumavis | 2016-04-21 | 1 | -0/+1 |
| | |||||
* | Moved UI into repo with its own dependency stack | Dan Finlay | 2016-04-14 | 1 | -3/+3 |
| | |||||
* | build - use gulp, remove grunt | kumavis | 2016-03-12 | 1 | -7/+7 |
| | |||||
* | build - add gulp build process | kumavis | 2016-03-03 | 1 | -0/+131 |