Skip to content

Commit 5fb8843

Browse files
committed
Update to 4.5
1 parent b872ec3 commit 5fb8843

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/trigger_dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
- run: |
6767
echo "Setup done"
6868
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
69-
godot-kotlin-jvm-version: "0.14.3-4.5.1"
69+
godot-kotlin-jvm-version: "0.16.0-4.5.1"
7070
godot-version: "4.5.1-stable"
71-
build-version: "0.14.3"
71+
build-version: "0.16.0"
7272
jvm-version: "17"
7373

7474
build-jvm:

.github/workflows/trigger_on_tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- run: |
2727
echo "Setup done"
2828
outputs: # defined here explicitly, so it only needs to be defined here. All other workflows can just reference it
29-
godot-kotlin-jvm-version: "0.14.3-4.5.1"
29+
godot-kotlin-jvm-version: "0.16.0-4.5.1"
3030
godot-version: "4.5.1-stable"
31-
build-version: "0.14.3"
31+
build-version: "0.16.0"
3232
jvm-version: "17"
3333

3434
build-jvm:

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ def can_build(env, platform):
22
return True
33

44
def configure(env):
5-
env.add_module_version_string("jvm.0.14.3")
5+
env.add_module_version_string("jvm.0.16.0")

docs/src/doc/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ While Kotlin and Godot supports a wide range of platforms, this module for the m
6464

6565
The module uses semantic versioning for its own versions but adds a suffix for the supported Godot version:
6666

67-
Full version: `0.14.3-4.5.1`
67+
Full version: `0.16.0-4.5.1`
6868

69-
Module Version: `0.14.3`
69+
Module Version: `0.16.0`
7070

7171
Supported Godot Version: `4.5.1`
7272

godot-cpp

Submodule godot-cpp updated 135 files

kt/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22

3-
godotKotlinJvm = "0.14.3"
3+
godotKotlinJvm = "0.16.0"
44
kotlin = "2.1.10" # https://kotlinlang.org/docs/releases.html#release-details
55
kotlinCoroutine = "1.10.1" # https://github.com/Kotlin/kotlinx.coroutines/releases
66
godot = "4.5.1"

src/api/language/jvm_language.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Dictionary JvmLanguage::_validate(
1919

2020
String JvmLanguage::_validate_path(const String& p_path) const {
2121
PackedStringArray keywords = _get_reserved_words();
22-
if (keywords.find(p_path.get_file().get_basename())) {
22+
if (keywords.find(p_path.get_file().get_basename()) != -1) {
2323
String alert {"Please don't use reserved keywords as file name."};
2424
return
2525
#ifdef TOOLS_ENABLED

src/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef GODOT_JVM_VERSION_H
22
#define GODOT_JVM_VERSION_H
33

4-
constexpr const char* GODOT_KOTLIN_VERSION = "0.14.3-4.5.1";
4+
constexpr const char* GODOT_KOTLIN_VERSION = "0.16.0-4.5.1";
55

66
#endif// GODOT_JVM_VERSION_H

0 commit comments

Comments
 (0)