Skip to content

Commit ac43451

Browse files
author
Marcin Mazurek
authored
Merge pull request #3143 from input-output-hk/merge-5.3.0-into-develop
Merge release/5.3.0 into develop
2 parents 2772978 + 9562557 commit ac43451

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## vNext
44

5+
## 5.3.0
6+
57
### Features
68

79
- Apply Catalyst API improvements ([PR 3136](https://github.com/input-output-hk/daedalus/pull/3136))

installers/common/WindowsInstaller.hs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,10 @@ writeInstallerNSIS outName (Version fullVersion') InstallerConfig{installDirecto
209209
iff_ (not_ (lockfileDeleted)) $ do
210210
unsafeInject $ T.unpack $ "Abort \"" <> installDirectory <> " $(AlreadyRunning)\""
211211

212+
iff_ (fileExists "$INSTDIR") $ do
213+
detailPrint "Removing previously installed version"
214+
rmdir [Recursive] "$INSTDIR"
215+
212216
iff_ (fileExists "$APPDATA\\$InstallDir\\Wallet-1.0\\open\\*.*") $
213217
rmdir [] "$APPDATA\\$InstallDir\\Wallet-1.0\\open"
214218
case oBackend of

nix/internal/launcher-config.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ let
142142
in if networkSupported then supportedNetworks.${network} else unsupported;
143143

144144
iconPath = let
145-
networkIconExists = __pathExists (../. + "/installers/icons/${network}");
145+
networkIconExists = __pathExists (../../. + "/installers/icons/${network}");
146146
network' = if networkIconExists then network else "mainnet";
147147
in {
148148
small = ../../installers/icons + "/${network'}/64x64.png";

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": "5.2.0",
4+
"version": "5.3.0",
55
"description": "Cryptocurrency Wallet",
66
"main": "./dist/main/index.js",
77
"scripts": {

0 commit comments

Comments
 (0)