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: 1 addition & 1 deletion atest/resources/cli_output/version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
|_| \_\\___/|____/ \___/ |_| |____/_/ \_|____/|_| |_|____/ \___/_/ \_|_| \_|____/

======================================================================================
Robotdashboard 1.6.0
Robotdashboard 1.6.1
23 changes: 12 additions & 11 deletions example/robot_dashboard.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html data-bs-theme="dark" class="dark-mode w-100 html-scroll">
<head>
<title>Robot Framework Dashboard - 2026-02-08 21:36:09</title>
<title>Robot Framework Dashboard - 2026-02-09 22:14:31</title>
<!-- JS/CSS Dependencies -->
<script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.4/dist/chart.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0"></script>
Expand Down Expand Up @@ -2677,7 +2677,7 @@ <h6 class="mb-0">Keyword Table</h6>
const decompressedData = pako.inflate(compressedData, { to: 'string' });
return JSON.parse(decompressedData);
}
var unified_dashboard_title = 'Robot Framework Dashboard - 2026-02-08 21:36:09'
var unified_dashboard_title = 'Robot Framework Dashboard - 2026-02-09 22:14:31'
var message_config = '"placeholder_message_config"'
var force_json_config = false
var json_config = "placeholder_json_config"
Expand Down Expand Up @@ -4248,11 +4248,11 @@ <h6 class="mb-0">Keyword Table</h6>
order_sections(settings.view.dashboard.sections, "topDashboardSection");
order_sections(settings.view.overview.sections, "topOverviewSection");
// expand only the top section in the overview page
const overviewBars = document.querySelectorAll("#overview .overview-bar");
const overviewBars = document.querySelectorAll("#overview .overview-bar:not([hidden])");
overviewBars.forEach((bar, i) => {
const btn = bar.querySelector(".collapse-icon");
const isExpanded = !!btn.querySelector(".lucide-chevron-down-icon"); // ▼
const isCollapsed = !!btn.querySelector(".lucide-chevron-right-icon"); // ▶
const isExpanded = !!btn.querySelector(".lucide-chevron-down-icon");
const isCollapsed = !!btn.querySelector(".lucide-chevron-right-icon");
if (i === 0) {
if (isCollapsed) {
btn.click();
Expand Down Expand Up @@ -4668,7 +4668,7 @@ <h6 class="mb-0">Keyword Table</h6>
"themeLight": "Theme",
"themeDark": "Theme",
"database": "Database Summary",
"versionInformation": 'Robotdashboard 1.6.0',
"versionInformation": 'Robotdashboard 1.6.1',
"bug": "Report a bug or request a feature",
"github": "Github",
"docs": "Docs",
Expand Down Expand Up @@ -5958,7 +5958,7 @@ <h6>Total Runs: ${totalRunsAmount} | Passed Runs: ${passRate}%</h6>
elapsed_s: avgDuration,
stats: [passedRunsAmount, failedRunsAmount, skippedRunsAmount],
project_version: null,
full_name: latestRun?.full_name ?? projectName,
full_name: projectName,
passed: passedRunsAmount,
failed: failedRunsAmount,
skipped: skippedRunsAmount,
Expand Down Expand Up @@ -6101,10 +6101,6 @@ <h6>Total Runs: ${totalRunsAmount} | Passed Runs: ${passRate}%</h6>
const normalizedProjectVersion = projectVersion ?? "None";
// ensure overview stats and project bar card ids unique
const projectNameForElementId = isForOverview ? `${sectionPrefix}${projectName}` : projectName;
// for overview statistics
let cardTitle = `
<h5 class="card-title mb-0 fw-semibold">${projectName}</h5>
`;
const showRunNumber = !(isForOverview && isTotalStats);
const runNumberHtml = showRunNumber ? `<div class="col-auto"><h5>#${runNumber}</h5></div>` : '';
let smallVersionHtml = `
Expand All @@ -6124,6 +6120,11 @@ <h5 class="card-title mb-0 fw-semibold">${projectName}</h5>
const versionsForProject = Object.keys(versionsByProject[projectName]);
const projectHasVersions = !(versionsForProject.length === 1 && versionsForProject[0] === "None");
const versionClass = "fw-semibold";
// for overview statistics
projectName = settings.show.prefixes ? projectName : projectName.replace(/^project_/, '');
let cardTitle = `
<h5 class="card-title mb-0 fw-semibold">${projectName}</h5>
`;
if (!isForOverview) {
// Project bar cards: customize based on project type
if (projectName.startsWith('project_')) {
Expand Down
2 changes: 1 addition & 1 deletion robotframework_dashboard/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "Robotdashboard 1.6.0"
__version__ = "Robotdashboard 1.6.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="robotframework-dashboard",
version="1.6.0",
version="1.6.1",
description="Output processor and dashboard generator for Robot Framework output files",
long_description="""# 📊 Robot Framework Dashboard

Expand Down