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

Commit

Permalink
Merge pull request #449 from bunqCommunity/master
Browse files Browse the repository at this point in the history
Release 0.9.5
  • Loading branch information
Crecket authored Dec 5, 2018
2 parents ae8f753 + fcbb8d1 commit e90a3e4
Show file tree
Hide file tree
Showing 50 changed files with 1,313 additions and 921 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
node_modules
.DS_Store
Thumbs.db
.idea
.vs
*.log
*.autogenerated
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ $ yarn start:dev
```

## Contact
We have a public [Telegram chat group ](https://t.me/bunqcommunity) and a topic on [bunq together](https://together.bunq.com/topic/bunqdesktop-client).
We have a public [Telegram chat group ](https://t.me/bunqcommunity) and a topic on [bunq together](https://together.bunq.com/d/5763-bunqdesktop-the-unofficial-free-and-open-source-desktop-application-for-bunq/).

If you just want a notification when a new version is released you can also join the [Telegram updates channel](https://t.me/bunqdesktop).

Expand Down
4 changes: 2 additions & 2 deletions bunqdesktop.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>bunqdesktop</id>
<version>0.9.4</version>
<version>0.9.5</version>
<!-- <packageSourceUrl>Where is this Chocolatey package located (think GitHub)? packageSourceUrl is highly recommended for the community feed</packageSourceUrl>-->
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>bunqCommunity</owners>
Expand All @@ -25,7 +25,7 @@
<summary>The unofficial, free and open source desktop application for the bunq API</summary>
<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>

<releaseNotes>https://github.com/bunqCommunity/bunqDesktop/releases/tag/0.9.4</releaseNotes>
<releaseNotes>https://github.com/bunqCommunity/bunqDesktop/releases/tag/0.9.5</releaseNotes>
</metadata>
<files>
<!-- this section controls what actually gets packaged into the Chocolatey package -->
Expand Down
2 changes: 1 addition & 1 deletion chocolatey/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$name = 'bunqDesktop'
$installerType = 'exe'
$url = 'https://github.com/bunqCommunity/bunqDesktop/releases/download/0.9.4/bunqDesktop-0.9.4.exe'
$url = 'https://github.com/bunqCommunity/bunqDesktop/releases/download/0.9.5/bunqDesktop-0.9.5.exe'
$silentArgs = '/silent'

Install-ChocolateyPackage $name $installerType $silentArgs $url
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "The unofficial, free and open source desktop application for the bunq API",
"productName": "bunqDesktop",
"homepage": "https://bunqdesk.top/",
"version": "0.9.4",
"version": "0.9.5",
"author": {
"name": "bunqCommunity",
"email": "[email protected]"
Expand Down Expand Up @@ -160,7 +160,7 @@
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@bunq-community/bunq-js-client": "^0.31.0",
"@bunq-community/bunq-js-client": "^0.33.0",
"@bunq-community/bunqdesktop-templates": "^1.2.0",
"@fortawesome/fontawesome-free": "^5.2.0",
"@material-ui/core": "^3.5.1",
Expand Down
2 changes: 0 additions & 2 deletions src/react/Actions/pay.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ export function paySend(BunqJSClient, userId, accountId, description, amount, ta
dispatch(openSnackbar(notification));

// update the payments, accounts and share list
dispatch(paymentInfoUpdate(BunqJSClient, userId, accountId));
dispatch(shareInviteBankResponsesInfoUpdate(BunqJSClient, userId));
dispatch(paymentInfoUpdate(BunqJSClient, userId, accountId));
dispatch(accountsUpdate(BunqJSClient, userId));

dispatch(payNotLoading());
Expand Down
6 changes: 4 additions & 2 deletions src/react/Actions/payments.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import BunqErrorHandler from "../Helpers/BunqErrorHandler";
import { storeDecryptString } from "../Helpers/CryptoWorkerWrapper";
import { paymentApiFilter } from "../Helpers/DataFilters";

import Payment from "../Models/Payment";

export const STORED_PAYMENTS = "BUNQDESKTOP_STORED_PAYMENTS";
Expand All @@ -24,7 +26,7 @@ export function loadStoredPayments(BunqJSClient) {
.then(data => {
if (data && data.items) {
// turn plain objects into Model objects
const paymentsNew = data.items.map(item => new Payment(item));
const paymentsNew = data.items.map(item => new Payment(item)).filter(paymentApiFilter);

dispatch(paymentsSetInfo(paymentsNew, data.account_id));
}
Expand Down Expand Up @@ -55,7 +57,7 @@ export function paymentInfoUpdate(
.list(user_id, account_id, options)
.then(payments => {
// turn plain objects into Model objects
const paymentsNew = payments.map(item => new Payment(item));
const paymentsNew = payments.map(item => new Payment(item)).filter(paymentApiFilter);

dispatch(paymentsSetInfo(paymentsNew, account_id, false, BunqJSClient));
dispatch(paymentsNotLoading());
Expand Down
Loading

0 comments on commit e90a3e4

Please sign in to comment.