aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
Commit message (Collapse)AuthorAgeFilesLines
* Add state list rebuilding on ui taskDan Finlay2016-07-061-1/+1
|
* Improved Ui Dev ModeDan Finlay2016-07-021-1/+1
| | | | | | Dev mode now reloads on file changes (although it seems to sometimes reload too soon, not getting the update... we can tune the timeout interval in development/index.html) Dev mode now reloads on all non-`node_modules` file changes, so the `ui` and `app` folders are both being watched for live reloading.
* Simplify ui task commandDan Finlay2016-07-011-1/+1
|
* Clean up beefy usageDan Finlay2016-07-011-3/+1
| | | | Now properly uses brfs transform so it can reload on state object changes.
* disclaimer - render via react-markdownkumavis2016-07-011-0/+1
|
* Add ui mocking scriptDan Finlay2016-07-011-1/+2
|
* First simple version of ui mockerDan Finlay2016-07-011-0/+1
|
* Add tooltip to copy buttonDan Finlay2016-06-301-0/+1
|
* deps - bump web3-stream-providerkumavis2016-06-241-1/+1
|
* deps - bump web3-stream-providerkumavis2016-06-241-1/+1
|
* deps - bump stream-providerkumavis2016-06-241-1/+1
|
* Add linting to our mocha suiteDan Finlay2016-06-221-1/+2
|
* Some manual fixesDan Finlay2016-06-221-1/+1
|
* Got eslint running correctlyDan Finlay2016-06-221-0/+1
|
* Began adding auto lintingDan Finlay2016-06-221-0/+1
|
* idStore - add DELEGATE_CALL detectionkumavis2016-06-171-0/+1
|
* deps - bump stream-provider for better batch rpckumavis2016-06-151-1/+1
|
* Blockchain status now updates on availability changeDan Finlay2016-06-041-1/+1
|
* Update eth-lightwallet for security fixDan Finlay2016-05-271-1/+1
|
* background + notifications - add origin to message signatureskumavis2016-05-261-1/+1
|
* deps - bumpkumavis2016-05-231-0/+3
|
* inpage - refactor for modularitykumavis2016-05-231-0/+1
|
* deps - bump provider-enginekumavis2016-05-201-1/+1
|
* deps - bump provider-enginekumavis2016-05-201-1/+1
|
* Finish clean implementation of drop-down menuDan Finlay2016-05-191-1/+1
|
* Add dynamic list item stylesDan Finlay2016-05-191-2/+2
|
* Add animated sandwich buttonDan Finlay2016-05-191-0/+2
|
* ui - txList - add timekumavis2016-05-141-0/+1
|
* Merge branch 'master' into eyeballsDan Finlay2016-05-131-1/+1
|\
| * deps - bump web3kumavis2016-05-121-1/+1
| |
* | Merge branch 'master' into eyeballsDan Finlay2016-05-121-1/+1
|\|
| * deps - bump provider-enginekumavis2016-05-121-1/+1
| |
* | Added transition group dependency backDan Finlay2016-05-111-0/+1
| |
* | Fixed transitionsDan Finlay2016-05-111-4/+3
| |
* | deps - bump jazziconkumavis2016-05-111-1/+1
| |
* | Began adding jazziconsDan Finlay2016-05-111-0/+1
|/ | | | | | | | Currently experiencing a few problems: 1. Tons of errors on app start. It's as if Jazzicon is getting called many times at start with some object as its diameter. 2. Weird visual glitches. When leaving a view with a jazzicon, it flashes off its border radius. 3. Messy transitions. Might want to just re-do the transitions. They just look awful, it's barely worthwhile.
* inpage - automatic dapp reloadkumavis2016-05-061-1/+2
|
* Merge branch 'master' into IdenticonDan Finlay2016-04-301-2/+2
|\
| * idmgmt - eth_sign support + notificationskumavis2016-04-291-2/+2
| |
| * tx list - bug fix - fixes #143kumavis2016-04-291-1/+1
| |
* | Convert icons to identiconsDan Finlay2016-04-301-0/+1
|/
* provider - use provider-engine zerokumavis2016-04-271-1/+1
|
* build - post process with dereqkumavis2016-04-211-0/+1
|
* Merge pull request #117 from MetaMask/i33kumavis2016-04-191-2/+1
|\ | | | | reject unknown tx 'from' address via provider-engine
| * deps - bump provider-engine to 7.4.0kumavis2016-04-191-1/+1
| |
| * deps - remove unused faux-jaxkumavis2016-04-191-1/+0
| |
* | Unify test suitesDan Finlay2016-04-191-5/+2
| |
* | Fix plugin testsDan Finlay2016-04-191-1/+2
|/
* Run all UI testsDan Finlay2016-04-151-8/+5
|
* Limit test suite to UI for nowDan Finlay2016-04-151-1/+2
|
* Bump ethereumjs-utils versionDan Finlay2016-04-151-1/+1
|
* Remove metamask-ui dependencyDan Finlay2016-04-141-1/+0
|
* Move UI deps into main plugin package.jsonDan Finlay2016-04-141-2/+41
| | | | | Also move UI test scripts into main plugin Also move testing explanation to main plugin README.
* Revert "Revert "Etherscan provider""Dan Finlay2016-04-011-1/+1
|
* Revert "Etherscan provider"Dan Finlay2016-04-011-1/+1
|
* Got etherscan working, bump versionDan Finlay2016-04-011-1/+1
| | | | | | | | New version of provider-engine includes etherscan-subprovider features required to let Metamask use it. Hard coded the new version of `web3-provider-engine` even though it is not live on `npm` yet, because it is a dependency of this branch. I'll deploy to the Chrome store but not merge on Github until that provider-engine is published, because it could break others' dev environments.
* Made configuration migrateableDan Finlay2016-03-311-2/+4
| | | | | | | | | | | | | | Abstract all configuration data into a singleton called `configManager`, who is responsible for reading and writing to the persisted storage (localStorage, in our case). Uses my new module [pojo-migrator](https://www.npmjs.com/package/pojo-migrator), and wraps it with the `ConfigManager` class, which we can hang any state setting or getting methods we need. By keeping all the persisted state in one place, we can stabilize its outward-facing API, making the interactions increasingly atomic, which will allow us to add features that require restructuring the persisted data in the long term without having to rewrite UI or even `background.js` code. All the restructuring and data-type management is kept in one neat little place. This should make it very easy to add new configuration options like user-configured providers, per-domain vaults, and more! I know this doesn't seem like a big user-facing feature, but we have a big laundry list of features that I think this will really help streamline.
* Removed unused dependencyDan Finlay2016-03-261-1/+0
|
* Remove broken npm scriptDan Finlay2016-03-261-2/+1
|
* Implemented BIP44 compliance test.Dan Finlay2016-03-261-2/+4
| | | | Also added the hdPath that Christian had told me to our calls to the LightWallet, but this does not seem to have made us generate the same accounts as `testrpc` yet.
* Convert to bip44 hdTreesDan Finlay2016-03-261-2/+5
| | | | | | Added initial test just to verify we can recover the accounts we generate in this way. Still need to add compliance test to make sure this interoperates with testrpc's new mnemonic flag.
* Added basic es6 mocha test suiteDan Finlay2016-03-251-1/+6
|
* notifications - add tx confirm+cancel buttonskumavis2016-03-121-0/+1
|
* build - use gulp, remove gruntkumavis2016-03-121-20/+1
|
* plumbing - fix rpc feedback loop bugkumavis2016-03-111-0/+1
|
* plumbing - pipe web3 to the popup.jskumavis2016-03-111-0/+2
|
* deps - bump metamask-uikumavis2016-03-091-1/+1
|
* deps - bump ui and provider-enginekumavis2016-03-091-2/+2
|
* deps - add gulp depskumavis2016-03-031-2/+9
|
* build - add gulp build processkumavis2016-03-031-4/+9
|
* deps - bump provider enginekumavis2016-02-181-1/+1
|
* deps - bump metamask-uikumavis2016-02-171-1/+1
|
* deps - bump metamask-ui to 1.1.0kumavis2016-02-161-1/+1
|
* Added xtend to package.jsonSimon de la Rouviere2016-02-151-1/+2
|
* intercept xhrs for localhost:8545kumavis2016-02-151-1/+2
|
* deps - update depskumavis2016-02-111-1/+2
|
* idmgmt - refactorkumavis2016-02-111-0/+1
|
* deps - add readable-stream + bump provider-enginekumavis2016-02-111-1/+2
|
* deps - bumpkumavis2016-02-111-2/+2
|
* deps - add metamas-ui, bump provider-enginekumavis2016-02-091-1/+3
|
* deps - bump metamask-providerkumavis2016-01-281-1/+1
|
* deps - but provider-enginekumavis2016-01-211-1/+1
|
* refactor - push data to popupkumavis2016-01-171-0/+1
|
* integrate metamask-ui with id mgmtkumavis2016-01-151-0/+2
|
* migrate to new ui + providerkumavis2016-01-151-3/+5
|
* deps - bump provider enginekumavis2015-12-211-1/+1
|
* deps - bump provider-enginekumavis2015-12-211-1/+1
|
* testing continueskumavis2015-12-211-1/+1
|
* migrate to ProviderEngine zero-clientkumavis2015-12-191-1/+3
|
* deps - bump blockapps-web3kumavis2015-10-131-1/+1
|
* major - migrate to blockapps-web3kumavis2015-10-101-1/+5
|
* builds smoothly + forwards txs to extensionkumavis2015-08-021-5/+1
|
* metamask provider skeletonkumavis2015-08-011-0/+2
|
* init commitkumavis2015-08-011-0/+34