Skip to content

Commit

Permalink
Bump Lambda to 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Avanatiker committed Feb 25, 2022
1 parent c8ca60a commit 5c06308
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Customize your experience, and improve your efficiency!
Find our plugins [here](https://github.com/lambda-plugins).

<p align="center">
<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>
<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>
</p>

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

## FAQ
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.parallel=true

modGroup=com.lambda
modVersion=3.0.1
modVersion=3.1

minecraftVersion=1.12.2
forgeVersion=14.23.5.2860
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/lambda/client/LambdaMod.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class LambdaMod {
const val ID = "lambda"
const val DIRECTORY = "lambda/"

const val VERSION = "3.0.1"
const val VERSION = "3.1"

const val APP_ID = 835368493150502923 // DiscordIPC
const val DEPENDENCIES = "required-after:forge@[14.23.5.2860,);"
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/lambda/client/plugin/PluginLoader.kt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ class PluginLoader(
toString()
}

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

return checksumSets.contains(result)
Expand Down Expand Up @@ -89,6 +88,7 @@ class PluginLoader(
(loader as PluginClassLoader).close()
}

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

0 comments on commit 5c06308

Please sign in to comment.