Skip to content

Commit 8a3c8d4

Browse files
committed
added globed v2 support and new macros
1 parent 5d1158c commit 8a3c8d4

92 files changed

Lines changed: 3518 additions & 3485 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
---
2-
name: Bug report
3-
about: Create a report to help us improve
4-
title: "[BUG]: Bug Report"
5-
labels: bug
6-
assignees: ''
7-
8-
---
9-
10-
**Describe the bug**
11-
A clear and concise description of what the bug is.
12-
13-
**To Reproduce**
14-
Steps to reproduce the behavior:
15-
1. Go to '...'
16-
2. Click on '....'
17-
3. Scroll down to '....'
18-
4. See error
19-
20-
**Expected behavior**
21-
A clear and concise description of what you expected to happen.
22-
23-
**Screenshots**
24-
If applicable, add screenshots to help explain your problem.
25-
26-
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
30-
31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
36-
37-
**Additional context**
38-
Add any other context about the problem here.
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]: Bug Report"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
---
2-
name: Feature request
3-
about: Suggest an idea for this project
4-
title: "[FEATURE]: Feature Request"
5-
labels: feature request
6-
assignees: ''
7-
8-
---
9-
10-
**Is your feature request related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12-
13-
**Describe the solution you'd like**
14-
A clear and concise description of what you want to happen.
15-
16-
**Describe alternatives you've considered**
17-
A clear and concise description of any alternative solutions or features you've considered.
18-
19-
**Additional context**
20-
Add any other context or screenshots about the feature request here.
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEATURE]: Feature Request"
5+
labels: feature request
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
---
2-
name: Layer request
3-
about: Request a modded layer to be added
4-
title: "[LAYER]: Layer Request"
5-
labels: layer
6-
assignees: ''
7-
8-
---
9-
10-
### What is the layer called (if you know)?
11-
12-
Layer Name
13-
14-
### If you don't know, share a screenshot of the layer below:
15-
16-
Screenshot
17-
18-
### What mod is it located in?
19-
20-
Mod Name
1+
---
2+
name: Layer request
3+
about: Request a modded layer to be added
4+
title: "[LAYER]: Layer Request"
5+
labels: layer
6+
assignees: ''
7+
8+
---
9+
10+
### What is the layer called (if you know)?
11+
12+
Layer Name
13+
14+
### If you don't know, share a screenshot of the layer below:
15+
16+
Screenshot
17+
18+
### What mod is it located in?
19+
20+
Mod Name
Lines changed: 65 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,65 @@
1-
name: Build Geode Mod
2-
3-
on:
4-
workflow_dispatch:
5-
push:
6-
branches:
7-
- "**"
8-
9-
jobs:
10-
build:
11-
strategy:
12-
fail-fast: false
13-
matrix:
14-
config:
15-
- name: Windows
16-
os: windows-latest
17-
18-
- name: macOS
19-
os: macos-latest
20-
21-
- name: Android32
22-
os: ubuntu-latest
23-
target: Android32
24-
25-
- name: Android64
26-
os: ubuntu-latest
27-
target: Android64
28-
29-
- name: iOS
30-
os: macos-latest
31-
target: iOS
32-
33-
name: ${{ matrix.config.name }}
34-
runs-on: ${{ matrix.config.os }}
35-
36-
steps:
37-
- uses: actions/checkout@v4
38-
39-
- name: Set up Python
40-
uses: actions/setup-python@v5
41-
with:
42-
python-version: '3.11'
43-
44-
- name: Build the mod
45-
uses: geode-sdk/build-geode-mod@main
46-
with:
47-
bindings: geode-sdk/bindings
48-
bindings-ref: main
49-
combine: true
50-
sdk: 'nightly'
51-
target: ${{ matrix.config.target }}
52-
53-
package:
54-
name: Package builds
55-
runs-on: ubuntu-latest
56-
needs: ['build']
57-
58-
steps:
59-
- uses: geode-sdk/build-geode-mod/combine@main
60-
id: build
61-
62-
- uses: actions/upload-artifact@v4
63-
with:
64-
name: Build Output
65-
path: ${{ steps.build.outputs.build-output }}
1+
name: Build Geode Mod
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- "**"
8+
9+
jobs:
10+
build:
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
config:
15+
- name: Windows
16+
os: windows-latest
17+
18+
- name: macOS
19+
os: macos-latest
20+
21+
- name: Android32
22+
os: ubuntu-latest
23+
target: Android32
24+
25+
- name: Android64
26+
os: ubuntu-latest
27+
target: Android64
28+
29+
- name: iOS
30+
os: macos-latest
31+
target: iOS
32+
33+
name: ${{ matrix.config.name }}
34+
runs-on: ${{ matrix.config.os }}
35+
36+
steps:
37+
- uses: actions/checkout@v4
38+
39+
- name: Set up Python
40+
uses: actions/setup-python@v5
41+
with:
42+
python-version: '3.11'
43+
44+
- name: Build the mod
45+
uses: geode-sdk/build-geode-mod@main
46+
with:
47+
bindings: geode-sdk/bindings
48+
bindings-ref: main
49+
combine: true
50+
sdk: 'nightly'
51+
target: ${{ matrix.config.target }}
52+
53+
package:
54+
name: Package builds
55+
runs-on: ubuntu-latest
56+
needs: ['build']
57+
58+
steps:
59+
- uses: geode-sdk/build-geode-mod/combine@main
60+
id: build
61+
62+
- uses: actions/upload-artifact@v4
63+
with:
64+
name: Build Output
65+
path: ${{ steps.build.outputs.build-output }}

0 commit comments

Comments
 (0)