Browse Source

cleanup windows install

terminal
Craig Raw 4 years ago
parent
commit
b7522420cf
  1. 10
      src/main/deploy/package/windows/overrides.wxi
  2. 2
      src/main/java/com/sparrowwallet/sparrow/AppController.java

10
src/main/deploy/package/windows/overrides.wxi

@ -1,10 +0,0 @@
<RegistryKey Root="HKCR" Key="aopp" Action="createAndRemoveOnUninstall">
<RegistryValue Type="string" Name="URL Protocol" Value=""/>
<RegistryValue Type="string" Value="URL:AOPP"/>
<RegistryKey Key="DefaultIcon">
<RegistryValue Type="string" Value="$(var.JpAppName).exe" />
</RegistryKey>
<RegistryKey Key="shell\open\command">
<RegistryValue Type="string" Value="&quot;[INSTALLFOLDER]$(var.JpAppName).exe&quot; &quot;%1&quot;" />
</RegistryKey>
</RegistryKey>

2
src/main/java/com/sparrowwallet/sparrow/AppController.java

@ -432,7 +432,7 @@ public class AppController implements Initializable {
showErrorDialog("Invalid PSBT", e.getMessage());
} catch(TransactionParseException e) {
showErrorDialog("Invalid transaction", e.getMessage());
} catch(ParseException e) {
} catch(Exception e) {
showErrorDialog("Invalid file", e.getMessage());
}
}

Loading…
Cancel
Save