Skip to content

Commit bd768d9

Browse files
committed
Revert "Emptied branch"
This reverts commit 6635890.
1 parent 6635890 commit bd768d9

File tree

783 files changed

+51739
-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.

783 files changed

+51739
-0
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Disable autocrlf on generated files, they always generate with LF
2+
# Add any extra files or paths here to make git stop saying they
3+
# are changed when only line endings change.
4+
src/generated/**/.cache/cache text eol=lf
5+
src/generated/**/*.json text eol=lf

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Rules (Read this first!)**
11+
This is just a template to help you post a useful issue. Erase these rules and any irrelevant categories and content as you see fit.
12+
13+
- Only submit issues related to the latest version of the mod for the currently supported version of Minecraft (which is currently 1.12.2 and 1.16.5).
14+
- When referring to software versions always use the actual version number and never "latest".
15+
- Use a paste site like [Gist](https://gist.github.com) or [Pastebin](https://pastebin.com) to dump any logs or crash reports.
16+
17+
If you are opening this **for any other reason** than to report a bug, it will be closed without explanation! For feature requests, use the feature request template. **Do not** open bug reports for add-ons! These should be reported to their respective issue trackers.
18+
19+
**Describe the bug**
20+
A clear and concise description of what the bug is.
21+
22+
**To Reproduce**
23+
Steps to reproduce the behavior:
24+
25+
**Screenshots**
26+
If applicable, add screenshots to help explain your problem.
27+
28+
**Rendering Glitches**
29+
Are you using OptiFine (or any equivalent mods that mess with rendering)?
30+
31+
**Additional context**
32+
Add any other context about the problem here.
33+
34+
**Crashes**
35+
- Are you running the latest version of Dynamic Trees? (Currently 0.9.23 in 1.12.2 or 0.10.0-Beta12 in 1.16.5)
36+
- If you are using the DT Biome O' Plenty Add-on do you have the latest version? (Currently 1.4.2)
37+
- If you are using the DT Thaumcraft Add-on do you have the latest version? (Currently 1.4.4)
38+
39+
If the above mods are current then please submit a full crash log. The crash log normally contains the names of mods and their versions. Don't be that guy who submitted a crash report without first checking that the versions are current.
40+
41+
Also, **do not** paste the crash report into the issue body! Use a paste site like [Gist](https://gist.github.com) or [Pastebin](https://pastebin.com).
42+
43+
**Mods List**
44+
If your crash log does not contain a list of mods or you have no crash log then please provide a full list of the mods you are using complete with mod versions.
45+
What version of Forge are you running? (e.g. 1.12.2-14.23.5.2768)

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discord
4+
url: https://discord.gg/A4FCBS3
5+
about: Use this for support, questions, and chat
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Feature request rules**
11+
This is just a template to help you post a useful issue. Erase these rules and any irrelevant categories and content as you see fit.
12+
13+
- Only submit issues related to the latest version of the mod for the currently supported version of Minecraft (which is currently 1.12.2 and 1.16.5).
14+
- When referring to software versions always use the actual version number and never "latest".
15+
- Do not request support for other mods (that should be done [here](https://github.com/ferreusveritas/DynamicTrees/issues/443)) or ports to other versions.
16+
- Make sure feature requests come under the project scope. The details of this can be found on the [CurseForge page](https://www.curseforge.com/minecraft/mc-mods/dynamictrees).
17+
18+
If you are opening this **for any other reason** than to request a new feature, it will be closed without explanation! For bug reports, use the bug report template.
19+
20+
**Is your feature request related to a problem? Please describe.**
21+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
22+
23+
**Describe the solution you'd like**
24+
A clear and concise description of what you want to happen.
25+
26+
**Describe alternatives you've considered**
27+
A clear and concise description of any alternative solutions or features you've considered.
28+
29+
**Additional context**
30+
Add any other context or screenshots about the feature request here.

.github/workflows/gradle.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# This workflow will build a Java project with Gradle
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3+
4+
name: Java CI with Gradle
5+
6+
on:
7+
push:
8+
pull_request:
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up JDK 8
18+
uses: actions/setup-java@v2
19+
with:
20+
java-version: '8'
21+
distribution: 'adopt'
22+
- name: Grant execute permission for gradlew
23+
run: chmod +x gradlew
24+
- name: Build with Gradle
25+
run: ./gradlew build

.github/workflows/stale.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Mark stale issues and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: '21 2 * * *'
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
permissions:
12+
issues: write
13+
pull-requests: write
14+
15+
steps:
16+
- uses: actions/stale@v3
17+
with:
18+
repo-token: ${{ secrets.GITHUB_TOKEN }}
19+
stale-issue-message: 'Stale issue message'
20+
stale-issue-label: 'no-issue-activity'
21+
exempt-issue-labels: 'enhancement,stale exempt'
22+
stale-pr-message: 'Stale pull request message'
23+
stale-pr-label: 'no-pr-activity'
24+
exempt-pr-labels: 'stale exempt'

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# eclipse
2+
bin
3+
*.launch
4+
.settings
5+
.metadata
6+
.classpath
7+
.project
8+
9+
# idea
10+
out
11+
*.ipr
12+
*.iws
13+
*.iml
14+
.idea
15+
16+
# gradle
17+
build
18+
.gradle
19+
20+
# other
21+
eclipse
22+
run
23+
libs

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016,2017 Ferreus Veritas
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Dynamic Trees [![](http://cf.way2muchnoise.eu/versions/252818.svg) ![](http://cf.way2muchnoise.eu/252818.svg)](https://minecraft.curseforge.com/projects/dynamictrees/)
2+
3+
Minecraft Forge mod providing dynamic trees that progressively grow from seed to maturity.
4+
5+
![Logo](./header.png)
6+
7+
This branch is for the 1.16.5 version of Minecraft.
8+
9+
### Links
10+
- [Downloads](https://minecraft.curseforge.com/projects/dynamictrees/files)
11+
- [Discord](https://discord.gg/A4FCBS3)
12+
13+
### Compiling
14+
* Clone the repository.
15+
* Open a command prompt/terminal to the repository directory.
16+
* Run `gradlew build` on Windows, or `./gradlew build` for MacOS or Linux.
17+
* The built jar file will be in `build/libs/`.

0 commit comments

Comments
 (0)