Skip to content

Commit 53a4bd2

Browse files
committed
Winter 3 release
0 parents  commit 53a4bd2

File tree

5 files changed

+156
-0
lines changed

5 files changed

+156
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Bug report
3+
about: Report a problem, issue or a bug.
4+
title: 'Minecraft Version: Issue Title'
5+
labels: issue
6+
assignees: ''
7+
8+
---
9+
10+
<!---
11+
To report a problem or a bug with this plugin, please follow the three steps below:
12+
13+
1) Put your Minecraft version in the title.
14+
Example: 1.16.1: Getting NullPointerException error
15+
16+
2) Be clear: What is your current situation, the desired situation, and your problem?
17+
Example: I want my chat to be formatted in vanilla but not the creative world. My current situation is it is being formatted everywhere. I made sure not to use reload and haven't found any console errors. What I am doing wrong?
18+
19+
3) If needed - upload your plugin's folder here and any errors using pastebin.com.
20+
How to upload your folder?
21+
a) Right-click the folder and follow the instructions below. For macOS right-click and select "Compress": https://i.imgur.com/4YhCSjD.gif
22+
b) Then simply drag and drop the ZIP file into the issue field: https://i.imgur.com/DG1OAGh.gif
23+
24+
Thank you. Please remove this text and write your actual issue below.
25+
-->

.github/ISSUE_TEMPLATE/question.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Question
3+
about: Ask a question about the plugin.
4+
title: 'Minecraft Version: Your Question Title'
5+
labels: question
6+
assignees: ''
7+
8+
---
9+
10+
<!---
11+
To ask us anything, please follow these directions:
12+
13+
1) Please include your Minecraft version in your title:
14+
Example: 1.16.1: How to setup the menus?
15+
16+
2) Try to keep it simple and clear, providing us all information necessary to answer your question. You can use imgur.com to upload images or pastebin.com to upload large text or error traces.
17+
18+
Thank you. Please remove this text and write your actual question below.
19+
-->

.github/ISSUE_TEMPLATE/suggestion.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Improvement
3+
about: Suggest a new idea or a feature.
4+
title: 'Your Suggestion Title'
5+
labels: improvement
6+
assignees: ''
7+
8+
---
9+
10+
<!---
11+
Notice: Some of the best ideas and features we added were thanks to your suggestions. However, as an extremely small team we're focusing on stability and performance of our software first before adding new features. As such, we're currently very limited to taking in new features.
12+
13+
If you still believe your feature should be added, you're welcome to suggest it and answer those questions in your description:
14+
15+
1) How it would benefit others? (Not just you, but 1,000s of others people using the same plugin.)
16+
17+
2) What would happen if we won't implement this feature? How's your server being affected?
18+
19+
3) If suggesting something new - Can the old system be modified/improved instead?
20+
21+
Thank you. Please remove this text and write your actual suggestion below.
22+
-->

.gitignore

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
#################
2+
## IDEA
3+
#################
4+
5+
# User-specific stuff
6+
.idea/
7+
.idea_modules/
8+
*.iml
9+
10+
# IntelliJ
11+
out/
12+
13+
target/
14+
15+
#################
16+
## Eclipse
17+
#################
18+
19+
*.pydevproject
20+
.project
21+
.metadata
22+
bin/
23+
tmp/
24+
*.tmp
25+
*.bak
26+
*.swp
27+
*~.nib
28+
local.properties
29+
.classpath
30+
.settings/
31+
.loadpath
32+
.apt_generated/
33+
.apt_generated_tests/
34+
35+
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
36+
!/.mvn/wrapper/maven-wrapper.jar
37+
38+
# External tool builders
39+
.externalToolBuilders/
40+
41+
# Locally stored "Eclipse launch configurations"
42+
*.launch
43+
44+
# CDT-specific
45+
.cproject
46+
47+
# PDT-specific
48+
.buildpath
49+
50+
# Builder
51+
builder.xml
52+
build.xml
53+
54+
#############
55+
## Windows detritus
56+
#############
57+
58+
# Windows image file caches
59+
Thumbs.db
60+
ehthumbs.db
61+
62+
# Folder config file
63+
Desktop.ini
64+
65+
# Recycle Bin used on file shares
66+
$RECYCLE.BIN/
67+
68+
# Mac crap
69+
.DS_Store
70+
REBASE.bat
71+
72+
library/

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<p align="center">
2+
Do you want to build your own Winter with unique features only for your server?
3+
<a href="https://mineacademy.org/gh-join">
4+
<img src="https://i.imgur.com/HGc2VG3.png" />
5+
</a>
6+
</p>
7+
8+
# Winter
9+
Winter is an all-in-one Christmas and Winter solution, transforming your server into snowy wonderlands (even in summer).
10+
11+
* Realistic snow particles
12+
* Terrain-generated snow
13+
* Deadly snowmen
14+
* Winter biomes
15+
* Weather and melt control
16+
* Gift chests and much more!
17+
18+
Check out https://mineacademy.org/winter for more information.

0 commit comments

Comments
 (0)