Skip to content
This repository was archived by the owner on May 30, 2023. It is now read-only.

Commit a38f099

Browse files
authored
Merge pull request #6 from ridaamirini/dev
Dev
2 parents 97b4840 + 3c6ad80 commit a38f099

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "imapsyncclient",
33
"displayName": "ImapSync Client",
44
"productName": "ImapSync Client",
5-
"version": "0.0.2",
5+
"version": "0.0.3",
66
"author": "Rida Am. <[email protected]>",
77
"description": "It's only an Internet Message Access Protocol Synchronization Client",
88
"license": "MIT",

revision.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"rev": "796bdcf",
3-
"version": "0.0.2.796bdcf",
4-
"date": "2018-3-26 00:58:08"
2+
"rev": "7e576bb",
3+
"version": "0.0.2.7e576bb",
4+
"date": "2018-5-11 18:00:46"
55
}

src/renderer/components/Add/MailboxForm.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,12 @@
5757
</template>
5858

5959
<script>
60+
import log from 'electron-log';
6061
import ShellAlikeBox from '../ShellAlikeBox.vue';
6162
import EventBus from '../../store/modules/EventBus.js';
6263
import auth from '../../../../auth.json';
6364
65+
6466
export default {
6567
name: 'mailbox-form',
6668
props: ['password'],
@@ -236,6 +238,7 @@
236238
this.migrateMailboxes();
237239
238240
console.log(error);
241+
log.error(error);
239242
});
240243
}, 3000);
241244
}).catch((error) => {
@@ -248,6 +251,7 @@
248251
// Tick next Mailbox
249252
this.migrateMailboxes();
250253
console.log(error);
254+
log.error(error);
251255
});
252256
},
253257
startMigration () {
@@ -278,6 +282,7 @@
278282
.catch((error) => {
279283
this.$store.commit('addLine', 'Something went wrong ?!');
280284
console.log(error);
285+
log.error(error);
281286
});
282287
283288
// Clear queue

0 commit comments

Comments
 (0)