Skip to content
This repository was archived by the owner on Aug 6, 2021. It is now read-only.

Commit c15c32a

Browse files
committed
0.8.4
1 parent a7f0944 commit c15c32a

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

bunqdesktop.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>bunqdesktop</id>
5-
<version>0.8.3</version>
5+
<version>0.8.4</version>
66
<!-- <packageSourceUrl>Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed</packageSourceUrl>-->
77
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
88
<owners>BunqCommunity</owners>

chocolatey/chocolateyInstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$name = 'BunqDesktop'
22
$installerType = 'exe'
3-
$url = 'https://github.com/BunqCommunity/BunqDesktop/releases/download/0.8.3/BunqDesktop.Setup.0.8.3.exe'
3+
$url = 'https://github.com/BunqCommunity/BunqDesktop/releases/download/0.8.4/BunqDesktop.Setup.0.8.4.exe'
44
$silentArgs = '/silent'
55

66
Install-ChocolateyPackage $name $installerType $silentArgs $url

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A desktop implementation for the bunq API",
44
"productName": "BunqDesktop",
55
"homepage": "https://bunqdesktop.com/",
6-
"version": "0.8.3",
6+
"version": "0.8.4",
77
"author": {
88
"name": "BunqCommunity",
99
"email": "bunqcommunity@gmail.com"

src/helpers/settings.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@ import jetpack from "fs-jetpack";
44

55
const userDataPath = app.getPath("userData");
66
const userDataDir = jetpack.cwd(app.getPath("userData"));
7-
const defaultSettingsPath = `${userDataPath}${path.sep}settings.json`;
7+
const defaultSettingsPath = path.join(userDataPath, "settings.json");
88
const settingsStoreFile = `SETTINGS_LOCATION`;
99

1010
// ensure bunqdesktop directory exists
11-
userDataDir.dir("./");
11+
try {
12+
userDataDir.dir("./");
13+
} catch (err) {
14+
}
1215

1316
const loadPath = () => {
1417
try {
15-
return userDataDir.read(settingsStoreFile, "utf8");
18+
const settingsPath = userDataDir.read(settingsStoreFile, "utf8");
19+
20+
if (settingsPath) {
21+
return settingsPath;
22+
}
1623
} catch (err) {
1724
// For some reason json can't be read
1825
}

src/react/Locales/nl.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"API key": "API key",
33
"Accept request": "Accepteer verzoek",
44
"Account Info": "Account informatie",
5+
"Account created successfully!": "Account successvol aangemaakt",
6+
"Account description": "Account beschrijving",
7+
"Account settings updated successfully!": "Account instellingen successvol geüpdate",
58
"Accounts": "Accounts",
69
"ActiveDevelopmentWarning": "Dit project is nog steeds in actieve ontwikkeling en we zijn niet verantwoordelijk als er iets misgaat.",
710
"Add": "Toevoegen",
@@ -71,6 +74,7 @@
7174
"Draft payment successfully created!": "Betaling is successvol klaar gezet",
7275
"Draft this payment": "Betaling klaarzetten",
7376
"EMAIL": "E-mail",
77+
"Edit account settings": "Bewerk account instellingen",
7478
"Email": "E-mail",
7579
"Enable or disable this ruleset": "Schakel deze regelset in of uit",
7680
"Enable sandbox mode?": "Gebruik sandbox mode?",
@@ -171,6 +175,7 @@
171175
"Production key": "Productie sleutel",
172176
"Psst, want some money?": "Psst, heb je geld nodig?",
173177
"Reason": "Reden",
178+
"Received": "Ontvangen",
174179
"Received a request": "Verzoek ontvangen",
175180
"Received payment": "Ontvangen betaling",
176181
"Received payment with ": "Betaling ontvangen met ",
@@ -209,6 +214,7 @@
209214
"Secondary card": "Secundaire kaart",
210215
"Select an account": "Selecteer een account",
211216
"Send request": "Verzend verzoek",
217+
"Sent": "Verstuurd",
212218
"Sent payment": "Verzonden betaling",
213219
"Sent payment with ": "Betaling verstuurd met ",
214220
"Sent request": "Verzoek verzonden",
@@ -240,9 +246,11 @@
240246
"This target seems to be added already": "Dit doel lijkt al te zijn toegevoegd",
241247
"To date": "Tot datum",
242248
"Today": "Vandaag",
249+
"Total change": "Totale verandering",
243250
"Transaction amount": "Bedrag van de transactie",
244251
"Transfer": "Overmaken",
245252
"Until": "Tot",
253+
"Update": "Vernieuwen",
246254
"Update CVC Codes": "CVC-codes bijwerken",
247255
"Update category": "Update categorie",
248256
"Updated": "Geüpdate",
@@ -270,6 +278,8 @@
270278
"We failed to load your users": "Het is niet gelukt om je gebruikers op te halen",
271279
"We failed to register this device on the bunq servers Are you sure you entered a valid API key? And are you sure that this key is meant for the selected bunq environment?": "Het is niet gelukt om dit apparaat te registreren bij de bunq servers. Weet je zeker dat de API key geldig is voor deze bunq omgeving? (Productie en Sandbox)",
272280
"We failed to setup BunqDesktop properly": "Het is niet gelukt om BunqDesktop goed in te stellen",
281+
"We received the following error updating the settings for your account": "We hebben de volgende error ontvangen bij het updaten van de settings voor dit account",
282+
"We received the following error while creating your account": "We hebben de volgende error ontvangen bij het aanmaken van dit account",
273283
"We received the following error while loading your master card payments": "We hebben de volgende error ontvangen bij het ophalen van je master card betalingen",
274284
"We received the following error while loading your request responses": "We hebben de volgende error ontvangen bij het ophalen van je RequestResponses",
275285
"We received the following error while sending your payment": "We hebben de volgende error ontvangen bij het versturen van je betaling",

0 commit comments

Comments
 (0)