diff --git a/atest/resources/cli_output/version.txt b/atest/resources/cli_output/version.txt index f4f9ae9..a0265a9 100644 --- a/atest/resources/cli_output/version.txt +++ b/atest/resources/cli_output/version.txt @@ -6,4 +6,4 @@ |_| \_\\___/|____/ \___/ |_| |____/_/ \_|____/|_| |_|____/ \___/_/ \_|_| \_|____/ ====================================================================================== -Robotdashboard 1.6.0 \ No newline at end of file +Robotdashboard 1.6.1 \ No newline at end of file diff --git a/example/robot_dashboard.html b/example/robot_dashboard.html index 8e8d6fa..52c88b6 100644 --- a/example/robot_dashboard.html +++ b/example/robot_dashboard.html @@ -1,7 +1,7 @@ -Robot Framework Dashboard - 2026-02-08 21:36:09 +Robot Framework Dashboard - 2026-02-09 22:14:31 @@ -2677,7 +2677,7 @@
Keyword Table
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" @@ -4248,11 +4248,11 @@
Keyword Table
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(); @@ -4668,7 +4668,7 @@
Keyword Table
"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", @@ -5958,7 +5958,7 @@
Total Runs: ${totalRunsAmount} | Passed Runs: ${passRate}%
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, @@ -6101,10 +6101,6 @@
Total Runs: ${totalRunsAmount} | Passed Runs: ${passRate}%
const normalizedProjectVersion = projectVersion ?? "None"; // ensure overview stats and project bar card ids unique const projectNameForElementId = isForOverview ? `${sectionPrefix}${projectName}` : projectName; -// for overview statistics -let cardTitle = ` -
${projectName}
-`; const showRunNumber = !(isForOverview && isTotalStats); const runNumberHtml = showRunNumber ? `
#${runNumber}
` : ''; let smallVersionHtml = ` @@ -6124,6 +6120,11 @@
${projectName}
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 = ` +
${projectName}
+`; if (!isForOverview) { // Project bar cards: customize based on project type if (projectName.startsWith('project_')) { diff --git a/robotframework_dashboard/version.py b/robotframework_dashboard/version.py index 249ca27..9557387 100644 --- a/robotframework_dashboard/version.py +++ b/robotframework_dashboard/version.py @@ -1 +1 @@ -__version__ = "Robotdashboard 1.6.0" +__version__ = "Robotdashboard 1.6.1" diff --git a/setup.py b/setup.py index 2485e43..c6332ab 100644 --- a/setup.py +++ b/setup.py @@ -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