File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed
source/renderer/app/api/utils Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 11Changelog
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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments