Skip to content

Commit 926d41f

Browse files
feat: version bump
1 parent 803c8d4 commit 926d41f

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [20.6.1]
2+
3+
### Added
4+
5+
- Added a new config option to respect your shield being held and active (Thanks to [#53](https://github.com/AdvancedXRay/Auto-Clicker/pull/53) [@AdyTech99](https://github.com/AdyTech99))
6+
7+
### Changed
8+
9+
- Messed with the version number, we're now using Neoforges versioning system
10+
111
## [86.0.0]
212

313
### Changed

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'fabric-loom' version '1.6-SNAPSHOT'
33
id 'maven-publish'
44
id 'pro.mikey.plugins.insaniam' version "0.1-SNAPSHOT"
5-
id "me.modmuss50.mod-publish-plugin" version "0.4.5"
5+
id "me.modmuss50.mod-publish-plugin" version "0.5.1"
66
}
77

88
sourceCompatibility = JavaVersion.VERSION_21
@@ -95,6 +95,7 @@ publishMods {
9595
accessToken = curseToken
9696
projectId = project.curseforge_id
9797
minecraftVersions.add("${minecraft_version}")
98+
javaVersions.add(JavaVersion.VERSION_21)
9899
requires {
99100
slug = "fabric-api"
100101
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ org.gradle.parallel=true
66
minecraft_version=1.20.6
77
yarn_mappings=1.20.6+build.1
88
# Mod Properties
9-
mod_version=86.0.0
9+
mod_version=20.6.1
1010
maven_group=pro.mikey.mods
1111
archives_base_name=auto-clicker-fabric
1212
# Dependencies

src/main/java/pro/mikey/autoclicker/OptionsScreen.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public void render(DrawContext context, int mouseX, int mouseY, float delta) {
154154

155155
context.drawTextWithShadow(
156156
this.textRenderer, Language.GUI_JUMP.getText().asOrderedText(), this.width / 2 + 70, this.height / 2 - 56, 0xFFFFFF);
157-
157+
158158
for (ButtonWidget button : buttonTooltips.keySet()) {
159159
if (button.isHovered()) {
160160
this.renderHelpingTip(context, Text.translatable(this.buttonTooltips.get(button)), mouseX, mouseY);
@@ -177,4 +177,9 @@ public boolean keyPressed(int keyCode, int scanCode, int modifiers) {
177177

178178
return super.keyPressed(keyCode, scanCode, modifiers);
179179
}
180+
181+
@Override
182+
public boolean shouldPause() {
183+
return false;
184+
}
180185
}

0 commit comments

Comments
 (0)