Skip to content
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c0ff99e
new-run-ui
janfaracik Sep 9, 2025
bfffe7a
Fix graph
janfaracik Sep 9, 2025
6ff657c
Refine
janfaracik Sep 12, 2025
9245799
Improve contrast for status icons
janfaracik Sep 22, 2025
9ac46d1
Merge branch 'main' into refine-status-icons
janfaracik Sep 22, 2025
f3b3603
Update status-icon.tsx
janfaracik Sep 22, 2025
e515da1
Merge branch 'refine-status-icons' of https://github.com/janfaracik/p…
janfaracik Sep 22, 2025
c25d477
Update status-icon.scss
janfaracik Sep 22, 2025
15b83e3
Merge branch 'refine-status-icons' into new-run-ui
janfaracik Sep 22, 2025
cfd98b4
Refine
janfaracik Oct 1, 2025
b931aa7
Remove files
janfaracik Oct 1, 2025
e02e76d
Update index.jelly
janfaracik Oct 1, 2025
9ac845e
Merge branch 'main' into new-run-ui
janfaracik Oct 6, 2025
1c30f95
Update index.jelly
janfaracik Oct 6, 2025
b0c79a8
Merge branch 'main' into new-run-ui
janfaracik Oct 7, 2025
f747c28
Update index.jelly
janfaracik Oct 7, 2025
54cc67f
Update pom.xml
janfaracik Oct 7, 2025
1736fbe
Make widget title clickable
janfaracik Oct 10, 2025
ba13b23
Prettier
janfaracik Oct 10, 2025
45e17ff
Merge branch 'make-card-title-clickable' into new-run-ui
janfaracik Oct 10, 2025
f369736
Update app.tsx
janfaracik Oct 10, 2025
e005e2b
Push
janfaracik Oct 10, 2025
d5cdb8f
Tidy up
janfaracik Oct 10, 2025
eb62dd0
Merge branch 'make-card-title-clickable' into new-run-ui
janfaracik Oct 10, 2025
531541d
Init
janfaracik Oct 14, 2025
c03093a
Update style.css
janfaracik Oct 14, 2025
4f6eb3e
Push
janfaracik Oct 14, 2025
92f721f
Create action.jelly
janfaracik Oct 14, 2025
62b3938
Merge branch 'main' into new-run-ui-small
janfaracik Oct 14, 2025
67537e8
Update style.css
janfaracik Oct 14, 2025
5d02430
Format
janfaracik Oct 14, 2025
2e556eb
Update pom.xml
janfaracik Oct 14, 2025
5944b70
Update PipelineConsole.tsx
janfaracik Oct 14, 2025
44527df
Update pom.xml
timja Oct 14, 2025
0f8b230
Restore Changes/Tests/Artifacts
janfaracik Oct 15, 2025
7be8155
Restore Git details
janfaracik Oct 15, 2025
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: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<gitHubRepo>jenkinsci/pipeline-graph-view-plugin</gitHubRepo>
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
<jenkins.baseline>2.504</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
<jenkins.version>2.532</jenkins.version>
<node.version>24.2.0</node.version>
<npm.version>11.3.0</npm.version>
<spotless.check.skip>false</spotless.check.skip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ export default function PipelineConsole() {
container={document.getElementById("console-pipeline-overflow-root")}
>
<Dropdown
className={
rootElement?.closest(".app-build-content")
? "jenkins-details__button"
: ""
}
icon={SETTINGS}
items={[
showSplitView ? (
<StagesCustomization key="visibility-select" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
.pgv-stages-graph {
--card-background: color-mix(
in srgb,
var(--text-color-secondary) 4%,
var(--background)
);
position: relative;
background: var(--card-background);
border: var(--jenkins-border);
border: var(--card-border-width) solid var(--card-border-color);
border-radius: var(--form-input-border-radius);
overflow: hidden;
height: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ $pgv-item-padding-inline: 0.7rem;
content: "";
position: absolute;
inset: 0;
background: var(--input-color);
border-radius: var(--form-input-border-radius);
// TODO - var fallback can removed after baseline is moved >= 2.496
border: var(
Expand Down
16 changes: 7 additions & 9 deletions src/main/frontend/pipeline-graph-view/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@ export default function App() {
});

return (
<div>
<UserPreferencesProvider>
<Stages
stages={run.stages}
stageViewPosition={StageViewPosition.TOP}
onRunPage
/>
</UserPreferencesProvider>
</div>
<UserPreferencesProvider>
<Stages
stages={run.stages}
stageViewPosition={StageViewPosition.TOP}
onRunPage
/>
</UserPreferencesProvider>
);
}

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading