Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions application/common_flows/wide_screen_common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm()
js(IR) {
browser()
Expand Down
3 changes: 3 additions & 0 deletions application/composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down Expand Up @@ -66,6 +68,7 @@ kotlin {

implementation(libs.compose.navigation)
implementation(libs.platformtools.darkmodedetector)
implementation(libs.coil.compose)
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@ private fun ApplicationScope.App(onCloseRequest: () -> Unit = ::exitApplication)
sendEvent(KeyboardEvent.REDO)
false
}
KeyboardCommands.isEquationEvent(keyEvent) -> {
sendEvent(KeyboardEvent.EQUATION)
false
}

else -> false
}
Expand Down
2 changes: 2 additions & 0 deletions application/core/auth_core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}
androidTarget()

Expand Down
2 changes: 2 additions & 0 deletions application/core/common_ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions application/core/common_ui_tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}
sourceSets {
val commonMain by getting {
Expand Down
2 changes: 2 additions & 0 deletions application/core/configuration/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions application/core/connection/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions application/core/documents/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions application/core/forcegraph/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
2 changes: 2 additions & 0 deletions application/core/models/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions application/core/navigation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm {}
Expand Down
2 changes: 2 additions & 0 deletions application/core/ollama/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions application/core/persistence_bridge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}
androidTarget()

Expand Down
2 changes: 2 additions & 0 deletions application/core/persistence_room/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions application/core/persistence_sqldelight/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions application/core/resources/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions application/core/theme/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions application/core/utils/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,8 @@ object KeyboardCommands {
fun isAcceptAiEvent(keyEvent: KeyEvent) =
keyEvent.key.keyCode == Key.Tab.keyCode &&
keyEvent.type == KeyEventType.KeyUp

fun isEquationEvent(keyEvent: KeyEvent) =
keyEvent.key.keyCode == Key.E.keyCode &&
keyEvent.type == KeyEventType.KeyUp
}
2 changes: 2 additions & 0 deletions application/features/account/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm {}
Expand Down
2 changes: 2 additions & 0 deletions application/features/auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
2 changes: 2 additions & 0 deletions application/features/documents_graph/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
2 changes: 2 additions & 0 deletions application/features/editor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ internal fun TextEditor(
generateSection = noteEditorViewModel::aiSection,
receiveExternalFile = noteEditorViewModel::receiveExternalFile,
onDocumentLinkClick = onDocumentLinkClick,
equationToImageUrl = "https://latex.codecogs.com/png.latex?\\Large&space;x="
),
storyState = storyState,
)
Expand Down
2 changes: 2 additions & 0 deletions application/features/global_shell/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
2 changes: 2 additions & 0 deletions application/features/note_menu/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
2 changes: 2 additions & 0 deletions application/features/notifications/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
2 changes: 2 additions & 0 deletions application/features/onboarding/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions application/features/search/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

androidTarget()

jvm()
Expand Down
4 changes: 4 additions & 0 deletions application/web/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvmToolchain(21)

js(IR) {
browser()
binaries.executable()
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ dagCommand {
printModulesInfo = true
}

extra["sdkVersion"] = "0.11.1"
extra["sdkVersion"] = "0.12.0"
2 changes: 2 additions & 0 deletions common/endpoints/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ktx = "1.16.0"
material = "1.12.0"
platformtools = "0.4.0"
room = "2.7.2"
agp = "8.11.0"
agp = "8.11.1"
kotlin = "2.2.0"
composeTest = "1.8.3"
webWorkerDriver = "2.1.0"
Expand Down
2 changes: 2 additions & 0 deletions libraries/dbtest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_export/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ mavenPublishing {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_import_document/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ mavenPublishing {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ mavenPublishing {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_persistence_core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ mavenPublishing {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_persistence_room/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ android {
}

kotlin {
jvmToolchain(21)

jvm {}

androidTarget()
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_persistence_sqldelight/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ mavenPublishing {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ mavenPublishing {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
2 changes: 2 additions & 0 deletions plugins/writeopia_serialization/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ mavenPublishing {
}

kotlin {
jvmToolchain(21)

jvm {}

js(IR) {
Expand Down
Loading