Skip to content

Commit

Permalink
Fix float type
Browse files Browse the repository at this point in the history
  • Loading branch information
romainguy committed May 31, 2024
1 parent 32f6975 commit 0e7e3c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ compose.desktop {

targetFormats(TargetFormat.Dmg)

packageVersion = "1.2.2"
packageVersion = "1.2.4"
packageName = "Kotlin Explorer"
description = "Kotlin Explorer"
vendor = "Romain Guy"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ private fun jniTypeToJavaType(
'B' -> "byte"
'C' -> "char"
'D' -> "double"
'F' -> "float"
'I' -> "int"
'J' -> "long"
'L' -> {
Expand Down

0 comments on commit 0e7e3c4

Please sign in to comment.