Gustavo Maximiliano Cortez
f574a9d78b
Fix glidera getting token
2015-09-08 10:17:59 -03:00
Gustavo Maximiliano Cortez
e9b74fcddc
Fixes oath code url for livenet/testnet
2015-09-07 19:45:03 -03:00
Gustavo Maximiliano Cortez
71471f2aad
Adds glidera for livenet
2015-09-07 18:48:47 -03:00
Gustavo Maximiliano Cortez
9379e6e574
Permissions
2015-09-05 14:32:30 -03:00
Gustavo Maximiliano Cortez
ffa268a827
Sell flow completed
2015-09-05 14:32:30 -03:00
Gustavo Maximiliano Cortez
ada933d49c
Buy flow completed
2015-09-05 14:32:30 -03:00
Gustavo Maximiliano Cortez
49cd19bd1b
Better look and feel
2015-09-05 14:32:29 -03:00
Gustavo Maximiliano Cortez
1a0a7eb5ad
BUY/SELL bitcoin
2015-09-05 14:30:18 -03:00
Gustavo Maximiliano Cortez
e266ded1d1
Glidera - buy/sell
2015-09-05 14:30:17 -03:00
Gustavo Maximiliano Cortez
4ed39a22d4
Glidera Integration
2015-09-05 14:30:17 -03:00
Kosta Korenkov
f41be9f4e5
Allow addons to use custom template for proposal row on home screen.
2015-09-04 09:14:49 +03:00
Kosta Korenkov
77df59e5e1
Refactor txStatus to ease overriding in addons.
...
Favour overriding instead of options introduced in #3065
2015-09-03 12:04:24 +03:00
Gustavo Maximiliano Cortez
854b1511de
Refactory single/multiples outputs
2015-08-20 16:43:03 -03:00
Gustavo Maximiliano Cortez
ec471bdba3
Translates errors from send
2015-08-13 16:47:10 -03:00
Gustavo Maximiliano Cortez
19d24e8084
Fix tx-details
2015-08-13 11:07:24 -03:00
Matias Alejo Garcia
81ebe2708f
fix switch case
2015-08-12 14:38:29 -03:00
Matias Alejo Garcia
7c65b9907f
better find code
2015-08-12 11:16:34 -03:00
Matias Alejo Garcia
033f7c163f
better handing of errors + prevent joining the same wallet more that once
2015-08-12 11:08:33 -03:00
Matias Alejo Garcia
fe07348a5a
adds errorCb, handles blocks
2015-08-12 08:57:44 -03:00
Matias Alejo Garcia
ba40323b7b
show pending update
2015-08-11 17:47:03 -03:00
Matias Alejo Garcia
48d6b78667
WIP send max fixes
2015-08-11 17:47:02 -03:00
Gustavo Maximiliano Cortez
d8a155a0e8
Hide options if it is the old bws
2015-08-10 11:03:41 -03:00
Gustavo Maximiliano Cortez
779db5a06c
Advanced send options
2015-08-10 11:03:41 -03:00
Matias Alejo Garcia
5bdaf7b2cd
Merge pull request #3065 from troggy/addon/custom-tx-status
...
Allow to provide custom templateUrl to txStatus
2015-08-10 10:06:25 -03:00
Kosta Korenkov
6e37cb3017
Allow addons to customize pending proposals
2015-08-06 15:30:57 +03:00
Kosta Korenkov
56e91029da
Make addonManager to be service
...
..so it would be possible to use other services/factories/values when registering addon
2015-08-06 15:30:57 +03:00
Kosta Korenkov
823dc6f1a7
Store the whole addon spec in addonManager
2015-08-06 15:30:57 +03:00
Kosta Korenkov
d4e6ae98ef
Allow to provide custom templateUrl to txStatus
2015-08-06 15:30:19 +03:00
Gustavo Maximiliano Cortez
458a17e0be
Uses object for level options
2015-07-30 15:26:16 -03:00
Gustavo Maximiliano Cortez
aa3870a831
Updates fee levels strings for translate
2015-07-29 13:07:35 -03:00
Gustavo Maximiliano Cortez
e7a98d44f9
Set fees in preferences. First step for advanced send
2015-07-28 10:42:11 -03:00
Gustavo Maximiliano Cortez
075206cd8f
Fix error using old bws
2015-07-27 15:43:53 -03:00
Gustavo Maximiliano Cortez
0b34e1d1b5
Default static fee if using old bws
2015-07-27 15:43:53 -03:00
Gustavo Maximiliano Cortez
2cc9554df4
Fixes names
2015-07-27 15:43:53 -03:00
Gustavo Maximiliano Cortez
5742dee340
Adds three levels of dynamic fees
2015-07-27 15:43:52 -03:00
Gustavo Maximiliano Cortez
d446c9facf
Merge pull request #2998 from matiu/feat/nosign-backup
...
export backup without signing capabilities
2015-07-16 12:01:35 -03:00
Matias Alejo Garcia
42dd516b60
fix notification
2015-07-16 11:43:26 -03:00
Matias Alejo Garcia
bddfa5c4d9
export backup without signing capabilities
2015-07-15 22:11:37 -03:00
Kosta Korenkov
e6785335a9
Addon support
...
Addons are simple Angular modules with views, controllers, services etc. Addons can register
themselves in Copay using pluginManagerProvider. It allows them to add extra items to the bottom
menu and as well as extra tab-views:
````
addonManagerProvider.registerAddon({
menuItem: {
'title': 'Assets',
'icon': 'icon-pricetag',
'link': 'assets'
},
view: {
id: 'assets',
'class': 'assets',
template: 'colored-coins/views/assets.html'
}
});
````
Addons can consume core Copay services and listen for events to react on changes. For this very
first addon system inplementation Copay emits additional BalanceUpdated event so that interested
addons can react on new transactions (see plugin reference implementation below).
As bottom menu can accomodate only 6 items without sacrificing usability, so it was reworked to
have second layer of items. Now If menu has more than 6 items, toggle button will be added to
the menu allowing to reveal extra items in a sliding panel. Bottom menu in this case will show
only 5 items, the rest will be rendered on sliding panel.
This changes addresses issue #2949 and reference implementation of addon could be found here:
https://github.com/troggy/copay-colored-coins-plugin
2015-07-10 14:31:17 +03:00
Ivan Socolsky
8181c89ef1
update exchange rate at 5 min interval
2015-07-01 19:10:57 -03:00
Matias Alejo Garcia
44b2599492
fix bug in expire
2015-06-30 18:09:51 -03:00
Matias Alejo Garcia
7f65822790
save remote for new clients
2015-06-29 22:40:39 -03:00
Matias Alejo Garcia
c65b2d7c07
save lang and unit in BWS
2015-06-29 21:46:34 -03:00
Matias Alejo Garcia
801ad1b798
Merge pull request #2915 from cmgustavo/bug/reconnect-02
...
Disabling unnecessary online/offline events for mobile/desktop
2015-06-28 09:11:32 -03:00
Matias Alejo Garcia
1323ad48db
refactor address management
2015-06-27 20:58:42 -03:00
Matias Alejo Garcia
707acfaf64
refactor getWallet in profile
...
Signed-off-by: Matias Alejo Garcia <ematiu@gmail.com>
2015-06-27 20:58:42 -03:00
Gustavo Maximiliano Cortez
d02c1a7f11
Removes online/offline events
2015-06-26 11:55:41 -03:00
Gustavo Maximiliano Cortez
a2f2451ad9
Disabling unnecessary online/offline events for mobile/desktop
2015-06-26 11:09:35 -03:00
Matias Alejo Garcia
b15a0371c3
Merge pull request #2895 from greggzigler/bug/configWalletNotFound
...
When running from browser for first time configCache.wallet is not found
2015-06-17 12:27:07 -03:00
Gregg Zigler
cffb4454fa
When running from browser for first time configCache.wallet is not found
2015-06-17 07:32:50 -07:00