Skip to content

Commit

Permalink
📜 Bump to 1.5.1 + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
isXander committed Aug 11, 2023
1 parent 1c3aee7 commit f2e8fc1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "dev.isxander"
version = "1.5.0+1.20"
version = "1.5.1+1.20"
val isAlpha = "alpha" in version.toString()
val isBeta = "beta" in version.toString()
if (isAlpha) println("Alpha version detected.")
Expand Down
22 changes: 22 additions & 0 deletions changelogs/1.5.1+1.20.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Controlify 1.5.1 for 1.20.1

## New Features

- Added Simple Voice Chat support. You can now bind push-to-talk and whisper
to your controller and it will work properly. Radial menus have custom icons
for some SVC actions.
- Added radial menus to the API completely.

## Changes

- Made rumble effects merge together rather than pausing each other when multiple effects
are playing at once.
- Slightly increased the values the auto-deadzone calibration gives you.

## Bug Fixes

- Fixed the radial up/down/left/right bindings not having a localised name.

## Language Updates

- Updated Chinese translation.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public RumbleEffect createEffect() {
Entity entity = Minecraft.getInstance().level.getEntity(entityId);
return ContinuousRumbleEffect.builder()
.constant(state)
.inWorld(() -> entity.position(), 0, 1, range, Easings::easeInSine)
.inWorld(entity::position, 0, 1, range, Easings::easeInSine)
.timeout(duration)
.build();
}
Expand Down

0 comments on commit f2e8fc1

Please sign in to comment.