Skip to content

Commit c491829

Browse files
authored
Merge pull request #264 from 0xsequence/tweaks/primary-sale-boilerplate
Changed abi regex, switched boilerplate contracts, mouse cursor does not disappear
2 parents 19e71ba + 0be99a8 commit c491829

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:c65b459b4ed22a3668fc7114d5f2a40d975b99f2e997f1633611033b4ef71b5d
3-
size 123360
2+
oid sha256:d20a731343a26d0edac2e140e1a0c7e8c2291e130fd84e19fc16ed3b2a6a60a0
3+
size 132117
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:93bcf13d21aab550ffe8232a56faca75d406c14f46fa6877abe9efcd8dd0f77e
3-
size 471343
2+
oid sha256:0321148129122523217b9f988340d109f8cc7290fc26cade417f4aeb82724126
3+
size 472239
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:81ec6a953d967d6bd3f768a8fe3d2c6ece0901111a1d332848853d40f5db12c6
3-
size 427915
2+
oid sha256:16cdd428e89061811df3202f1842c81131cea7552d73a9e9e98730531ae54807
3+
size 457127
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:3d10ae0f4184fa6c3c644537dc10982962008dc1ed2fae8bc9b239ccfefc2816
3-
size 365727
2+
oid sha256:151d7db4b9119126d73aeb82f45ea2ba7977304e048eaf7f6cd568cbdbdcf00b
3+
size 378357

Plugins/SequencePlugin/Source/SequencePlugin/Private/ABI/ABI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void ABI::Decode(TArray<uint8> Data, TArray<TSharedPtr<ABIElement>> Args)
9797

9898
bool ABI::IsValidSignature(FString Signature)
9999
{
100-
const FRegexPattern FunctionABIRegex(TEXT("^[a-z]+\\(([a-z0-9\\[\\]]+(,[a-z0-9\\[\\]]+)*)\\)$"));
100+
const FRegexPattern FunctionABIRegex(TEXT("^[A-Z|a-z|_,-|0-9]+\\(([A-Za-z0-9\\[\\]]+(, *[A-Za-z0-9\\[\\]]+)*)?\\)$"));
101101
FRegexMatcher MyMatcher(FunctionABIRegex, Signature);
102102
return MyMatcher.FindNext();
103103
}

0 commit comments

Comments
 (0)