Skip to content

Commit 88c6a6b

Browse files
authored
Merge pull request #1656 from input-output-hk/release/0.15.1
Release/0.15.1
2 parents f7111bc + 17e2a8c commit 88c6a6b

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
## 0.15.1
5+
6+
### Fixes
7+
8+
- Fixed newsfeed content loading issue ([PR 1653](https://github.com/input-output-hk/daedalus/pull/1653))
9+
410
## 0.15.0
511

612
### Features

installers/cardano-configuration.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14851,7 +14851,7 @@ mainnet_wallet_win64: &mainnet_wallet_win64
1485114851
<<: *mainnet_full
1485214852
update:
1485314853
applicationName: csl-daedalus
14854-
applicationVersion: 16
14854+
applicationVersion: 17
1485514855
lastKnownBlockVersion:
1485614856
bvMajor: 0
1485714857
bvMinor: 1
@@ -14861,7 +14861,7 @@ mainnet_wallet_macos64: &mainnet_wallet_macos64
1486114861
<<: *mainnet_full
1486214862
update:
1486314863
applicationName: csl-daedalus
14864-
applicationVersion: 16
14864+
applicationVersion: 17
1486514865
lastKnownBlockVersion:
1486614866
bvMajor: 0
1486714867
bvMinor: 1
@@ -14871,7 +14871,7 @@ mainnet_wallet_linux64: &mainnet_wallet_linux64
1487114871
<<: *mainnet_full
1487214872
update:
1487314873
applicationName: csl-daedalus
14874-
applicationVersion: 16
14874+
applicationVersion: 17
1487514875
lastKnownBlockVersion:
1487614876
bvMajor: 0
1487714877
bvMinor: 1
@@ -14945,7 +14945,7 @@ testnet_wallet: &testnet_wallet
1494514945
<<: *testnet_full
1494614946
update: &testnet_wallet_update
1494714947
applicationName: csl-daedalus
14948-
applicationVersion: 5
14948+
applicationVersion: 6
1494914949
lastKnownBlockVersion:
1495014950
bvMajor: 0
1495114951
bvMinor: 0
@@ -15141,7 +15141,7 @@ mainnet_dryrun_wallet_win64: &mainnet_dryrun_wallet_win64
1514115141
<<: *mainnet_dryrun_full
1514215142
update:
1514315143
applicationName: csl-daedalus
15144-
applicationVersion: 28
15144+
applicationVersion: 29
1514515145
lastKnownBlockVersion:
1514615146
bvMajor: 1
1514715147
bvMinor: 0
@@ -15151,7 +15151,7 @@ mainnet_dryrun_wallet_macos64: &mainnet_dryrun_wallet_macos64
1515115151
<<: *mainnet_dryrun_full
1515215152
update:
1515315153
applicationName: csl-daedalus
15154-
applicationVersion: 28
15154+
applicationVersion: 29
1515515155
lastKnownBlockVersion:
1515615156
bvMajor: 1
1515715157
bvMinor: 0
@@ -15161,7 +15161,7 @@ mainnet_dryrun_wallet_linux64: &mainnet_dryrun_wallet_linux64
1516115161
<<: *mainnet_dryrun_full
1516215162
update:
1516315163
applicationName: csl-daedalus
15164-
applicationVersion: 28
15164+
applicationVersion: 29
1516515165
lastKnownBlockVersion:
1516615166
bvMajor: 1
1516715167
bvMinor: 0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "daedalus",
33
"productName": "Daedalus",
4-
"version": "0.15.0",
4+
"version": "0.15.1",
55
"description": "Cryptocurrency Wallet",
66
"main": "./dist/main/index.js",
77
"scripts": {

source/renderer/app/api/utils/externalRequest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export const externalRequest = (
2929
const request = requestMethod(options);
3030

3131
request.on('response', response => {
32+
response.setEncoding('utf8');
3233
let body = '';
3334
response.on('data', chunk => {
3435
body += chunk;

0 commit comments

Comments
 (0)