Commit Graph

1544 Commits

Author SHA1 Message Date
Gustavo Maximiliano Cortez b17bc2310d test for new angular directive: match password inputs 2014-07-18 18:18:05 -03:00
Gustavo Maximiliano Cortez b51e8b3539 password confirmation when joining and creating a wallet 2014-07-18 18:18:05 -03:00
Yemel Jardi 4f57c3f696 Highlight active section on sidebar 2014-07-18 15:23:01 -03:00
Yemel Jardi 0ffbd585f8 Add QR modal at address list and clean deprecated code 2014-07-18 11:24:29 -03:00
Gustavo Maximiliano Cortez 372fb469c8 fix video 2014-07-18 10:34:02 -03:00
Gustavo Maximiliano Cortez 1b44e8eec7 remove columns 2014-07-17 18:25:20 -03:00
bechi c4e32c32db Merge branch 'newdesign-2' into bechi-changes 2014-07-17 18:02:42 -03:00
Gustavo Maximiliano Cortez c687597ccd Merge pull request #907 from cmgustavo/design-2/left-column
Design 2/left column
2014-07-17 17:44:46 -03:00
Gustavo Maximiliano Cortez d037ae7aff waiting for copayers/ intermediate page 2014-07-17 17:43:27 -03:00
bechi 0a89b5ab37 addresses 2014-07-17 17:39:32 -03:00
Gustavo Maximiliano Cortez f7e4390507 Split create new wallet page 2014-07-17 16:00:58 -03:00
bechi d3747b6f7a side bar 2014-07-17 15:44:50 -03:00
Gustavo Maximiliano Cortez 0ffb8eb42f New schema for signin/join a wallet 2014-07-17 15:09:44 -03:00
Gustavo Maximiliano Cortez 67190909b6 include duplicate: angular-route-min 2014-07-17 15:08:03 -03:00
bechi 4469cf1f0a clean css 2014-07-17 12:22:55 -03:00
Gustavo Maximiliano Cortez 91c7ab100d Fixes karma tests 2014-07-16 19:00:34 -03:00
Gustavo Maximiliano Cortez 0a027360a8 Split index.html in many files smaller. New right column when the wallet is ready. Removed templates selector. 2014-07-16 17:59:28 -03:00
Gustavo Maximiliano Cortez 6bad4ae59d update gitignore (for generated files with firefox add ons) 2014-07-14 12:56:23 -03:00
Gustavo Maximiliano Cortez 3ecef220ed Cleaning html tags 2014-07-14 12:53:48 -03:00
Gustavo Maximiliano Cortez eff85ad480 Merge pull request #899 from yemel/fix/remove-seed-backup
Remove automatic partial backup
2014-07-10 18:46:35 -03:00
Gustavo Maximiliano Cortez 28bc387ee6 Merge pull request #897 from yemel/feature/test-performance
Improve performance of index discovery tests
2014-07-10 18:09:13 -03:00
Gustavo Maximiliano Cortez ff9023b5cf Merge pull request #896 from yemel/fix/decimal-filter-error
Fix angular version to 1.2.16
2014-07-10 17:58:25 -03:00
Yemel Jardi abdb876a4b Remove automatic partial backup 2014-07-10 17:45:16 -03:00
Yemel Jardi ef574f9c8e Update angular to 1.2.19 2014-07-10 17:22:10 -03:00
Yemel Jardi 3ebf88f6aa Improve indexDiscovery tests performance 2014-07-10 16:19:09 -03:00
Yemel Jardi 614d84c415 Fix angular version to 1.2.16 2014-07-10 14:53:24 -03:00
Matias Alejo Garcia d1d36ef245 Merge pull request #884 from cmgustavo/bug/02-ui
Fixes font size "tooltip" of password input
2014-07-09 22:51:58 -03:00
Gustavo Maximiliano Cortez d5363c56bd Fixes font size "tooltip" of password input 2014-07-09 09:37:14 -03:00
Matias Alejo Garcia 4720234090 Merge pull request #882 from matiu/feature/chrome2
better chrome build
2014-07-09 06:54:54 -03:00
Matias Alejo Garcia efce53445c better chrome build 2014-07-09 06:21:31 -03:00
Ryan X. Charles 2a2a1d3c35 up version to 0.3.2 2014-07-09 01:56:42 -07:00
Matias Alejo Garcia 1115699337 Merge pull request #881 from ryanxcharles/feature/nonce
WIP: Add nonce to network protocol
2014-07-09 05:45:38 -03:00
Ryan X. Charles 643cad3a39 change encryption to work on hex strings
..instead of binary, to work around an issue with bitcore/sjcl. I'm not sure
what the issue is exactly, except that encryption of binary data isn't working
correctly due to some kind of string stuff involving decodeURIComponent inside
sjcl. I haven't fully figured it out. For now I am changing the network
protocol to hex to workaround the issue.

