Skip to content

Commit 426cfb8

Browse files
authored
Merge pull request #188 from TronWatch/1.1.2
1.1.2: Remove faucet, fix token dropdown overflow
2 parents c2120be + 4e62e8f commit 426cfb8

File tree

8 files changed

+6
-181
lines changed

8 files changed

+6
-181
lines changed

app/popup/src/components/App/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ import Accounts from 'pages/Accounts';
1717
import Transactions from 'pages/Transactions';
1818
import Tokens from 'pages/Tokens';
1919
import Send from 'pages/Send';
20-
21-
import Redeem from 'pages/Redeem';
2220
import Settings from 'pages/Settings';
2321

2422
import './App.css';
@@ -51,8 +49,7 @@ class App extends Component {
5149
<Route exact path="/main/import/tronscan" component={ ImportTronScan } />
5250
<Route exact path="/main/import/mnemonic" component={ ImportMnemonicPhrase } />
5351
<Route exact path="/main/import/privatekey" component={ ImportPrivateKey } />
54-
55-
<Route path="/main/redeem" component={ Redeem } />
52+
5653
<Route path="/main/settings" component={ Settings } />
5754
</Switch>
5855
</div>

app/popup/src/pages/Redeem/Redeem.css

Lines changed: 0 additions & 77 deletions
This file was deleted.

app/popup/src/pages/Redeem/index.js

Lines changed: 0 additions & 86 deletions
This file was deleted.

app/popup/src/pages/Send/Send.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@
207207
flex-direction: column;
208208
width: 360px;
209209
background: transparent;
210+
max-height: 180px;
210211
}
211212

212213
.send-dropdown--menu .Dropdown-option {
@@ -220,6 +221,7 @@
220221
overflow: hidden;
221222
border-top: 1px solid #eee;
222223
position: relative;
224+
min-height: 40px;
223225
}
224226

225227
.send-dropdown--menu .Dropdown-option.is-selected {

app/popup/src/pages/Transactions/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ class Transactions extends Component {
4646
<Header
4747
navbarTitle={ 'Transaction History' }
4848
navbarLabel={ this.props.account.name || this.props.account.publicKey }
49-
leftIconImg={ <MoneyIcon /> }
50-
leftIconRoute="/main/redeem"
5149
rightIconImg={ <SettingsIcon /> }
5250
rightIconRoute="/main/settings"
5351
/>

app/popup/src/translations/en.json

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,6 @@
5555
"account.transactions.unfrozen": "Unfroze TRX",
5656
"account.transactions.voted": "Voted",
5757

58-
"give.sent.header": "Funds sent",
59-
"give.sent.body": "You have been sent 20,000 TestNet TRX",
60-
"give.failed.header:": "Failed to send funds",
61-
"give.fund.header": "TestNet Funding",
62-
"give.fund.body": "Sends 20,000 TestNet TRX to your account",
63-
"give.fund.address": "Address: {address}",
64-
"give.fund.button": "Fund Account",
65-
"give.fund.title": "GRANT FUNDS",
66-
6758
"import.header": "Import Private Key",
6859
"import.body": "Please enter the private key of your wallet below. We will then generate the address and fetch the past transactions",
6960
"import.button": "Import",

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"manifest_version": 2,
33
"name": "TronLink",
4-
"version": "1.1.1",
5-
"version_name": "1.1.1",
4+
"version": "1.1.2",
5+
"version_name": "1.1.2",
66
"description": "An interactive chrome extension for signing, receiving and broadcasting TRON transactions",
77
"author": "https://github.com/TronWatch",
88
"icons": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tronlink",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"private": false,
55
"dependencies": {
66
"aes-js": "^3.1.1",

0 commit comments

Comments
 (0)