Skip to content

Commit 5c06308

Browse files
committed
Bump Lambda to 3.1
1 parent c8ca60a commit 5c06308

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Customize your experience, and improve your efficiency!
1616
Find our plugins [here](https://github.com/lambda-plugins).
1717

1818
<p align="center">
19-
<a href="https://github.com/lambda-client/lambda/releases/download/3.0.1/lambda-3.0.1.jar"><img alt="lambda-3.0.1.jar - 6. January, 2022 - 12.0 Mb" src="https://raw.githubusercontent.com/lambda-client/assets/main/download_button_3.0.1.png" width="70%" height="70%"></a>
19+
<a href="https://github.com/lambda-client/lambda/releases/download/3.1/lambda-3.1.jar"><img alt="lambda-3.1.jar" src="https://raw.githubusercontent.com/lambda-client/assets/main/download_button_3.1.png" width="70%" height="70%"></a>
2020
</p>
2121

2222
## Installation
2323
1. Install Minecraft 1.12.2
2424
2. Install Forge
25-
3. Download the mod file [here](https://github.com/lambda-client/lambda/releases/download/3.0.1/lambda-3.0.1.jar)
25+
3. Download the mod file [here](https://github.com/lambda-client/lambda/releases/download/3.1/lambda-3.1.jar)
2626
4. Put the file in your `.minecraft/mods` folder
2727

2828
## FAQ

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx3G
22
org.gradle.parallel=true
33

44
modGroup=com.lambda
5-
modVersion=3.0.1
5+
modVersion=3.1
66

77
minecraftVersion=1.12.2
88
forgeVersion=14.23.5.2860

src/main/kotlin/com/lambda/client/LambdaMod.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class LambdaMod {
2929
const val ID = "lambda"
3030
const val DIRECTORY = "lambda/"
3131

32-
const val VERSION = "3.0.1"
32+
const val VERSION = "3.1"
3333

3434
const val APP_ID = 835368493150502923 // DiscordIPC
3535
const val DEPENDENCIES = "required-after:forge@[14.23.5.2860,);"

src/main/kotlin/com/lambda/client/plugin/PluginLoader.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ class PluginLoader(
5050
toString()
5151
}
5252

53-
// ToDo: Use plugin database to verify trusted files
5453
// LambdaMod.LOG.info("SHA-256 checksum for ${file.name}: $result")
5554

5655
return checksumSets.contains(result)
@@ -89,6 +88,7 @@ class PluginLoader(
8988
(loader as PluginClassLoader).close()
9089
}
9190

91+
// ToDo: Use plugin database to verify trusted files
9292
private companion object {
9393
val sha256: MessageDigest = MessageDigest.getInstance("SHA-256")
9494
val type: Type = object : TypeToken<HashSet<String>>() {}.type

0 commit comments

Comments
 (0)