See this: https://github.com/bitpay/bitcore/pull/416
2014-07-09 01:13:42 -07:00
Matias Alejo Garcia 8fa1c69683 Merge pull request #880 from cmgustavo/bug/01-ui
UI Fixes
2014-07-09 05:08:20 -03:00
Ryan X. Charles 88ab38eb00 add nonce support to WebRTC and Wallet
Each person keeps track of their own nonce, and the nonces of the other
copayers. The nonce is iterated for each message. If a person ever doesn't
iterate their nonce, that message is discarded by the copayers.

The nonces are saved as networkNonce (your nonce) and networkNonces (the nonces
of your copayers) in the wallet file.

In order to support restoring old wallets, the first four bytes of the 8 byte
nonce are actually the current time in seconds. Thus you can restore an old
wallet, because certainly at least one second has passed since your last
message. Only if you try to restore an old wallet within 1 second from the time
of your last message will you have a problem (or if your system clock is
grossly inaccurate).
2014-07-08 23:03:30 -07:00
Gustavo Maximiliano Cortez 8b4fc1a3bc Fixes:
* Boxes for small and large devices.
* Unified "go back" buttons.
* Notifications style.
* Tooptips style.
2014-07-09 02:38:07 -03:00
Ryan X. Charles a1155c2798 add support for 8 byte big endian nonce to Message
...network protocol is backwards incompatible with previous network protocl.
also includes a second version number for backwards-compatible changes (the
original version number was for backwards-incompatible changes).
2014-07-08 20:02:37 -07:00
Matias Alejo Garcia 9b3ce1ebe9 Merge pull request #875 from matiu/feature/extensions
Feature/extensions I merge this one myself, since these are only minor changes on scripts.
2014-07-08 23:37:29 -03:00
Matias Alejo Garcia 7bb619d144 add sign/verify scripts to npm package.json 2014-07-08 22:53:06 -03:00
Matias Alejo Garcia d97273f683 better procedure to create firefox add-on 2014-07-08 22:29:57 -03:00
Matias Alejo Garcia 27e27af7ab Merge pull request #872 from cmgustavo/bug/01-config-storage
Fixes: save config in localStorage
2014-07-08 21:00:03 -03:00
Gustavo Maximiliano Cortez d91c42ee30 Merge pull request #873 from matiu/feature/test01
Feature/test01
2014-07-08 20:13:23 -03:00
Matias Alejo Garcia 7a072e83d9 . 2014-07-08 20:05:41 -03:00
Matias Alejo Garcia 248c18596c more tests 2014-07-08 19:52:47 -03:00
Gustavo Maximiliano Cortez 5d5bf3dfc5 Merge pull request #849 from yemel/feature/backup-wallet
Wallet Backups
2014-07-08 19:17:43 -03:00
Matias Alejo Garcia fb2b6c40ba add tests to localencrypted 2014-07-08 19:11:48 -03:00
Gustavo Maximiliano Cortez 4d160a4ee7 Fixes:
* Save config in localStorage
* Show forced networkName in settings Page
2014-07-08 18:53:02 -03:00
Yemel Jardi 774f9e4def Fix importing partial backup 2014-07-08 16:47:00 -03:00
Gustavo Maximiliano Cortez 937369d0c7 Merge pull request #870 from matiu/bug/handlerNetErrors
Bug/handler net errors
2014-07-08 15:59:40 -03:00
Yemel Jardi cadd66812b Skip partial backup on 1-1 wallet 2014-07-08 15:54:10 -03:00