Skip to content

Commit 6f4b367

Browse files
committed
Update status tooltip icons and descriptions to match current Hiero process
- Remove outdated 'Council Review' and 'Accepted' statuses - Update emoji icons for better clarity (Draft: ✏️, Final: 🎯, Deferred: ⏸️) - Align descriptions with HIP-1 process documentation - Focus on Hiero TSC approval process rather than outdated Council references - Clarify difference between Approved and Final states Signed-off-by: mgarbs <michael.garber@hashgraph.com>
1 parent 1a74a06 commit 6f4b367

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

assets/js/tooltip.js

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,16 @@ document.addEventListener("DOMContentLoaded", function () {
3131

3232
function getTooltipContent(status) {
3333
const statusMeanings = {
34-
Draft: "⚠️ Initial stage of the HIP process.",
35-
Review: "📖 Ready for Editorial Review. Subject to changes; feedback appreciated.",
36-
Deferred: "⏸ Addressed in another HIP. Paused in progress.",
37-
Withdrawn: "🛑 Withdrawn by the Author(s), finality achieved. Can be resurrected as a new proposal.",
34+
Draft: "✏️ The formal starting point of a HIP. Currently being drafted and not yet ready for review.",
35+
Review: "📖 Ready for review by the community and HIP editors. Subject to changes; feedback appreciated.",
36+
"Last Call": "📢 Final review window (typically 14 days) before moving to Hiero TSC approval or Approved status.",
37+
Approved: "✅ Standards Track HIP approved by Hiero TSC, or Application HIP approved by community. Awaits Hedera review if needed.",
38+
Final: "🎯 Standards Track HIP with reference implementation merged and code released.",
39+
Active: "🌟 Process or Informational HIP that is currently in effect. Can be Withdrawn or Replaced.",
40+
Deferred: "⏸️ Not currently being pursued but may be revisited in the future.",
41+
Withdrawn: "🛑 Withdrawn by the Author(s). Can be resurrected as a new proposal.",
3842
Stagnant: "🚧 No activity for 6+ months. Can return to Draft by Authors or Editors.",
39-
Rejected: "❌ Not accepted. Rejected ideas are recorded with reasoning.",
40-
"Last Call": "📢 Final review window before 'Accepted'. Subject to change if issues found.",
41-
"Council Review": "⚖️ Under Council review. Awaiting approval, subject to feedback.",
42-
Accepted: "👍 Went through 'Last Call' without content changes. Ready for implementation.",
43-
Final: "✅ Implemented in code and released.",
44-
Active: "🌟 Informational/Process HIPs that made it through Last Call. Can be 'Withdrawn' or 'Replaced'.",
43+
Rejected: "❌ Rejected by HIP editors, community, or Hiero TSC vote. Ideas recorded with reasoning.",
4544
Replaced: "🔄 Overwritten by a newer standard or implementation."
4645
};
4746
return statusMeanings[status] || "No information available for this status.";

0 commit comments

Comments
 (0)