Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSzabo committed Jul 15, 2024
1 parent 65ed337 commit 5f83d16
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
17 changes: 3 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,6 @@ Highly customizable and feature-rich Hypixel like collection leveling plugin for
Let your players level up collections by collecting multiple items from the same type and give them rewards like money,
items, permissions, or even custom rewards.

## Features:
- Template based leveling system, so you don't need to configure all day long
- Multiple reward types and integrations
- Customizable GUI menus
- Automatic reward correction if you change your configs later on
- support math formulas in rewards
- built in money/command/permission/AuraSkills-stat reward types
- Mythic(Mobs) custom mechanics and conditions so your mobs can give progress to your collections. You can even check if a player has a certain collection level or not with MythicCrucible.
- PlaceholderAPI support
- Multiple economy support


## Developer API

Expand All @@ -31,7 +20,7 @@ items, permissions, or even custom rewards.
<dependency>
<groupId>gg.auroramc</groupId>
<artifactId>AuroraCollections</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>{VERSION}</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -46,7 +35,7 @@ repositories {
}
dependencies {
compileOnly 'gg.auroramc:AuroraCollections:1.0.0-SNAPSHOT'
compileOnly 'gg.auroramc:AuroraCollections:{VERSION}'
}
```

Expand All @@ -57,6 +46,6 @@ repositories {
}
dependencies {
compileOnly("gg.auroramc:AuroraCollections:1.0.0-SNAPSHOT")
compileOnly("gg.auroramc:AuroraCollections:{VERSION}")
}
```
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
}

group = "gg.auroramc"
version = "1.0.0-SNAPSHOT"
version = "1.0.0"

java.sourceCompatibility = JavaVersion.VERSION_21
java.targetCompatibility = JavaVersion.VERSION_21
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: AuroraCollections
version: '${version}'
main: gg.auroramc.collections.AuroraCollections
api-version: '1.19'
api-version: '1.20'
authors: [ erik_sz ]
folia-supported: true
depend: [ Aurora ]
Expand All @@ -13,6 +13,7 @@ softdepend:
- MythicMobs
- MythicLib
- MMOItems
- LuckPerms

website: https://auroramc.gg

Expand Down

0 comments on commit 5f83d16

Please sign in to comment.