Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MicrocontrollersDev committed May 24, 2024
1 parent 6999e02 commit 329168f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ Contributing software and their licenses can be found at [OPEN_SOURCE_SOFTWARE.m
- Disable Map Bobbing
- Disable Screen Damage Tilt
- Disable Hand Damage Tilt
- Disable Hand View Sway

#### Tab Background Opacity
#### Suffocation Overlay

- Change Tab Background Opacity
- Suffocation Overlay Brightness

### HUD

Expand All @@ -62,8 +63,7 @@ Contributing software and their licenses can be found at [OPEN_SOURCE_SOFTWARE.m
#### Hotbar

- Remove Held Item Name Tooltip
- Enchantment Glance
- Damage Glance
- Keep Hand in Hidden HUD

#### Debug

Expand All @@ -77,11 +77,6 @@ Contributing software and their licenses can be found at [OPEN_SOURCE_SOFTWARE.m
- Automatically Scale Titles
- Title Opacity

#### Toasts

- Remove All Toasts
- Remove Tutorial Toasts

### Crosshair

#### General
Expand Down Expand Up @@ -110,7 +105,11 @@ Contributing software and their licenses can be found at [OPEN_SOURCE_SOFTWARE.m
#### World

- Cleaner Night Vision Decay
- Remove Elder Guardian Jumpscare
- Cleaner Sky Void Darkness
- Lightning Bolt Color
- World Border Color
- Elder Guardian Opacity
- Elder Guardian Scale
- Ridden Horse Opacity
- Ridden Pig Opacity
- Ridden Strider Opacity
Expand All @@ -120,5 +119,7 @@ Contributing software and their licenses can be found at [OPEN_SOURCE_SOFTWARE.m

- Pumpkin Overlay Opacity
- Freezing Overlay Opacity
- Spyglass Overlay Opacity
- Spyglass Background Color
- Constant Vignette Darkness
- Constant Vignette Darkness Value
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ org.gradle.parallel=true
polyfrost.defaults.loom=2

# Mod Properties
mod_version=1.7.2
mod_version=1.8.0
maven_group=dev.microcontrollers.overlaytweaks
archives_base_name=overlaytweaks
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public static Screen configScreen(Screen parent) {
.controller(TickBoxControllerBuilder::create)
.build())
.option(Option.<Color>createBuilder()
.name(Text.literal("Change Lightning Color"))
.name(Text.literal("Lightning Bolt Color"))
.description(OptionDescription.of(Text.of("Change the color of lightning bolts.")))
.binding(defaults.lightningColor, () -> config.lightningColor, value -> config.lightningColor = value)
.customController(opt -> new ColorController(opt, true))
Expand All @@ -415,7 +415,7 @@ public static Screen configScreen(Screen parent) {
.customController(opt -> new ColorController(opt, true))
.build())
.option(Option.createBuilder(float.class)
.name(Text.literal("Change Elder Guardian Opacity"))
.name(Text.literal("Elder Guardian Opacity"))
.description(OptionDescription.of(Text.of("Changes the opacity of the elder guardian particle effect from showing on your screen.")))
.binding(100F, () -> config.elderGuardianOpacity, newVal -> config.elderGuardianOpacity = newVal)
.controller(opt -> FloatSliderControllerBuilder.create(opt)
Expand All @@ -424,7 +424,7 @@ public static Screen configScreen(Screen parent) {
.step(1F))
.build())
.option(Option.createBuilder(float.class)
.name(Text.literal("Change Elder Guardian Scale"))
.name(Text.literal("Elder Guardian Scale"))
.description(OptionDescription.of(Text.of("Changes the scale of the elder guardian particle effect from showing on your screen.")))
.binding(1F, () -> config.elderGuardianScale, newVal -> config.elderGuardianScale = newVal)
.controller(opt -> FloatSliderControllerBuilder.create(opt)
Expand Down

0 comments on commit 329168f

Please sign in to comment.