Skip to content

Commit

Permalink
2.1.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Archy-X committed Jun 7, 2024
1 parent d597591 commit fdb6297
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 6 deletions.
28 changes: 28 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

Changelog for versions since 2.0.0.

## 2.1.2

### New Features
- Add roman and int placeholders for abilities (thanks Erik)
- `%auraskills_[ability]_roman%` - Gets ability level as a Roman numeral
- `%auraskills_[ability]_value_int%` - Gets ability value rounded to an integer
- `%auraskills_[ability]_value_2_int%` - Gets secondary ability value rounded to an integer if it exists
- `%auraskills_mability_[ability]_roman%` - Gets mana ability level as a Roman numeral
- `%auraskills_mability_[ability]_value_int%` - Gets mana ability value rounded to an integer
- Add correct_over_max_level option to main config to prevent skill levels being over max level on join (false by default)
- Add shape option to menu fill items
- Available values are border, top_row, bottom_row, left_column, and right_column

### Changes
- Revert unnecessary AdvancedEnchantments event ignores, fixing compatibility
- Update German and Chinese Simplified messages

### Bug Fixes
- Fix split slimes and magma cubes not applying spawner_multiplier
- Fix double reloading on addStatModifier (thanks Erik)
- This fixes extra health resets with plugins like MMOItems
- Fix Charged Shot not applying damage bonus
- Fix NoSuchFieldError on older versions when using mana abilities
- Fix RoseStacker spawner mobs not working with spawner_multiplier
- Fix armor add command not accepting decimal values
- Fix level progression total page count sometimes being wrong
- Fix food level decreasing at full health with use_custom_delay true

## 2.1.1

### New Features
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Release versions are published to the Maven central repository.
<dependency>
<groupId>dev.aurelium</groupId>
<artifactId>auraskills-api-bukkit</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -47,7 +47,7 @@ repositories {
}
dependencies {
compileOnly 'dev.aurelium:auraskills-api-bukkit:2.1.0'
compileOnly 'dev.aurelium:auraskills-api-bukkit:2.1.1'
}
```
**Kotlin DSL:**
Expand All @@ -57,7 +57,7 @@ repositories {
}
dependencies {
compileOnly("dev.aurelium:auraskills-api-bukkit:2.1.0")
compileOnly("dev.aurelium:auraskills-api-bukkit:2.1.1")
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public final class AuraSkillsBukkitProvider {
public static AuraSkillsBukkit getInstance() {
AuraSkillsBukkit instance = AuraSkillsBukkitProvider.instance;
if (instance == null) {
throw new IllegalStateException("AureliumSkillsAPI is not initialized");
throw new IllegalStateException("AuraSkillsBukkit is not initialized");
}
return instance;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public final class AuraSkillsProvider {
public static AuraSkillsApi getInstance() {
AuraSkillsApi instance = AuraSkillsProvider.instance;
if (instance == null) {
throw new IllegalStateException("AuraSkillsAPI is not initialized");
throw new IllegalStateException("AuraSkillsApi is not initialized");
}
return instance;
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
projectVersion = 2.1.1
projectVersion = 2.1.2

0 comments on commit fdb6297

Please sign in to comment.