File tree 4 files changed +5
-16
lines changed
4 files changed +5
-16
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
5
5
* Unreleased*
6
6
7
7
* Released*
8
+ ## [ v1.5.0] - 2024-03-12
9
+ ### Additions
10
+ - Security enhancement on DApp Browser
8
11
## [ v1.4.9] - 2024-03-07
9
12
### Additions
10
13
- Security enhancement on DApp Browser
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " chain-desktop-wallet" ,
3
- "version" : " 1.4.9 " ,
3
+ "version" : " 1.5.0 " ,
4
4
"description" : " Crypto.com DeFi Desktop Wallet App" ,
5
5
"repository" : " github:crypto-com/chain-desktop-wallet" ,
6
6
"author" : " Crypto.com <contact@crypto.com>" ,
Original file line number Diff line number Diff line change @@ -555,13 +555,6 @@ export const useIPCProvider = (props: IUseIPCProviderProps) => {
555
555
}
556
556
}
557
557
break ;
558
- case 'openLinkInDefaultBrowser' :
559
- {
560
- const { url } = event . object ;
561
- const { shell } = window . require ( 'electron' ) ;
562
- shell . openExternal ( url ) ;
563
- }
564
- break ;
565
558
default :
566
559
break ;
567
560
}
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ export namespace DappBrowserIPC {
22
22
export type EventName =
23
23
| 'addEthereumChain'
24
24
| 'ecRecover'
25
- | 'openLinkInDefaultBrowser'
26
25
| 'requestAccounts'
27
26
| 'signMessage'
28
27
| 'signPersonalMessage'
@@ -142,12 +141,7 @@ export namespace DappBrowserIPC {
142
141
chainId : string ;
143
142
}
144
143
}
145
- export interface OpenLinkInDefaultBrowserEvent extends BaseEvent {
146
- name : 'openLinkInDefaultBrowser' ;
147
- object : {
148
- url : string ;
149
- }
150
- }
144
+
151
145
152
146
export type Event =
153
147
| SignTransactionEvent
@@ -160,7 +154,6 @@ export namespace DappBrowserIPC {
160
154
| WatchAssetEvent
161
155
| AddEthereumChainEvent
162
156
| SwitchEthereumChainEvent
163
- | OpenLinkInDefaultBrowserEvent
164
157
| TokenApprovalEvent ;
165
158
}
166
159
You can’t perform that action at this time.
0 commit comments