Regenerated

This commit is contained in:
2026-04-29 12:51:09 +02:00
parent 23b0c1c3f6
commit 53f6843356
3 changed files with 412 additions and 415 deletions
+396 -397
View File
File diff suppressed because it is too large Load Diff
+8 -9
View File
@@ -3721,22 +3721,21 @@ ShellRoot {
Process {
id: stepProc
stdout: StdioCollector {
onStreamFinished: {
state.log = text.split("\n").slice(-6).join("\n")
stdout: SplitParser {
onRead: (line) => {
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
}
}
stderr: StdioCollector {
onStreamFinished: {
if (text.trim() !== "")
state.log = text.split("\n").slice(-6).join("\n")
stderr: SplitParser {
onRead: (line) => {
if (line.trim() !== "")
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
}
}
onExited: (code) => {
if (code !== 0 && state.step !== 3) {
// step 3 is git commit — may exit 1 if nothing to commit, that's fine
state.failed = true
state.running = false
} else {
@@ -3851,7 +3850,7 @@ ShellRoot {
// Log output
Rectangle {
Layout.fillWidth: true
height: 80
height: 160
radius: 8
color: colors.surface0
visible: state.log !== ""
@@ -54,22 +54,21 @@ ShellRoot {
Process {
id: stepProc
stdout: StdioCollector {
onStreamFinished: {
state.log = text.split("\n").slice(-6).join("\n")
stdout: SplitParser {
onRead: (line) => {
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
}
}
stderr: StdioCollector {
onStreamFinished: {
if (text.trim() !== "")
state.log = text.split("\n").slice(-6).join("\n")
stderr: SplitParser {
onRead: (line) => {
if (line.trim() !== "")
state.log = (state.log + "\n" + line).split("\n").slice(-8).join("\n")
}
}
onExited: (code) => {
if (code !== 0 && state.step !== 3) {
// step 3 is git commit may exit 1 if nothing to commit, that's fine
state.failed = true
state.running = false
} else {
@@ -184,7 +183,7 @@ ShellRoot {
// Log output
Rectangle {
Layout.fillWidth: true
height: 80
height: 160
radius: 8
color: colors.surface0
visible: state.log !== ""