Skip to content
This repository was archived by the owner on Oct 27, 2022. It is now read-only.

Commit 4bc658d

Browse files
EnoRageNick Kozlov
authored and
Nick Kozlov
committed
small release
1 parent 2182dcf commit 4bc658d

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

README.md

+18-3
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,26 @@ Navigation
3434
![Navigation](https://raw.githubusercontent.com/button-tech/BrowserBNB/master/docs/img/CreateOrImport.png)
3535

3636
## Step 2 (Infrastructure)
37-
- [ ] Add background.js and sessions support
37+
- [x] Add background.js and sessions support
3838
- [x] Make TS wrapper over BNB JS SDK
3939
- [x] Send to address support
40-
- [ ] Tokens support
40+
- [x] Tokens support
4141
- [x] Multiple accounts support
4242
- [x] Add first docs and Travis
4343
- [x] Add BNB TS Wrapper
44-
- [ ] Add forms for feedback and make widget public
44+
- [x] Add forms for feedback and make widget public
45+
- [x] Add State service
46+
- [x] Add BIP44 Derivation support
47+
48+
## Step 3 (Final Beta Public)
49+
- [] Forms to Rx forms
50+
- [] Background logic
51+
- [] WalletConnect + DEX support
52+
- [] Settings support
53+
- [] Free from boostrap + material wastes
54+
- [] Pending tx / notifiactions on background
55+
- [] Custom alerts service + UI
56+
- [] Linting of project
57+
- [] Fix wrappers over JS SDK
58+
- [] Make docs + wiki
59+
- [] Integration tests + BNB SDK tests

app/view/src/app/components/main/menu-top/settings/settings.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</div>
99
</div>
1010
</div>
11-
<div style="margin: 0; padding: 0" class="container">
11+
<div (click)="this.showInfo()" style="margin: 0; padding: 0" class="container">
1212
<div class="row">
1313
<div class="col-12">
1414
<div class="item"

app/view/src/app/components/main/menu-top/settings/settings.component.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {Component, OnInit} from '@angular/core';
22
import {Location} from "@angular/common";
3+
import {AlertsService} from "../../../../services/alerts.service";
34

45
@Component({
56
selector: 'app-settings',
@@ -8,7 +9,7 @@ import {Location} from "@angular/common";
89
})
910
export class SettingsComponent implements OnInit {
1011

11-
constructor(private location: Location) {
12+
constructor(private location: Location, public alert: AlertsService) {
1213
}
1314

1415
ngOnInit() {
@@ -17,4 +18,8 @@ export class SettingsComponent implements OnInit {
1718
goBack() {
1819
this.location.back();
1920
}
21+
showInfo() {
22+
this.alert.showError('Not ready', 'Will be soon');
23+
}
24+
2025
}

docs/img/previewgit.gif

27.2 MB
Loading

0 commit comments

Comments
 (0)