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

Commit

Permalink
small release
Browse files Browse the repository at this point in the history
  • Loading branch information
EnoRage authored and Nick Kozlov committed Aug 2, 2019
1 parent 2182dcf commit 4bc658d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,26 @@ Navigation
![Navigation](https://raw.githubusercontent.com/button-tech/BrowserBNB/master/docs/img/CreateOrImport.png)

## Step 2 (Infrastructure)
- [ ] Add background.js and sessions support
- [x] Add background.js and sessions support
- [x] Make TS wrapper over BNB JS SDK
- [x] Send to address support
- [ ] Tokens support
- [x] Tokens support
- [x] Multiple accounts support
- [x] Add first docs and Travis
- [x] Add BNB TS Wrapper
- [ ] Add forms for feedback and make widget public
- [x] Add forms for feedback and make widget public
- [x] Add State service
- [x] Add BIP44 Derivation support

## Step 3 (Final Beta Public)
- [] Forms to Rx forms
- [] Background logic
- [] WalletConnect + DEX support
- [] Settings support
- [] Free from boostrap + material wastes
- [] Pending tx / notifiactions on background
- [] Custom alerts service + UI
- [] Linting of project
- [] Fix wrappers over JS SDK
- [] Make docs + wiki
- [] Integration tests + BNB SDK tests
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
</div>
</div>
<div style="margin: 0; padding: 0" class="container">
<div (click)="this.showInfo()" style="margin: 0; padding: 0" class="container">
<div class="row">
<div class="col-12">
<div class="item"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {Component, OnInit} from '@angular/core';
import {Location} from "@angular/common";
import {AlertsService} from "../../../../services/alerts.service";

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

constructor(private location: Location) {
constructor(private location: Location, public alert: AlertsService) {
}

ngOnInit() {
Expand All @@ -17,4 +18,8 @@ export class SettingsComponent implements OnInit {
goBack() {
this.location.back();
}
showInfo() {
this.alert.showError('Not ready', 'Will be soon');
}

}
Binary file modified docs/img/previewgit.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4bc658d

Please sign in to comment.