Skip to content

Commit

Permalink
Merge pull request #240 from SamCosta1/feature/bump-kcef-version
Browse files Browse the repository at this point in the history
Bump the KCEF dependency version
  • Loading branch information
KevinnZou authored Oct 23, 2024
2 parents 63ec14f + 9b154fa commit fa9e47a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion sample/desktopApp/src/jvmMain/kotlin/main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ fun main() =
initialized = true
}
}
release("jbr-release-17.0.10b1087.23")
download {
github {
release("jbr-release-17.0.12b1207.37")
}
}

settings {
cachePath = File("cache").absolutePath
}
Expand Down
2 changes: 1 addition & 1 deletion webview/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ kotlin {
val desktopMain by getting {
dependencies {
implementation(compose.desktop.common)
api("dev.datlag:kcef:2024.01.07.1")
api("dev.datlag:kcef:2024.04.20.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-swing:$coroutinesVersion")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ internal fun CefBrowser.addDisplayHandler(state: WebViewState) {
state.pageTitle = title
}

override fun onFullscreenModeChange(
p0: CefBrowser?,
p1: Boolean,
) {
// Not supported
}

override fun onTooltip(
browser: CefBrowser?,
text: String?,
Expand Down

0 comments on commit fa9e47a

Please sign in to comment.