Skip to content

Commit

Permalink
Merge pull request #260 from brafdlog/users-hot-fixes
Browse files Browse the repository at this point in the history
Hot fixes from users feedback without waiting to approve
  • Loading branch information
baruchiro authored Jun 17, 2021
2 parents 207bca1 + 36f7049 commit 2e85f37
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion nuxt/components/Features.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</feature-right>
<feature-left
headline="ייצוא לתוכנות ניתוח נתונים"
content="את הנתונים שחיובי מושך מחשבונות הבנק והאשראי ניתן לייצא לתוכנות ניהול נתונים שונות."
content="את הנתונים שחיובי מושך מחשבונות הבנק והאשראי ניתן לייצא לתוכנות ניהול נתונים שונות, כמו Excel, Google Sheets וYNAB"
>
<img
slot="svg"
Expand Down
2 changes: 1 addition & 1 deletion nuxt/test/__snapshots__/Features.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports[`Features renders properly 1`] = `
<div class=\\"container max-w-5xl mx-auto m-8\\">
<section-title-stub>תכונות</section-title-stub>
<feature-right-stub headline=\\"ייבוא מאתר הבנק\\" content=\\"עם חיובי, ניתן לייבא נתונים בצורה אוטומטית מפירוט העובר ושב של חשבונות הבנק והאשראי.\\"><img src=\\"~assets/img/cloud_files.svg\\" alt=\\"\\"></feature-right-stub>
<feature-left-stub headline=\\"ייצוא לתוכנות ניתוח נתונים\\" content=\\"את הנתונים שחיובי מושך מחשבונות הבנק והאשראי ניתן לייצא לתוכנות ניהול נתונים שונות.\\"><img src=\\"~assets/img/file_sync.svg\\" alt=\\"\\"></feature-left-stub>
<feature-left-stub headline=\\"ייצוא לתוכנות ניתוח נתונים\\" content=\\"את הנתונים שחיובי מושך מחשבונות הבנק והאשראי ניתן לייצא לתוכנות ניהול נתונים שונות, כמו Excel, Google Sheets וYNAB\\"><img src=\\"~assets/img/file_sync.svg\\" alt=\\"\\"></feature-left-stub>
</div>
</section>"
`;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hiuvi",
"version": "0.0.2-beta",
"version": "0.0.3-beta",
"author": "Jonathan Goldfarb <[email protected]>",
"description": "An electron app for automating expense tracking",
"license": "MIT",
Expand Down
5 changes: 4 additions & 1 deletion src/backend/export/outputVendors/csv/csv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ import parse from 'csv-parse/lib/sync';
export function parseTransactions(csvText: string) {
return parse(csvText, {
columns: true,
bom: true,
ltrim: true,
rtrim: true,
cast: (value, context) => {
return parseColumn(value, context.column);
}
}) as EnrichedTransaction[];
}) as unknown as EnrichedTransaction[];
}

function parseColumn(value:string, column) {
Expand Down
6 changes: 3 additions & 3 deletions src/ui/components/app/ReportProblemDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ import { shell } from 'electron';
import Sentry from '@/logging/sentry';
import LogSheet from '@/ui/components/shared/LogSheet';
import os from 'os';
import { getLastLines, getLogsFolder } from '@/logging/logger';
import logger, { getLastLines, getLogsFolder } from '@/logging/logger';
import { defineComponent } from '@vue/composition-api';
import { repository } from '../../../../package.json';
Expand Down Expand Up @@ -179,7 +179,7 @@ export default defineComponent({
this.formData.details,
this.formData.attachLogs ? this.raw : '',
);
this.$logger.info(`Open bug report url with title: ${this.formData.title}`);
logger.info(`Open bug report url with title: ${this.formData.title}`);
shell.openExternal(url);
}
},
Expand All @@ -193,7 +193,7 @@ export default defineComponent({
this.formData.email,
);
this.$logger.info(`Problem reported. Event ${eventId}`);
logger.info(`Problem reported. Event ${eventId}`);
this.dialog = false;
}
},
Expand Down

0 comments on commit 2e85f37

Please sign in to comment.