ccusage-ui 0.1.13 → 0.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccusage-ui",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "main": "server.js",
5
5
  "bin": {
6
6
  "ccusage-ui": "server.js"
package/public/index.html CHANGED
@@ -280,7 +280,7 @@
280
280
  <div>
281
281
  <div style="display: flex; align-items: center; gap: 8px;">
282
282
  <h2 style="margin:0; font-size:18px;">Usage Trend</h2>
283
- <span class="tier-info" data-tippy-content=" Iron: <5M<br>🟫 Bronze: 5M+<br>⬜ Silver: 10M+<br>🟡 Gold: 30M+<br>💚 Platinum: 50M+<br>💎 Emerald: 100M+<br>💠 Diamond: 300M+<br>🔴 Master: 500M+<br>🟠 Grandmaster: 1B+<br>🏆 Challenger: 1.5B+ (World #1 Level)">?</span>
283
+ <span class="tier-info" data-tippy-content="🏆 Challenger: 1.5B+ (World #1 Level)<br>🟠 Grandmaster: 1B+<br>🔴 Master: 500M+<br>💠 Diamond: 300M+<br>💎 Emerald: 100M+<br>💚 Platinum: 50M+<br>🟡 Gold: 30M+<br>⬜ Silver: 10M+<br>🟫 Bronze: 5M+<br>⬛ Iron: <5M">?</span>
284
284
  </div>
285
285
 
286
286
  <div id="userLevel" style="font-size:12px; color:#0071e3; margin-top:4px; font-weight:500;"></div>
@@ -587,14 +587,14 @@
587
587
  } else if (currentMetric === 'cost') {
588
588
  // Subscription plan benchmarks - higher tiers first
589
589
  if (currentView === 'monthly') {
590
- drawLine(200, '#ff3b30', '$200 Max');
591
- drawLine(100, '#ff9500', '$100 Pro');
592
- drawLine(20, '#34c759', '$20 (Free tier value)');
590
+ drawLine(200, '#ff3b30', '$200 Max (20x)');
591
+ drawLine(100, '#ff9500', '$100 Max (5x)');
592
+ drawLine(20, '#34c759', '$20 Pro');
593
593
  } else {
594
594
  // Daily cost benchmarks - higher tiers first
595
595
  drawLine(6.7, 'rgba(255, 59, 48, 0.5)', '$200 Max (~$6.7/day)');
596
- drawLine(3.3, 'rgba(255, 149, 0, 0.5)', '$100 Pro (~$3.3/day)');
597
- drawLine(0.67, 'rgba(52, 199, 89, 0.5)', '$20/mo (~$0.67/day)');
596
+ drawLine(3.3, 'rgba(255, 149, 0, 0.5)', '$100 Max (~$3.3/day)');
597
+ drawLine(0.67, 'rgba(52, 199, 89, 0.5)', '$20 Pro (~$0.67/day)');
598
598
  }
599
599
  }
600
600
  }