Skip to content

Commit

Permalink
Update to 1.20.2+
Browse files Browse the repository at this point in the history
  • Loading branch information
NebelNidas committed May 25, 2024
1 parent 84e902a commit 9c8ce03
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 19 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,19 @@ jobs:

files: build/libs/!(*-@(dev|sources)).jar

name: 0.3.4 for MC 1.20 and 1.20.1
version: 0.3.4+1.20
name: 0.3.4 for MC 1.20.2+
version: 0.3.4+1.20.2
version-type: release

loaders: |
fabric
game-versions: |
1.20
1.20.1
1.20.2
1.20.3
1.20.4
1.20.5
1.20.6
dependencies: |
fabric-api | depends
Expand Down
18 changes: 9 additions & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ checkstyle_version = 10.16.+
spotless_version = 6.25.+

# Mod Properties
mod_version = 0.3.4+1.20
mod_version = 0.3.4+1.20.2
maven_group = com.github.reviversmc
archives_base_name = toomanybinds

# Mod Dependencies
minecraft_version = 1.20.1
minecraft_version = 1.20.2
fabric_loader_version = 0.15.11
fabric_api_version = 0.92.1+1.20.1
yarn_mappings = 1.20.1+build.10
amecs_api_version= 1.5.3+mc1.20-pre1
modmenu_version = 7.2.2
cloth_config_version = 11.1.118
fabric_api_version = 0.91.6+1.20.2
yarn_mappings = 1.20.2+build.4
amecs_api_version= 1.5.6+mc1.20.2
modmenu_version = 8.0.1
cloth_config_version = 12.0.119

# Dev-Env Mods
use_third_party_mods = true
sodium_version = mc1.20.1-0.5.8
lithium_version = mc1.20.1-0.11.2
sodium_version = mc1.20.2-0.5.5
lithium_version = mc1.20.2-0.12.0
ferritecore_version = 6.0.1-fabric
threadtweak_version = 0.1.1+mc1.20.2
fadeless_version = 1.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ public void render(DrawContext context, int mouseX, int mouseY, float delta) {
super.render(context, mouseX, mouseY, delta);
}

@Override
public void renderBackground(DrawContext context, int mouseX, int mouseY, float delta) {
// Don't darken the background
}

public void switchSelection(int by) {
int totalCompletions = completion.getSuggestions().size();

Expand Down Expand Up @@ -155,11 +160,6 @@ protected void init() {
setInitialFocus(textField);
}

@Override
public void tick() {
textField.tick();
}

@Override
public void resize(MinecraftClient client, int width, int height) {
init(client, width, height);
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"toomanybinds.mixins.json"
],
"depends": {
"minecraft": ">=1.20- <1.22-"
"minecraft": ">=1.20.2-"
}
}

0 comments on commit 9c8ce03

Please sign in to comment.