Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.

Commit b901a34

Browse files
committed
Small change requested by TNP Limitless.
1 parent 08007b6 commit b901a34

3 files changed

Lines changed: 13 additions & 7 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111

1212

13-
val versionObj = Version("1", "2", "1",
13+
val versionObj = Version("1", "2", "2",
1414
preRelease = (System.getenv("IPNEXT_RELEASE") == null))
1515

1616

changelog.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
<!-- latest begin -->
22

3-
### 1.2.1
4-
- fixes throw matching/all not dropping all expected items.
5-
- "fixed" handling of overstacked items. Now we will just leave them in place.
6-
- forge 1.18 support looks stable enough
7-
- fabric 1.14 gets an update because of the first fix. If no other major problems are found this will be the last update.
3+
### 1.2.2 - just a hotfix
4+
- fixed typo.
5+
- removed a debug dump that looked like it's something important.
6+
- added forge 1.15.2 version
87

98
<!-- latest end -->
109

1110

1211
<!-- rest begin -->
1312

13+
### 1.2.1
14+
- fixes throw matching/all not dropping all expected items.
15+
- "fixed" handling of overstacked items. Now we will just leave them in place.
16+
- forge 1.18 support looks stable enough
17+
- fabric 1.14 gets an update because of the first fix. If no other major problems are found this will be the last update.
18+
19+
1420
### 1.2.0
1521
- added support for Loyalty enchanted items. Throwing a loyalty trident will not trigger refill to allow the thrown one to return to the same slot.
1622
- new auto refill feature. You can now allow non-enchanted items to break if their max durability is below a preset value.

common/src/main/java/org/anti_ad/mc/common/moreinfo/InfoManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ object InfoManager {
104104
try {
105105
doCheckVersion(function)
106106
} catch (t: Throwable) {
107-
Log.error("", t)
107+
Log.warn("Update check failed with message - ${t.message}")
108108
}
109109
}
110110
}

0 commit comments

Comments
 (0)