Publish a working version of Arias-Essentials

This commit is contained in:
Aria 2023-03-06 02:00:56 -07:00
parent 4f41e24da5
commit 0b1535cc38
3 changed files with 33 additions and 5 deletions

28
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,28 @@
How to Contribute
=====
First of all, thank you for considering, or for contributing to any of the following mods
```
LibZontreck
Arias-Essentials
OTEMod
ClaimsMod
WatchMyDurability
```
It's people like you who make the contrinuted existence of these mods possible.
Contributing to any of the mods under my development is simple.
Code Contributions
---
1) To contribute code, fork the repository, then make a new branch. Name it something like `bugfix_somefeature`, or `feature_newfeature`. When done coding, submit a pull request to have your changes be integrated upstream.
Asset contribution
----
2) Contributions are also accepted in the form of artwork or music, or sound, or block models from blockbench. Just simply follow the above steps to create your working base. Then send it to us in a pull request. No coding knowledge is necessary for adding these resources. Someone else can tackle that if you do not know how to code. An example of this is the Possum animal model in OTEMod. This was contributed by PossumTheWarrior via discord.
Bug reporting or feature requests
----
3) Bug reports. Please be as detailed as possible when reporting a bug. Include steps on how to reproduce the bug if possible.
4) Feature requests. Please be sure to name your issue ticket accordingly to indicate you are requesting a new feature, and not reporting a bug. Then be as detailed as possible in how you want the feature to work. If the feature is requested for LibZontreck. Please be detailed in how the API would work. You can do this simply by providing a basic interface example.

View file

@ -149,7 +149,7 @@ jar {
"Specification-Vendor" : "Zontreck",
"Specification-Version" : "${my_version}", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : version,
"Implementation-Version" : "${my_version}",
"Implementation-Vendor" : "Zontreck",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])
@ -170,9 +170,9 @@ task devJar(type: Jar) {
attributes([
"Specification-Title": project.name,
"Specification-Vendor": "zontreck",
"Specification-Version": "1",
"Specification-Version": "${my_version}",
"Implementation-Title": project.name,
"Implementation-Version": version,
"Implementation-Version": "${my_version}",
"Implementation-Vendor": "zontreck",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
])

View file

@ -4,7 +4,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
my_version=1.0.0.0303231214
my_version=1.0.0.0306230156
my_modgroup=dev.zontreck.essentials
my_modid=ariasessentials
@ -12,4 +12,4 @@ my_modid=ariasessentials
mc_version=1.18.2
forge_version=40.2.1
parchment_version=2022.11.06
libz_version=1.0.5.0302231758
libz_version=1.0.5.0306230154