Skip to content

Commit 0887a62

Browse files
authored
Merge pull request #255 from skycoin/develop
Merge to master
2 parents c93371a + b2c1010 commit 0887a62

File tree

102 files changed

+1570
-1455
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1570
-1455
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: go
22

33
go:
4-
- "1.8"
54
- "1.9"
65
- "1.10"
76

@@ -28,6 +27,7 @@ install:
2827

2928
script:
3029
- make check
30+
- make lint-ts
3131
- make build-ng
3232
- make check-ui
3333

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ install-linters: ## Install linters
4848
format: ## Formats the code. Must have goimports installed (use make install-linters).
4949
goimports -w explorer.go
5050

51+
lint-ts: ## runs ts lint
52+
npm run lint
53+
5154
check-ui: ## runs e2e tests connecting to a containerized node
5255
go run explorer.go &>/dev/null &
5356
sleep 10

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,22 @@ Run linters:
141141
make lint
142142
```
143143

144+
### e2e Tests
145+
146+
If you are running a Skycoin node normally, you can run the e2e tests with:
147+
148+
```sh
149+
npm run e2e
150+
```
151+
152+
If you are running a Skycoin node using the test database (`blockchain-180.db`), you can run the e2e tests with:
153+
154+
```sh
155+
npm run e2e-blockchain-180
156+
```
157+
158+
The second method is the one used in Travis.
159+
144160
### Customization
145161

146162
[CUSTOMIZATION.md](CUSTOMIZATION.md)

dist/0.4ff8f23d9b9631142fe3.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/0.a76c7ccd3867033d76b2.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/1.b2f032c505a19c32b77a.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/3rdpartylicenses.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,10 @@ [email protected]
252252
MIT
253253
MIT
254254

255+
256+
MIT
257+
MIT
258+
255259
256260
Apache-2.0
257261
Apache License

dist/assets/i18n/en.json

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"coinIdentifier": "SKY",
44
"address": "Address",
55
"coins": "Coins",
6+
"iniialHours": "Initial Hours",
7+
"calculatedHours": "Final Hours",
8+
"currentHours": "Current Hours",
9+
"hours": "Hours",
610
"loadingMsg": "Loading...",
711
"shortLoadingErrorMsg": "Loading error",
812
"longLoadingErrorMsg": "Error loading data, try again later...",
@@ -15,12 +19,13 @@
1519
"outputs": "Outputs",
1620
"pending": "pending",
1721
"date": "Date",
18-
"balance": "Balance",
19-
"initialBalance": "Initial address balance",
20-
"finalBalance": "Final address balance",
21-
"initialBalanceShort": "Initial",
22-
"finalBalanceShort": "Final",
23-
"firstSeen": "First seen at"
22+
"balance": "More info",
23+
"fee": "Transaction fee (in hours)",
24+
"initialBalance": "Initial coins balance",
25+
"finalBalance": "Final coins balance",
26+
"firstSeen": "First seen at",
27+
"loadAll": "Show all {{total}} elements",
28+
"loading": "Loading, please wait..."
2429
},
2530
"blocks": {
2631
"blocksTitle": "Blocks",
@@ -55,7 +60,9 @@
5560
"title": "Address",
5661
"txsNumber": "# of Transactions",
5762
"totalReceived": "Total Received",
58-
"currentBalance": "Current Balance",
63+
"totalSent": "Total Sent",
64+
"currentBalance": "Current Coins",
65+
"hoursBalance": "Current Hours",
5966
"tools": "Tools",
6067
"unspentOutputs": "Unspent outputs",
6168
"withoutTransactions": "Without transactions"
@@ -64,7 +71,8 @@
6471
"title": "Unspent Outputs",
6572
"address": "Address",
6673
"outputsNumber": "# of outputs",
67-
"total": "Total",
74+
"totalCoins": "Total Coins",
75+
"totalHours": "Total Hours",
6876
"origin": "Origin",
6977
"date": "Date",
7078
"withoutOutputs": "Without outputs"

dist/assets/i18n/es.json

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

0 commit comments

Comments
 (0)