Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- GUI: Fix an issue where the application would crash when the internal Tor client tried to execute a Proof-of-Work challenge due to a missing entitlement permission. ([#915](https://github.com/eigenwallet/core/issues/915))
- Try to fix an issue where the response from the Monero daemon would be too large to parse when fetching the status of a transaction ([#885](https://github.com/eigenwallet/core/issues/885)).

## [4.0.4] - 2026-03-20
Expand All @@ -32,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The punish timelock, which determines the length of the refund window, remains at 72 blocks (24 hours).

- Protocol: Add possibility for maker to require an "anti-spam deposit".
The deposit is a part of the Bitcoin refund which the maker may withhold during a 30 minute timeframe.
The deposit is a part of the Bitcoin refund which the maker may withhold during a 30 minute timeframe
The deposit can still be released after the fact, by granting mercy.
Both parties will refuse an anti-spam deposit that makes up more than 20% of the swap's Bitcoin.

Expand Down
10 changes: 10 additions & 0 deletions src-tauri/Entitlements.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
</dict>
</plist>
3 changes: 2 additions & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"icons/icon.ico"
],
"macOS": {
"minimumSystemVersion": "11.0"
"minimumSystemVersion": "11.0",
"entitlements": "./Entitlements.plist"
},
"iOS": {
"minimumSystemVersion": "13.0"
Expand Down
Loading