Skip to content

Commit 584a847

Browse files
committed
Bump major 2.07.01 and Kotlin 1.5.20
1 parent e0b12fe commit 584a847

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
Lambda is a free, open-source, Minecraft 1.12.2 utility mod providing a visionary system for plugins that allow customizing the clients features thanks to an ingame plugin store.
1414

15+
![Download](https://github.com/lambda-client/assets/main/download_button.png)
16+
1517
## Contributing
1618

1719
### Clone Repository

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
org.gradle.jvmargs=-Xmx3G
22
modGroup=com.lambda
3-
modVersion=2.06.xx-dev
4-
kotlin_version=1.5.10
3+
modVersion=2.07.xx-dev
4+
kotlin_version=1.5.20
55
kotlinx_coroutines_version=1.5.0-RC
66
org.gradle.parallel=true

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ class LambdaMod {
2525
const val ID = "lambda"
2626
const val DIRECTORY = "lambda/"
2727

28-
const val VERSION = "2.06.xx-dev" // Used for debugging. R.MM.DD-hash format.
29-
const val VERSION_SIMPLE = "2.06.xx-dev" // Shown to the user. R.MM.DD[-beta] format.
30-
const val VERSION_MAJOR = "2.06.01" // Used for update checking. RR.MM.01 format.
28+
const val VERSION = "2.07.xx-dev" // Used for debugging. R.MM.DD-hash format.
29+
const val VERSION_SIMPLE = "2.07.xx-dev" // Shown to the user. R.MM.DD[-beta] format.
30+
const val VERSION_MAJOR = "2.07.01" // Used for update checking. RR.MM.01 format.
3131

3232
const val APP_ID = "835368493150502923"
3333

34-
const val DOWNLOADS_API = "https://api.github.com/repos/lambda-plugins/HighwayTools/releases" // ToDo: setup when next version comes out
34+
const val DOWNLOADS_API = "" // ToDo: setup for CI
3535
const val CAPES_JSON = "https://github.com/lambda-client/cape-api/capes/capes.json"
3636
const val GITHUB_LINK = "https://github.com/lambda-client/"
3737
const val GITHUB_API = "https://api.github.com/"

src/main/kotlin/com/lambda/client/command/commands/DupeBookCommand.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ object DupeBookCommand : ClientCommand(
4343
.map { if (it < 0xd800) it else it + 0x800 }
4444

4545
val joinedPages = characterGenerator
46-
.limit(50 * 210)
46+
.limit(50 * 210L)
4747
.mapToObj { it.toChar().toString() } // this has to be turned into a Char first, otherwise you will get the raw Int value
4848
.collect(Collectors.joining())
4949

0 commit comments

Comments
 (0)