Skip to content

Commit 28e0d63

Browse files
committed
Version bump
1 parent 89fafa6 commit 28e0d63

7 files changed

Lines changed: 24 additions & 64 deletions

File tree

Packages/com.walletconnect.web3modal/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.0] - 2024-07-08
9+
10+
### Added
11+
12+
- Advanced customization capabilities
13+
14+
### Fixed
15+
16+
- Empty wallet search query not showing any wallets
17+
818
## [0.3.2] - 2024-06-26
919

1020
### Added

Packages/com.walletconnect.web3modal/Runtime/Web3Modal.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public abstract class Web3Modal : MonoBehaviour
2020
public static BlockchainApiController BlockchainApiController { get; protected set; }
2121
public static NotificationController NotificationController { get; protected set; }
2222
public static NetworkController NetworkController { get; protected set; }
23-
23+
2424
public static EvmService Evm { get; protected set; }
2525

2626
public static Web3ModalConfig Config { get; private set; }
@@ -75,7 +75,7 @@ public static async Task InitializeAsync(Web3ModalConfig config)
7575
throw new Exception("Already initialized"); // TODO: use custom ex type
7676

7777
SdkMetadata.Type = "w3m";
78-
SdkMetadata.Version = "unity-w3m-v0.3.2"; // TODO: update this from CI
78+
SdkMetadata.Version = "unity-w3m-v0.4.0"; // TODO: update this from CI
7979

8080
Config = config ?? throw new ArgumentNullException(nameof(config));
8181

Packages/com.walletconnect.web3modal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.walletconnect.web3modal",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"displayName": "Web3Modal",
55
"unity": "2022.3",
66
"author": "WalletConnect",

Samples/Customization/Packages/manifest.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"com.unity.timeline": "1.7.6",
77
"com.unity.ugui": "1.0.0",
88
"com.unity.visualscripting": "1.9.4",
9-
"com.walletconnect.core": "file:/Users/gleb/git/WalletConnectUnity/Packages/com.walletconnect.core",
10-
"com.walletconnect.web3modal": "file:/Users/gleb/git/Web3ModalUnity/Packages/com.walletconnect.web3modal",
9+
"com.walletconnect.web3modal": "0.4.0",
1110
"com.unity.modules.ai": "1.0.0",
1211
"com.unity.modules.androidjni": "1.0.0",
1312
"com.unity.modules.animation": "1.0.0",
@@ -38,18 +37,20 @@
3837
"com.unity.modules.video": "1.0.0",
3938
"com.unity.modules.vr": "1.0.0",
4039
"com.unity.modules.wind": "1.0.0",
41-
"com.unity.modules.xr": "1.0.0"
40+
"com.unity.modules.xr": "1.0.0",
41+
"com.walletconnect.core": "3.1.9"
4242
},
4343
"scopedRegistries": [
4444
{
4545
"name": "package.openupm.com",
4646
"url": "https://package.openupm.com",
4747
"scopes": [
4848
"com.nethereum.unity",
49+
"com.walletconnect.core",
4950
"com.walletconnect.nethereum",
5051
"com.walletconnect.ui",
5152
"com.walletconnect.web3modal"
5253
]
5354
}
5455
]
55-
}
56+
}

Samples/Customization/Packages/packages-lock.json

