Auto-commit after successful build: update app gameplay/UI, improve build setup
Changed files:\napp/build.gradle.kts app/src/main/java/solutions/tretter/githugandroid/Terminal.kt
This commit is contained in:
@@ -19,8 +19,8 @@ android {
|
|||||||
applicationId = "solutions.tretter.githugandroid"
|
applicationId = "solutions.tretter.githugandroid"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 35
|
targetSdk = 35
|
||||||
versionCode = 106
|
versionCode = 107
|
||||||
versionName = "0.1.105"
|
versionName = "0.1.106"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
|
|||||||
@@ -253,14 +253,13 @@ private fun SpecialKeyBar(
|
|||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.horizontalScroll(rememberScrollState()),
|
.horizontalScroll(rememberScrollState()),
|
||||||
horizontalArrangement = Arrangement.spacedBy(6.dp),
|
horizontalArrangement = Arrangement.spacedBy(1.dp),
|
||||||
) {
|
) {
|
||||||
TerminalKeyButton(label = "?", onClick = onHelp, highlight = true, fontFamily = FontFamily.Default)
|
TerminalKeyButton(label = "?", onClick = onHelp, highlight = true, fontFamily = FontFamily.Default)
|
||||||
TerminalKeyButton(label = "↹", onClick = onTab, fontFamily = FontFamily.Default)
|
TerminalKeyButton(label = "↹", onClick = onTab, fontFamily = FontFamily.Default)
|
||||||
TerminalKeyButton(label = ".", onClick = { onInsertText(".") })
|
TerminalKeyButton(label = ".", onClick = { onInsertText(".") })
|
||||||
TerminalKeyButton(label = "-", onClick = { onInsertText("-") })
|
TerminalKeyButton(label = "-", onClick = { onInsertText("-") })
|
||||||
TerminalKeyButton(label = "/", onClick = { onInsertText("/") })
|
TerminalKeyButton(label = "/", onClick = { onInsertText("/") })
|
||||||
TerminalKeyButton(label = "_", onClick = { onInsertText("_") })
|
|
||||||
TerminalKeyButton(label = "←", onClick = onCursorLeft)
|
TerminalKeyButton(label = "←", onClick = onCursorLeft)
|
||||||
TerminalKeyButton(label = "→", onClick = onCursorRight)
|
TerminalKeyButton(label = "→", onClick = onCursorRight)
|
||||||
TerminalKeyButton(label = "↑", onClick = onHistoryUp)
|
TerminalKeyButton(label = "↑", onClick = onHistoryUp)
|
||||||
|
|||||||
Reference in New Issue
Block a user