Skip to content

Commit

Permalink
Update versions and README for v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
WillBAnders committed Jun 7, 2022
1 parent 966ecd6 commit 956186d
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 12 deletions.
28 changes: 24 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,31 @@
>
> ~Alexander the Crate
CrateCrate is a Sponge plugin for adding loot crates to your server. The plugin
is still in development, but you can join our Discord to stay up to date on
progress, assist with beta testing, and provide feedback/suggestions.
CrateCrate is a Sponge plugin for adding loot crates to your server. Though
still in development, CrateCrate is actively being used on servers and supports
all of the core features necessary for crates (see [Features](#features)).

- [Discord Server](https://discord.gg/zWqnAa9KRn)
Additionally, you can join our Discord to ask questions, stay up to date on
progress, assist with testing, and provide feedback/suggestions:

- [Discord Server](https://discord.gg/zWqnAa9KRn) (please use the `#cratecrate` channel)

https://user-images.githubusercontent.com/35618116/172282801-6256f891-6e58-4fcb-8f9a-2f2bfade600c.mp4

## Features

- Core Features:
- Command, item, and money prizes
- Rewards supporting multiple prizes and built-in message/broadcast
- Firework, particle, potion, and sound effects
- GUI openers and menus for viewing keys or opening crates
- Quality of Life:
- Reusable config system with reasonably-sane defaults
- Detailed documentation, including config examples and in-game commands
- Descriptive errors for config/command errors (for *when* they happen)
- Extensibility:
- Support for custom messages and translations
- API extensibility for custom prizes, effects, etc (such as for mods)

## Sponsor Me!

Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {
}

group = "dev.flashlabs.cratecrate"
version = "0.0.2"
version = "0.0.3"

ext.spongeapiVersion = "7.4.0"
ext.flashlibsVersion = "0.1.2"
ext.stormVersion = "0.1.0"
ext.flashlibsVersion = "v0.1.2"
ext.stormVersion = "master-SNAPSHOT"

repositories {
mavenCentral()
Expand All @@ -20,8 +20,8 @@ repositories {

dependencies {
implementation("org.spongepowered:spongeapi:${spongeapiVersion}")
implementation("com.github.Flash-Labs:FlashLibs:v${flashlibsVersion}")
implementation("com.github.WillBAnders:Storm:v${stormVersion}")
implementation("com.github.Flash-Labs:FlashLibs:${flashlibsVersion}")
implementation("com.github.WillBAnders:Storm:${stormVersion}")
}

//Sets plugin metadata through Gradle build instead of the @Plugin annotation.
Expand All @@ -42,7 +42,7 @@ sponge {

shadowJar {
dependencies {
include dependency("com.github.WillBAnders:Storm:v${stormVersion}")
include dependency("com.github.WillBAnders:Storm:${stormVersion}")
}
relocate("dev.willbanders.storm", "${project.group}.storm")
version = "v$version"
Expand Down
7 changes: 5 additions & 2 deletions src/main/resources/assets/cratecrate/cratecrate.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
//CrateCrate v0.0.2
//GitHub: https://github.com/flash-labs/CrateCrate
//CrateCrate v0.0.3
//Ore: https://ore.spongepowered.org/FlashLabs/CrateCrate
//Source: https://github.com/flash-labs/CrateCrate
//Discord: https://discord.gg/zWqnAa9KRn
//FlashLabs: https://flashlabs.dev

convert = {
//Warning: Converting will overwrite the current config - make a backup!
teslacrate = false
}

0 comments on commit 956186d

Please sign in to comment.