Skip to content

Commit d6c365a

Browse files
Mod Menu crash fix + FLK 1.10.8 + update licenses (#77)
Co-authored-by: Potatoboy9999 <[email protected]>
1 parent ca22a73 commit d6c365a

File tree

115 files changed

+125
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+125
-120
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ allprojects {
108108
customAssets = file("$rootPath/assets").listFiles()!!.toList()
109109
templatesDir = file("$rootPath/templates")
110110

111-
footerMessage = "© ${Year.now().value} QuiltMC"
111+
footerMessage = "© ${Year.now().value} The Quilt Project"
112112
}
113113

114114
doLast {

codeformat/HEADER

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright ${YEAR} QuiltMC
1+
Copyright ${YEAR} The Quilt Project
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

core/src/main/kotlin/org/quiltmc/qkl/core/adapter/KotlinAdapter.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

core/src/main/resources/quilt.mod.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"sources": "https://github.com/quiltmc/quilt-kotlin-libraries"
1717
},
1818
"license": "Apache-2.0",
19-
"icon": "assets/qkl/icon.png"
19+
"icon": "assets/qkl_core/icon.png"
2020
},
2121
"intermediate_mappings": "net.fabricmc:intermediary",
2222
"depends": [

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ org.gradle.parallel=true
55
kotlin.incremental=true
66
kotlin.code.style=official
77

8-
version=2.1.0
9-
flkVersion=1.9.4
8+
version=2.1.1
9+
flkVersion=1.9.6

gradle/libs.versions.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
2-
atomic = "0.20.1"
3-
coroutines = "1.7.1"
2+
atomic = "0.21.0"
3+
coroutines = "1.7.2"
44
datetime = "0.4.0"
55
dokka = "1.8.20"
6-
kotlin = "1.8.22"
7-
minecraft = "1.20"
8-
qsl = "6.0.1+1.20"
9-
quilt_loader = "0.19.0"
10-
quilt_mappings = "1.20+build.4"
6+
kotlin = "1.9.0"
7+
minecraft = "1.20.1"
8+
qsl = "6.0.4+1.20.1"
9+
quilt_loader = "0.19.2"
10+
quilt_mappings = "1.20.1+build.21"
1111
serialization = "1.5.1"
12-
serialization_plugin = "1.8.21" # usually same as kotlin but can lag behind
12+
serialization_plugin = "1.9.0" # usually same as kotlin but can lag behind
1313
binary_compat_plugin = "0.13.2"
1414

1515
[libraries]

gradle/wrapper/gradle-wrapper.jar

1.27 KB
Binary file not shown.
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionSha256Sum=e111cb9948407e26351227dabce49822fb88c37ee72f1d1582a69c68af2e702f
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
3+
distributionSha256Sum=03ec176d388f2aa99defcadc3ac6adf8dd2bce5145a129659537c0874dea5ad1
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
55
networkTimeout=10000
6+
validateDistributionUrl=true
67
zipStoreBase=GRADLE_USER_HOME
78
zipStorePath=wrapper/dists

gradlew

+4-1
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,13 @@ location of your Java installation."
130130
fi
131131
else
132132
JAVACMD=java
133-
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
133+
if ! command -v java >/dev/null 2>&1
134+
then
135+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134136
135137
Please set the JAVA_HOME variable in your environment to match the
136138
location of your Java installation."
139+
fi
137140
fi
138141

139142
# Increase the maximum file descriptors if we can.

library/api/library.api

+1
Original file line numberDiff line numberDiff line change
@@ -919,6 +919,7 @@ public final class org/quiltmc/qkl/library/serialization/ExtendedDynamicOps$Elem
919919
public static final field ANY Lorg/quiltmc/qkl/library/serialization/ExtendedDynamicOps$ElementSupport;
920920
public static final field PRIMITIVES Lorg/quiltmc/qkl/library/serialization/ExtendedDynamicOps$ElementSupport;
921921
public static final field STRINGS Lorg/quiltmc/qkl/library/serialization/ExtendedDynamicOps$ElementSupport;
922+
public static fun getEntries ()Lkotlin/enums/EnumEntries;
922923
public static fun valueOf (Ljava/lang/String;)Lorg/quiltmc/qkl/library/serialization/ExtendedDynamicOps$ElementSupport;
923924
public static fun values ()[Lorg/quiltmc/qkl/library/serialization/ExtendedDynamicOps$ElementSupport;
924925
}

library/src/main/kotlin/org/quiltmc/qkl/library/EventRegistration.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/MixinAccessors.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/blocks/BlockExtensions.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentConstructor.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/ArgumentReader.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/BrigadierDsl.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/CommandExecution.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/BlockArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/EntityArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/EnumArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/GameObjectArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/GeometricArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/IdentifierArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/ItemArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/MiscArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/NBTArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PlayerArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/PrimitiveArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/RangeArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/RegistryEntryArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/ScoreboardArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/StringArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/TestingArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/argument/TextArguments.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/util/RequiredChain.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/brigadier/util/ServerCommandUtil.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/client/lifecycle/ClientEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/client/networking/ClientEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/client/resource/ResourceLoaderEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/client/screen/ScreenEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/client/tooltip/TooltipEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/commands/CommandRegistration.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/crash/CrashEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/items/ItemSettings.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/lifecycle/ServerEvents.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2022 QuiltMC
2+
* Copyright 2022 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector2dOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector2fOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector2iOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector3dOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector3fOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector3iOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector4dOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

library/src/main/kotlin/org/quiltmc/qkl/library/math/JomlVector4fOps.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023 QuiltMC
2+
* Copyright 2023 The Quilt Project
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)