10 Commits

Author SHA1 Message Date
Joseph Robinson
3fb74607bd Update SECURITY.md 2020-04-05 17:51:19 -07:00
Joseph Robinson
fa135a1a22 Update SECURITY.md 2020-04-05 17:46:12 -07:00
cakoyo
0822c65af8 Merge pull request #149 from tsao-chi-fork/tsao-chi-patch-1
fix url
2020-04-03 15:47:17 +07:00
ㄗㄠˋ ㄑㄧˊ
740e47df67 fix url 2020-04-03 16:18:50 +08:00
Joseph Robinson
4e6d4be087 Create SECURITY.md 2020-04-02 00:22:00 -07:00
Joseph Robinson
5aaa3815fd Merge pull request #125 from tsao-chi/patch-2
typo?
2020-04-01 10:54:48 -07:00
Joseph Robinson
3ffb622a36 Added spigot repo 2020-03-31 13:30:56 -07:00
Joseph Robinson
7f0d3d441c Update README.md - Linted 2020-03-29 10:41:25 -07:00
Joseph Robinson
818ec7912c Fixed distribution error 2020-03-29 10:28:19 -07:00
ㄗㄠˋ ㄑㄧˊ
4c6947d949 typo? 2020-03-28 21:12:13 +08:00
5 changed files with 39 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
language: java
dist: trust
dist: trusty
jdk:
- oraclejdk8
install: true

View File

@@ -1,4 +1,5 @@
# <img src="https://i.loli.net/2018/05/17/5afd869c443ef.png" alt="Akarin Face" align="right">Akarin
[![Powered by](https://img.shields.io/badge/Powered_by-Akarin_project-ee6aa7.svg?style=flat)](https://akarin.app/)
[![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/fw2pJAj)
[![bStats](https://img.shields.io/badge/bStats-Torch-0099ff.svg?style=flat)](https://bstats.org/plugin/bukkit/Torch)
@@ -10,6 +11,7 @@ Akarin is currently **under heavy development** and contributions are welcome!
Introduction
---
> Akarin is a powerful server software from the 'new dimension', formerly known as Torch.
As a [Paper](https://github.com/PaperMC/Paper) fork, it should support almost all plugins that work on [Spigot](https://hub.spigotmc.org/stash/projects/SPIGOT/repos/spigot/browse).
@@ -17,40 +19,48 @@ As a [Paper](https://github.com/PaperMC/Paper) fork, it should support almost al
Our project has a few key goals:
* **Open Access** - Make more game mechanics configurable.
* **Bedrock** - Make the server more safe and stable.
* **Bedrock** - Make the server more safe and stable.
* **Fast** - Simplify the logic and implement multi-threaded computing.
*Issues and Pull Requests will be labeled accordingly*
Get Akarin
---
### Download
#### Recommended
+ [**Circle CI**](https://circleci.com/gh/Akarin-project/Akarin/tree/ver/master) - Checkout the 'Artifacts' tab of the latest build *Login required*
+ [**JosephWorks Jenkins**](http://localhost:8080/job/Akarin-project/job/Akarin/)
+ [**JosephWorks Jenkins**](http://josephworks.ddns.net:8080/job/Akarin-project/job/Akarin/)
+ [**Melon Jenkins**](https://ci.melon.cat/job/Akarin/) - Offline
*Open an [Issue](https://github.com/Akarin-project/Akarin/issues) or a [Pull Request](https://github.com/Akarin-project/Akarin/pulls) if you want to add your website here*
### Build
#### Requirements
* Java (JDK) 8 or above
* Maven
#### Compile
```sh
chmod -Rv a+x scripts/
./scripts/build.sh
./scripts/build.sh
./scripts/inst.sh --setup --fast
```
**Notes**
* You must use `--setup` at least once to deploy necessary dependencies otherwise some imports cannot be organized.
* For non-modified projects, it is recommended to add the `--fast` option to skip any tests.
* If your machine has insufficient memory, you may want to add the `--remote` option to avoid decompiling locally.
Demo Servers
---
* [Fair Server](https://fairserver.ru)
* [LoyaltyMC](https://www.loyaltymc.net/)
* ~~`demo.akarin.io` (official)~~
@@ -59,6 +69,7 @@ Demo Servers
Contributing
---
* You can checkout the `src` folder to see more. Please follow the patch style to do any change, so we are able to update between different Minecraft versions.
* Add your name to the [LICENSE](https://github.com/Akarin-project/Akarin/blob/master/LICENSE.md) if you want to publish your code under the [MIT License](https://github.com/Akarin-project/Akarin/blob/master/licenses/MIT.md).
* If you want to join the [Akarin-project](https://github.com/Akarin-project) team, you can [send](mailto://kira@kira.moe) us an email with your experience and necessary information.

22
SECURITY.md Normal file
View File

@@ -0,0 +1,22 @@
# Security Policy
## Supported Versions
The checked versions below are supported by us.
| Version | Supported | Notes |
| ------- | ------------------ | -------------- |
| 1.15.2 | :white_check_mark: | Latest Build |
| 1.14.4 | :white_check_mark: | Newer Build* |
| 1.13.2 | :x: | No Support |
| 1.12.2 | :white_check_mark: | LTS Build only |
Newer Build - Up to 20 commits behind or 5 jenkins builds.
No Support - You will be prompted to upgrade to 1.14.4.
LTS Build only - Provided in the releases tab on GitHub.
## Reporting an Issue
Have a problem, feel free to [create an issue](https://github.com/Akarin-project/Akarin/issues) or [ask us on discord](https://discord.gg/dX8MMvP)!

View File

@@ -16,6 +16,7 @@ tasks.withType(JavaCompile) {
repositories {
maven { url "https://hub.spigotmc.org/nexus/content/groups/public/" }
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" }
maven { url "https://papermc.io/repo/repository/maven-public/" }
maven { url "https://nexus.piratescode.co.uk/" }
maven { url "https://repo.spongepowered.org/maven/" }

View File

@@ -246,7 +246,7 @@ public class CraftArmorStand extends CraftLivingEntity implements ArmorStand {
return;
case LEGS:
setLeggings(item);
break;
return;
case CHEST:
setChestplate(item);
return;