Lines changed: 2 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
11
{
22
"dependencies": {
3-
"com.nethereum.unity": {
4-
"version": "4.19.1",
5-
"depth": 1,
6-
"source": "registry",
7-
"dependencies": {},
8-
"url": "https://package.openupm.com"
9-
},
10-
"com.unity.2d.sprite": {
11-
"version": "1.0.0",
12-
"depth": 2,
13-
"source": "builtin",
14-
"dependencies": {}
15-
},
163
"com.unity.collab-proxy": {
174
"version": "2.4.3",
185
"depth": 0,
@@ -145,25 +132,6 @@
145132
"com.unity.modules.imgui": "1.0.0"
146133
}
147134
},
148-
"com.unity.vectorgraphics": {
149-
"version": "2.0.0-preview.24",
150-
"depth": 1,
151-
"source": "registry",
152-
"dependencies": {
153-
"com.unity.2d.sprite": "1.0.0",
154-
"com.unity.ugui": "1.0.0",
155-
"com.unity.modules.animation": "1.0.0",
156-
"com.unity.modules.imageconversion": "1.0.0",
157-
"com.unity.modules.physics": "1.0.0",
158-
"com.unity.modules.physics2d": "1.0.0",
159-
"com.unity.modules.ui": "1.0.0",
160-
"com.unity.modules.uielements": "1.0.0",
161-
"com.unity.modules.unitywebrequest": "1.0.0",
162-
"com.unity.modules.unitywebrequesttexture": "1.0.0",
163-
"com.unity.modules.unitywebrequestwww": "1.0.0"
164-
},
165-
"url": "https://packages.unity.com"
166-
},
167135
"com.unity.visualscripting": {
168136
"version": "1.9.4",
169137
"depth": 0,
@@ -175,31 +143,11 @@
175143
"url": "https://packages.unity.com"
176144
},
177145
"com.walletconnect.core": {
178-
"version": "file:/Users/gleb/git/WalletConnectUnity/Packages/com.walletconnect.core",
146+
"version": "3.1.9",
179147
"depth": 0,
180-
"source": "local",
181-
"dependencies": {
182-
"com.unity.nuget.newtonsoft-json": "3.2.1"
183-
}
184-
},
185-
"com.walletconnect.nethereum": {
186-
"version": "1.0.1",
187-
"depth": 1,
188148
"source": "registry",
189149
"dependencies": {
190-
"com.nethereum.unity": "4.19.1",
191-
"com.walletconnect.core": "3.1.7"
192-
},
193-
"url": "https://package.openupm.com"
194-
},
195-
"com.walletconnect.ui": {
196-
"version": "1.1.8",
197-
"depth": 1,
198-
"source": "registry",
199-
"dependencies": {
200-
"com.walletconnect.core": "3.1.8",
201-
"com.unity.textmeshpro": "3.0.0",
202-
"com.unity.ugui": "1.0.0"
150+
"com.unity.nuget.newtonsoft-json": "3.2.1"
203151
},
204152
"url": "https://package.openupm.com"
205153
},

Samples/Customization/ProjectSettings/PackageManagerSettings.asset

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ MonoBehaviour:
3131
m_Url: https://package.openupm.com
3232
m_Scopes:
3333
- com.nethereum.unity
34+
- com.walletconnect.core
3435
- com.walletconnect.nethereum
3536
- com.walletconnect.ui
3637
- com.walletconnect.web3modal
@@ -42,6 +43,6 @@ MonoBehaviour:
4243
m_RegistryInfoDraft:
4344
m_Modified: 0
4445
m_ErrorMessage:
45-
m_UserModificationsInstanceId: -836
46+
m_UserModificationsInstanceId: -834
4647
m_OriginalInstanceId: -838
4748
m_LoadAssets: 0

Samples/Customization/ProjectSettings/ProjectSettings.asset

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ PlayerSettings:
9292
bakeCollisionMeshes: 0
9393
forceSingleInstance: 0
9494
useFlipModelSwapchain: 1
95-
resizableWindow: 0
95+
resizableWindow: 1
9696
useMacAppStoreValidation: 0
9797
macAppStoreCategory: public.app-category.games
9898
gpuSkinning: 1
@@ -103,7 +103,7 @@ PlayerSettings:
103103
xboxEnableFitness: 0
104104
visibleInBackground: 1
105105
allowFullscreenSwitch: 1
106-
fullscreenMode: 1
106+
fullscreenMode: 3
107107
xboxSpeechDB: 0
108108
xboxEnableHeadOrientation: 0
109109
xboxEnableGuest: 0

0 commit comments

Comments
 (0)