diff --git a/CHANGELOG.md b/CHANGELOG.md index a176de801c..352c58e2e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,12 @@ Changelog - Fixed green Cardano theme white color and borders color ([PR 1584](https://github.com/input-output-hk/daedalus/pull/1584)) - Fixed flat button color ([PR 1586](https://github.com/input-output-hk/daedalus/pull/1586)) +## 0.15.1 + +### Fixes + +- Fixed newsfeed content loading issue ([PR 1653](https://github.com/input-output-hk/daedalus/pull/1653)) + ## 0.15.0 ### Features diff --git a/installers/cardano-configuration.yaml b/installers/cardano-configuration.yaml index 4b2fb29272..38a75c2b16 100644 --- a/installers/cardano-configuration.yaml +++ b/installers/cardano-configuration.yaml @@ -14851,7 +14851,7 @@ mainnet_wallet_win64: &mainnet_wallet_win64 <<: *mainnet_full update: applicationName: csl-daedalus - applicationVersion: 16 + applicationVersion: 17 lastKnownBlockVersion: bvMajor: 0 bvMinor: 1 @@ -14861,7 +14861,7 @@ mainnet_wallet_macos64: &mainnet_wallet_macos64 <<: *mainnet_full update: applicationName: csl-daedalus - applicationVersion: 16 + applicationVersion: 17 lastKnownBlockVersion: bvMajor: 0 bvMinor: 1 @@ -14871,7 +14871,7 @@ mainnet_wallet_linux64: &mainnet_wallet_linux64 <<: *mainnet_full update: applicationName: csl-daedalus - applicationVersion: 16 + applicationVersion: 17 lastKnownBlockVersion: bvMajor: 0 bvMinor: 1 @@ -14945,7 +14945,7 @@ testnet_wallet: &testnet_wallet <<: *testnet_full update: &testnet_wallet_update applicationName: csl-daedalus - applicationVersion: 5 + applicationVersion: 6 lastKnownBlockVersion: bvMajor: 0 bvMinor: 0 @@ -15141,7 +15141,7 @@ mainnet_dryrun_wallet_win64: &mainnet_dryrun_wallet_win64 <<: *mainnet_dryrun_full update: applicationName: csl-daedalus - applicationVersion: 28 + applicationVersion: 29 lastKnownBlockVersion: bvMajor: 1 bvMinor: 0 @@ -15151,7 +15151,7 @@ mainnet_dryrun_wallet_macos64: &mainnet_dryrun_wallet_macos64 <<: *mainnet_dryrun_full update: applicationName: csl-daedalus - applicationVersion: 28 + applicationVersion: 29 lastKnownBlockVersion: bvMajor: 1 bvMinor: 0 @@ -15161,7 +15161,7 @@ mainnet_dryrun_wallet_linux64: &mainnet_dryrun_wallet_linux64 <<: *mainnet_dryrun_full update: applicationName: csl-daedalus - applicationVersion: 28 + applicationVersion: 29 lastKnownBlockVersion: bvMajor: 1 bvMinor: 0 diff --git a/package.json b/package.json index 8fbd869c99..224fd05fa6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "daedalus", "productName": "Daedalus", - "version": "0.15.0", + "version": "0.15.1", "description": "Cryptocurrency Wallet", "main": "./dist/main/index.js", "scripts": { diff --git a/source/renderer/app/api/utils/externalRequest.js b/source/renderer/app/api/utils/externalRequest.js index 700214c29f..81e8c4e46d 100644 --- a/source/renderer/app/api/utils/externalRequest.js +++ b/source/renderer/app/api/utils/externalRequest.js @@ -29,6 +29,7 @@ export const externalRequest = ( const request = requestMethod(options); request.on('response', response => { + response.setEncoding('utf8'); let body = ''; response.on('data', chunk => { body += chunk;