Skip to content

Commit a0be83c

Browse files
committedJan 19, 2021
disable including icons for the moment
1 parent 7418680 commit a0be83c

34 files changed

+14
-9
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### Release 2.1.20
2+
- Detect in-app browser and default to use it.
3+
- Don't redirect to open app on IOS
4+
- UI changes/fixes
5+
16
### Release 2.1.20-beta.1
27
- Reduce size of tokens-eth.json file
38

‎package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@myetherwallet/mewconnect-web-client",
33
"homepage": "https://github.com/myetherwallet/MEWconnect-web-client",
4-
"version": "2.1.20-beta.1",
4+
"version": "2.1.20",
55
"main": "./dist/index.js",
66
"module": "./src/index.js",
77
"scripts": {

‎src/connectProvider/web3Provider/networks/tokens/tokens-eth.json

+1-1
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎src/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import 'core-js/stable';
1010
import 'regenerator-runtime/runtime';
1111
import MewConnectClient from './connectClient/index';
1212
import MewConnectProvider from './connectProvider/index';
13-
import icons from './Icon';
13+
// import icons from './icon';
1414

1515
export default {
1616
Initiator: MewConnectClient.Initiator,
1717
Crypto: MewConnectClient.Crypto,
1818
Client: MewConnectClient,
19-
Provider: MewConnectProvider,
20-
icons
19+
Provider: MewConnectProvider
20+
// icons
2121
};

0 commit comments

Comments
 (0)
Please sign in to comment.