Skip to content

Commit c7ae3f5

Browse files
committed
bug fixes from tickets
1 parent 692735c commit c7ae3f5

File tree

9 files changed

+41
-8
lines changed

9 files changed

+41
-8
lines changed

config/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ module.exports = {
4949
* Source Maps
5050
*/
5151

52-
productionSourceMap: false,
52+
productionSourceMap: true,
5353
// https://webpack.js.org/configuration/devtool/#production
5454
devtool: '#source-map',
5555

electron.js

+25-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ class LowLevelSocketService {
337337
socket.on('disconnect', () => delete this.openConnections[origin]);
338338

339339
socket.on('message', msg => {
340-
console.log('message', msg);
341340
if(msg.indexOf('42/scatter') === -1) return false;
342341
const [type, request] = JSON.parse(msg.replace('42/scatter,', ''));
343342

@@ -488,3 +487,28 @@ ipcMain.on('seed', (event, arg) => {
488487
event.sender.send('seed', seed);
489488
});
490489

490+
491+
492+
493+
494+
// -------------------------------------------------------------
495+
// CATCH ALL EXCEPTIONS AND CONSOLES
496+
// We're throwing all exceptions and console up to the renderer console so they can be visible in running builds.
497+
// -------------------------------------------------------------
498+
process.on('uncaughtException', (err) => {
499+
mainWindow.webContents.send('error', {message:err.message, file:err.fileName, line:err.lineNumber});
500+
console.error('There was an uncaught error', err)
501+
// process.exit(1) //mandatory (as per the Node docs)
502+
});
503+
504+
const log = console.log;
505+
console.log = (...params) => {
506+
mainWindow.webContents.send('console', params);
507+
log(...params);
508+
}
509+
510+
const logerr = console.error;
511+
console.error = (...params) => {
512+
mainWindow.webContents.send('console', params);
513+
logerr(...params);
514+
}

src/components/ViewBase.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@
9696
},
9797
watch:{
9898
['unlocked'](){
99+
if(this.$route.fullPath.indexOf('popout') > -1) return;
99100
if(this.initialized) return;
100101
if(this.unlocked){
101102
this.initialized = true;
@@ -116,7 +117,7 @@
116117
left:0;
117118
right:0;
118119
bottom:0;
119-
z-index:1000000;
120+
z-index:10000;
120121
display:flex;
121122
justify-content: center;
122123
align-items: center;

src/components/login/SetPassword.vue

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<input class="center" type="password" v-model="password" placeholder="choose a password" />
1212
<section class="password-strength">
13-
<figure class="bar" :style="{'width':passwordStrength + '%'}" :class="{'red':passwordStrength < 100}"></figure>
13+
<figure class="bar" :style="{'width':passwordStrength + '%'}" :class="{'red':passwordStrength < 50, 'green':passwordStrength < 100 && passwordStrength >= 50}"></figure>
1414
</section>
1515
<input class="center" type="password" v-model="confirmation" placeholder="one more time" />
1616

@@ -81,6 +81,9 @@
8181
&.red {
8282
background:$red;
8383
}
84+
&.green {
85+
background:$green;
86+
}
8487
}
8588
}
8689

src/components/panels/settings/SettingsBackup.vue

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
])
4949
},
5050
mounted(){
51-
console.log(this.scatter.settings);
5251
BackupService.setBackupStrategy(BACKUP_STRATEGIES.AUTOMATIC);
5352
},
5453
methods: {

src/models/hardware/LedgerWallet.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ class LedgerAPI {
265265
fc.types
266266
).toString('hex'), "hex");
267267
} catch(e){
268-
console.log('e', e);
268+
console.error('e', e);
269269
WindowService.flashWindow();
270270
PopupService.push(Popup.prompt('Ledger Action Not Supported', 'Looks like this action isn\'t supported by the Ledger App'));
271271
return null;

src/plugins/defaults/eos.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,10 @@ export default class EOS extends Plugin {
831831

832832
let abi = abis[contractAccountName];
833833

834-
const typeName = abi.abi.actions.find(x => x.name === action.name).type;
834+
let typeName = abi.abi.actions.find(x => x.name === action.name);
835+
if(!typeName) return console.error('Could not parse type name');
836+
typeName = typeName.type;
837+
835838
const data = abi.fromBuffer(typeName, action.data);
836839
const actionAbi = abi.abi.actions.find(fcAction => fcAction.name === action.name);
837840
let ricardian = actionAbi ? actionAbi.ricardian_contract : null;

src/services/secure/PasswordService.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default class PasswordService {
2525
const specs = p.split('').filter(x => special.includes(x)).length;
2626
points += specs < 5 ? specs : (5 * 2) + (specs-5);
2727
points += p.length;
28-
const good = 60;
28+
const good = 30;
2929
const percentage = points / good > 1 ? 1 : points / good;
3030
return (percentage*100).toString();
3131
}

src/util/ElectronHelpers.js

+3
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ export const ipcAsync = (key, data) => {
6363
})
6464
}
6565

66+
ipcRenderer.on('error', (e, x) => console.log(x));
67+
ipcRenderer.on('console', (e, x) => console.log('Main process console: ', x));
68+
6669
export default class ElectronHelpers {
6770

6871
static reload(){

0 commit comments

Comments
 (0)