Skip to content

Commit 1acf763

Browse files
committed
Init
1 parent 483a596 commit 1acf763

File tree

251 files changed

+20402
-0
lines changed

Some content is hidden

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

251 files changed

+20402
-0
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[*]
2+
charset = utf-8
3+
indent_style = tab
4+
insert_final_newline = true
5+
trim_trailing_whitespace = true
6+
indent_size = 4
7+
8+
[*.{json, yml}]
9+
indent_size = 2
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Bug
2+
description: Report a bug.
3+
title: '[Bug] '
4+
labels: bug
5+
body:
6+
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Describe the bug
11+
description: |
12+
Provide as much information as possible, videos, crash reports, etc.
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: reproducing
17+
attributes:
18+
label: Steps to reproduce
19+
description: How do you trigger this bug?
20+
render: bash
21+
validations:
22+
required: true
23+
- type: input
24+
id: mod-version
25+
attributes:
26+
label: Meteor Plus Version
27+
validations:
28+
required: true
29+
- type: input
30+
id: mc-version
31+
attributes:
32+
label: Minecraft Version
33+
validations:
34+
required: true
35+
- type: dropdown
36+
id: operating-systems
37+
attributes:
38+
label: Operating System
39+
options:
40+
- macOS
41+
- Windows
42+
- Linux
43+
validations:
44+
required: true
45+
- type: checkboxes
46+
id: prerequisites
47+
attributes:
48+
label: Before submitting a bug report
49+
options:
50+
- label: |
51+
This bug wasn't already reported.
52+
required: true
53+
- label: |
54+
This is a valid bug.
55+
required: true
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Suggestion
2+
description: Suggest a feature for this mod.
3+
title: '[Suggestion] '
4+
labels: enhancement
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: Description of what feature you want to see.
11+
validations:
12+
required: true
13+
- type: checkboxes
14+
id: prerequisites
15+
attributes:
16+
label: Before submitting a suggestion
17+
options:
18+
- label: |
19+
This feature doesn't already exist.
20+
required: true
21+
- label: |
22+
This wasn't already suggested.
23+
required: true

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
4+
- package-ecosystem: "gradle"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
commit-message:
9+
prefix: "gradle"
10+
include: "scope"
11+
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
commit-message:
17+
prefix: "github-actions"
18+
include: "scope"

.github/workflows/dev_build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Development Build
2+
on: push
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-java@v4
10+
with:
11+
java-version: 18
12+
distribution: adopt
13+
- name: Build
14+
run: ./gradlew build
15+
- name: Release
16+
uses: marvinpinto/action-automatic-releases@latest
17+
with:
18+
repo_token: '${{ secrets.GITHUB_TOKEN }}'
19+
automatic_release_tag: "1.20.4_1.0.9.1"
20+
prerelease: true
21+
title: "1.20.4 | 1.0.9.1"
22+
files: |
23+
./build/libs/*.jar

.github/workflows/pull_request.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build Pull Request
2+
on: pull_request
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-java@v4
10+
with:
11+
java-version: 18
12+
distribution: adopt
13+
- name: Build
14+
run: ./gradlew build
15+
- name: Upload artifacts
16+
uses: actions/[email protected]
17+
with:
18+
name: build-artifacts
19+
path: build/libs

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# gradle
2+
3+
.gradle/
4+
build/
5+
out/
6+
classes/
7+
8+
# eclipse
9+
10+
*.launch
11+
12+
# idea
13+
14+
.idea/
15+
*.iml
16+
*.ipr
17+
*.iws
18+
19+
# vscode
20+
21+
.settings/
22+
.vscode/
23+
bin/
24+
.classpath
25+
.project
26+
27+
# macos
28+
29+
*.DS_Store
30+
31+
# fabric
32+
33+
run/
34+
src/main/java/META-INF/MANIFEST.MF

0 commit comments

Comments
 (0)