Skip to content

Commit

Permalink
2.1.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Archy-X committed Jun 30, 2024
1 parent 926e1fa commit 4e36188
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 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.5

### New Features
- Add Oraxen support
- Oraxen note blocks defined in sources will now give XP properly
- Custom blocks can now be easily defined in sources by prefixing the `block` option of a block source with `oraxen:`
- For example, `block: oraxen:mythril_ore` will automatically register the block state from Oraxen without needing to manually define a `state`
- Oraxen items can be directly used in any source `menu_item` option using a string key prefixed with `oraxen:`
- For example, `menu_item: oraxen:mythril` will use the exact item defined in Oraxen, including any NBT
- This is defined as a string value directly on the `menu_item` key rather than the map section used for normal menu items
- Custom loot from Oraxen blocks will drop extra items correctly with Luck traits like Mining Luck
- Add requirement.override_global option to main config
- If true, global requirements will be ignored if item-specific requirements are defined
- Add mana.cooldown_timer_period option to main config
- Increasing can help reduce lag caused by TimerCountdown for mana abilities
- Add sql.pool options to main config
- The new options maximum_pool_size, minimum_idle, connection_timeout, max_lifetime, and keepalive_time are used to configure the Hikari connection pool
- These should not be changed unless you have issues with connection stability and know what you are doing

### Bug Fixes
- Fix power leaderboard not adding custom skills
- Fix leaderboard still showing for disabled skills
- Fix global requirements and world options not being updated on skills reload
- Fix roman placeholders with value 0 not working
- Fix ManaAbilityRefreshEvent being called invalidly
- Fix hp keep_full_on_increase not working sometimes
- Fix snow golem and mooshroom not giving XP in 1.20.5+

## 2.1.4

### 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.1</version>
<version>2.1.4</version>
<scope>provided</scope>
</dependency>
```
Expand All @@ -47,7 +47,7 @@ repositories {
}
dependencies {
compileOnly 'dev.aurelium:auraskills-api-bukkit:2.1.1'
compileOnly 'dev.aurelium:auraskills-api-bukkit:2.1.4'
}
```
**Kotlin DSL:**
Expand All @@ -57,7 +57,7 @@ repositories {
}
dependencies {
compileOnly("dev.aurelium:auraskills-api-bukkit:2.1.1")
compileOnly("dev.aurelium:auraskills-api-bukkit:2.1.4")
}
```

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.4
projectVersion = 2.1.5

0 comments on commit 4e36188

Please sign in to comment.