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

Commit d277423

Browse files
committed
Update version to 0.9.8
1 parent 3ad0a65 commit d277423

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

bunqdesktop.nuspec

Lines changed: 2 additions & 2 deletions
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.9.7</version>
5+
<version>0.9.8</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>
@@ -25,7 +25,7 @@
2525
<summary>The unofficial, free and open source desktop application for the bunq API</summary>
2626
<description>A desktop implementation for bunq's API. This app does everything within the application so you don't have to worry about sharing your API key with anyone else!</description>
2727

28-
<releaseNotes>https://github.com/bunqCommunity/bunqDesktop/releases/tag/0.9.7</releaseNotes>
28+
<releaseNotes>https://github.com/bunqCommunity/bunqDesktop/releases/tag/0.9.8</releaseNotes>
2929
</metadata>
3030
<files>
3131
<!-- this section controls what actually gets packaged into the Chocolatey package -->

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.9.7/bunqDesktop-0.9.7.exe'
3+
$url = 'https://github.com/bunqCommunity/bunqDesktop/releases/download/0.9.8/bunqDesktop-0.9.8.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": "The unofficial, free and open source desktop application for the bunq API",
44
"productName": "bunqDesktop",
55
"homepage": "https://bunqdesk.top/",
6-
"version": "0.9.7",
6+
"version": "0.9.8",
77
"author": {
88
"name": "bunqCommunity",
99
"email": "[email protected]"

src/react/Functions/Utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const isObject = a => {
3333
*/
3434
export const getObjectType = object => {
3535
return Object.keys(object)[0];
36-
}
36+
};
3737

3838
// list of keys which should be anonymized
3939
export const anonymizeKeys = [

src/react/Pages/Pay/Pay.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ class Pay extends React.Component {
234234
this.props.openSnackbar(outgoingPaymentsMessage);
235235
return;
236236
}
237-
238237
}
239238
}
240239

src/react/Types/Types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ export type PrimaryAccountNumber = {
161161
four_digit: string;
162162
id: number;
163163
monetary_account_id: number;
164-
status: "ACTIVE"|"INACTIVE";
164+
status: "ACTIVE" | "INACTIVE";
165165
uuid: string;
166-
}
167-
export type PrimaryAccountNumberCollection = PrimaryAccountNumber[]
166+
};
167+
export type PrimaryAccountNumberCollection = PrimaryAccountNumber[];
168168

169169
export type RequestStatus = "ACCEPTED" | "PENDING" | "REJECTED" | "REVOKED";
170170

src/react/WebWorkers/stats.worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const masterCardActionMapper = (masterCardActions, paymentFilterSettings, catego
124124
paymentSubType = "googlePayPayment";
125125
break;
126126
}
127-
127+
128128
switch (masterCardAction.label_card.type) {
129129
case "MAESTRO":
130130
paymentSubType = "maestroPayment";

0 commit comments

Comments
 (0)