Skip to content

Check urgent #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: firekeeper/only-external-browser
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
124 changes: 0 additions & 124 deletions .github/ISSUE_TEMPLATE/1-bug-report.yml

This file was deleted.

114 changes: 0 additions & 114 deletions .github/ISSUE_TEMPLATE/2-feature-request.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: C/C++ CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
Binary file modified Content/Defaults/WBP_Thirdweb_OAuthOverlay.uasset
Binary file not shown.
Binary file modified Content/Examples/NodeDocs/Thirdweb_AllNodes.uasset
Binary file not shown.
Binary file modified Content/Examples/Widgets/BP_Thirdweb_OTPVerifyModal.uasset
Binary file not shown.
Binary file not shown.
Binary file modified Content/Examples/Widgets/Components/WBP_WalletSourceTab.uasset
Binary file not shown.
Binary file modified Content/Examples/Widgets/Components/WBP_WalletSourceTabs.uasset
Binary file not shown.
Binary file modified Content/Examples/Widgets/WBP_Thirdweb_Guest.uasset
Binary file not shown.
Binary file modified Content/Examples/Widgets/WBP_Thirdweb_InApp.uasset
Binary file not shown.
Binary file modified Content/Examples/Widgets/WBP_Thirdweb_Smart.uasset
Binary file not shown.
Binary file modified Content/Examples/Widgets/WBP_Thirdweb_UI.uasset
Binary file not shown.
19 changes: 2 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,7 @@ The plugin's core logic is built from Rust, making it lightning-fast and minimiz

## Packaging

Windows, Linux, and Android all package natively and can be used in blueprint-only projects

### Mac

The plugin currently makes use of the [Web Browser][web-browser-doc] runtime module which bundles [CEF3][cef-forum].
Changes to the engine are currently required for modern xcode targets as Unreal Engine does not properly link
the framework during packaging. This requires either an engine patch or moving the framework post-build and
then codesigning your build again.

In the [CEF3.build.cs][cef3-build-cs] you need to bypass the `if` check for modern xcode. This can be accomplished by
adding `|| true` to the end of the if check on line 102.

Additionally, you need to add `bCompileCEF3 = true;` to your build target
Windows, Linux, Mac and Android all package natively and can be used in blueprint-only projects

## Supported Platforms & Architectures

Expand All @@ -57,13 +45,10 @@ Legend: ✅ Supported | ❌ Unsupported | ➖ Not applicable

## Documentation

Documentation is available at https://portal.thirdweb.com/unreal
Documentation is available at https://portal.thirdweb.com/unreal-engine

[^1]: Unreal Engine's Marketplace Guidelines - Section 3.1.b https://www.unrealengine.com/en-US/marketplace-guidelines#31b

[support-url]: https://thirdweb.com/support
[documentation-url]: https://portal.thirdweb.com/unreal
[marketplace-url]: https://www.unrealengine.com/marketplace/en-US/product/f21200c2610146f3888172994448e50d
[web-browser-doc]: https://dev.epicgames.com/documentation/en-us/unreal-engine/API/Runtime/WebBrowser
[cef-forum]: https://www.magpcss.org/ceforum/index.php
[cef3-build-cs]: https://github.com/EpicGames/UnrealEngine/blob/release/Engine/Source/ThirdParty/CEF3/CEF3.build.cs#L102
4 changes: 2 additions & 2 deletions Source/ThirdParty/Android/libthirdweb.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Source/ThirdParty/IOS/libthirdweb.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Source/ThirdParty/IOS/libthirdweb.sim.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Source/ThirdParty/Linux/libthirdweb.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Source/ThirdParty/LinuxArm64/libthirdweb.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Source/ThirdParty/Mac/libthirdweb.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Source/ThirdParty/Win64/libthirdweb.lib
Git LFS file not shown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2024 Thirdweb. All Rights Reserved.
// Copyright (c) 2025 Thirdweb. All Rights Reserved.

#include "AsyncTasks/AsyncTaskThirdwebBase.h"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2024 Thirdweb. All Rights Reserved.
// Copyright (c) 2025 Thirdweb. All Rights Reserved.

#include "AsyncTasks/Engine/Contract/AsyncTaskContractReadContract.h"

Expand Down
Loading