Skip to content

Commit

Permalink
0.5.1
Browse files Browse the repository at this point in the history
Enabled stake/unstake feature
Improved chain connectivity
eosjs update to v15.0.0
Added full on-chain action history
Minor UX fixes
Update notifications
  • Loading branch information
igorls committed Jun 17, 2018
1 parent 01379cb commit 26c0751
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
15 changes: 7 additions & 8 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ if (devtools) {


ipcMain.on('checkUpdate', (event, arg) => {
sender = event.sender;
autoUpdater.checkForUpdates().then((data) => {
console.log(data);
sender = event.sender;
sender.send('update_data', data);
});
});
Expand All @@ -35,15 +34,15 @@ autoUpdater.on('error', (error) => {
});

autoUpdater.on('update-available', () => {
autoUpdater.downloadUpdate();
autoUpdater['downloadUpdate']();
});

autoUpdater.on('update-not-available', () => {
sender.send('update_ready',false);
sender.send('update_ready', false);
});

autoUpdater.on('update-downloaded', () => {
sender.send('update_ready',true);
sender.send('update_ready', true);
});

function createWindow() {
Expand All @@ -52,10 +51,10 @@ function createWindow() {
darkTheme: true,
x: 100,
y: 100,
width: 1280,
height: 720,
width: 1440,
height: 800,
minWidth: 800,
minHeight: 500,
minHeight: 600,
frame: true,
icon: path.join(__dirname, 'src/assets/icons/ico/simpleos.ico')
});
Expand Down
2 changes: 1 addition & 1 deletion ng-dist/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simpleos",
"version": "0.5.0",
"version": "0.5.1",
"productName": "simpleos",
"description": "EOS Blockchain Interface & Wallet",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/dashboard/vote/vote.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ <h5 class="subtitle mt-0">You can vote for up to 30</h5>
</li>
<li class="social-icon" *ngIf="item.social['steemit']">
<a [href]="'https://steemit.com/' + item.social['steemit']" target="_blank">
<img src="../../../assets/steemit.png" class="steemit" style="">
<img src="assets/steemit.png" class="steemit" style="">
</a>
</li>
<li class="social-icon" *ngIf="item.social['telegram']">
Expand Down
1 change: 0 additions & 1 deletion src/app/dashboard/wallet/wallet.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export class WalletComponent implements OnInit, AfterViewInit, OnDestroy {
const date = item['block_time'];
const contract = act['account'];
const action_name = act['name'];
console.log(id, block_num, item);
let amount = 0;
let user = '';
let type = '';
Expand Down

0 comments on commit 26c0751

Please sign in to comment.