Skip to content

Commit 95e3e38

Browse files
1.8.0 (#20)
* Adds Bug Report and Feature Request Templates * Updated examples * Moved BuildPlugin to its own repo * Updated Rust libs * Added missing C++ functions for engine calls * Organized engine calls into namespace and directories * Added all 36 marketplace engine calls * Added IPFS nodes * Added UE_5.2 compatibility for customer * Added UE_5.5 compatibility * Cleanup Runtime settings * Cleanup duplicate async tasks for dynamic tasks * Fix intrinsic build errors Fixes CNCT-2374 Fixes CNCT-2239 --------- Signed-off-by: Nicholas St. Germain <nick@cajun.pro>
1 parent 334d2c4 commit 95e3e38

File tree

246 files changed

+11731
-1228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

246 files changed

+11731
-1228
lines changed
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[BUG]: "
4+
labels: ["bug", "triage"]
5+
projects: []
6+
assignees:
7+
- dirtycajunrice
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this bug report!
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. email@example.com
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What happened?
25+
description: There is no such thing as too much detail!
26+
placeholder: Tell us what you see!
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: reproduction-steps
31+
attributes:
32+
label: Reproduction Steps
33+
description: Steps to reproduce the behavior
34+
placeholder: >
35+
1. Go to '...'
36+
2. Click on '....'
37+
3. Scroll down to '....'
38+
4. See error
39+
validations:
40+
required: true
41+
- type: textarea
42+
id: what-should-have-happened
43+
attributes:
44+
label: What did you expect to happen?
45+
description: A clear and concise description of what you expected to happen.
46+
placeholder: When i used <foo>, i expected to get <bar> after checking <baz>...
47+
validations:
48+
required: true
49+
- type: dropdown
50+
id: plugin-version
51+
attributes:
52+
label: Plugin Version
53+
description: What version of the plugin are you running?
54+
options:
55+
- v1.8.0-dev
56+
- v1.7.0
57+
- v1.6.0
58+
- v1.5.0
59+
- v1.4.0
60+
validations:
61+
required: true
62+
- type: dropdown
63+
id: plugin-source
64+
attributes:
65+
label: Plugin Source
66+
description: Where get you get the plugin from?
67+
options:
68+
- Fab Marketplace
69+
- Github
70+
validations:
71+
required: true
72+
- type: dropdown
73+
id: unreal-engine-version
74+
attributes:
75+
label: Unreal Engine Version
76+
description: What version of Unreal Engine are you running?
77+
options:
78+
- 5.5
79+
- 5.4
80+
- 5.3
81+
- 5.2
82+
- 5.1
83+
- 5.0
84+
validations:
85+
required: true
86+
- type: dropdown
87+
id: unreal-engine-source
88+
attributes:
89+
label: Unreal Engine Source
90+
description: What source did you install unreal engine from?
91+
options:
92+
- Epic Games Launcher
93+
- GitHub
94+
validations:
95+
required: true
96+
- type: dropdown
97+
id: project-type
98+
attributes:
99+
label: Project Type
100+
description: What type of project are you developing with?
101+
options:
102+
- Blueprint-Only
103+
- C++
104+
validations:
105+
required: true
106+
- type: textarea
107+
id: logs
108+
attributes:
109+
label: Relevant log output
110+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
111+
render: shell
112+
- type: textarea
113+
id: screenshots
114+
attributes:
115+
label: Screenshots
116+
description: If applicable, add screenshots to help explain your problem.
117+
- type: checkboxes
118+
id: terms
119+
attributes:
120+
label: Code of Conduct
121+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/thirdweb-dev/unreal-sdk/.github/CODE_OF_CONDUCT.md).
122+
options:
123+
- label: I agree to follow this project's Code of Conduct
124+
required: true
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
name: Feature Request
2+
description: Suggest an idea or enhancement
3+
title: "[FEAT]: "
4+
labels: ["enhancement", "triage"]
5+
projects: []
6+
assignees:
7+
- dirtycajunrice
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this feature request!
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. email@example.com
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: related
23+
attributes:
24+
label: Is your feature request related to a problem?
25+
description: A clear and concise description of what the problem is
26+
placeholder: I'm always frustrated when [...]
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: solution
31+
attributes:
32+
label: Describe the solution you'd like
33+
description: A clear and concise description of what you want to happen
34+
placeholder: I would love to be able to [...]
35+
validations:
36+
required: true
37+
- type: textarea
38+
id: alternatives
39+
attributes:
40+
label: Describe alternatives you've considered
41+
description: A clear and concise description of any alternative solutions or features you've considered.
42+
placeholder: I tried to do [...] but it doesn't accomplish [...]
43+
validations:
44+
required: true
45+
- type: dropdown
46+
id: plugin-version
47+
attributes:
48+
label: Plugin Version
49+
description: What version of the plugin are you running?
50+
options:
51+
- v1.8.0-dev
52+
- v1.7.0
53+
- v1.6.0
54+
- v1.5.0
55+
- v1.4.0
56+
validations:
57+
required: true
58+
- type: dropdown
59+
id: plugin-source
60+
attributes:
61+
label: Plugin Source
62+
description: Where get you get the plugin from?
63+
options:
64+
- Fab Marketplace
65+
- Github
66+
validations:
67+
required: true
68+
- type: dropdown
69+
id: unreal-engine-version
70+
attributes:
71+
label: Unreal Engine Version
72+
description: What version of Unreal Engine are you running?
73+
options:
74+
- 5.5
75+
- 5.4
76+
- 5.3
77+
- 5.2
78+
- 5.1
79+
- 5.0
80+
validations:
81+
required: true
82+
- type: dropdown
83+
id: unreal-engine-source
84+
attributes:
85+
label: Unreal Engine Source
86+
description: What source did you install unreal engine from?
87+
options:
88+
- Epic Games Launcher
89+
- GitHub
90+
validations:
91+
required: true
92+
- type: dropdown
93+
id: project-type
94+
attributes:
95+
label: Project Type
96+
description: What type of project are you developing with?
97+
options:
98+
- Blueprint-Only
99+
- C++
100+
validations:
101+
required: true
102+
- type: textarea
103+
id: additional-context
104+
attributes:
105+
label: Additional context
106+
description: Add any other context or screenshots about the feature request here.
107+
- type: checkboxes
108+
id: terms
109+
attributes:
110+
label: Code of Conduct
111+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/thirdweb-dev/unreal-sdk/.github/CODE_OF_CONDUCT.md).
112+
options:
113+
- label: I agree to follow this project's Code of Conduct
114+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Thirdweb Official Support
4+
url: https://thirdweb.com/support
5+
about: You can alternatively get support through our traditional support system
6+
- name: Discord Server
7+
url: https://portal.thirdweb.com/unreal-engine
8+
about: A great place for community support
9+
- name: Plugin Documentation
10+
url: https://portal.thirdweb.com/unreal-engine
11+
about: Your go-to for plugin docs
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)