@beastmode-develeap/beastmode 0.1.173 → 0.1.174

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.
@@ -15,7 +15,7 @@
15
15
  }
16
16
  </script>
17
17
  <!--BOARD_DATA-->
18
- <script>window.__BUILD_STAMP__ = "20260506-143615-967f929";</script>
18
+ <script>window.__BUILD_STAMP__ = "20260506-171343-7417af9";</script>
19
19
  <link rel="preconnect" href="https://fonts.googleapis.com">
20
20
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
21
21
  <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
@@ -3788,7 +3788,7 @@ function DashboardPage({ selectedProject, onProjectChange }) {
3788
3788
  ]).then(([s, boardData, runsData, projectsData]) => {
3789
3789
  setStatus(s);
3790
3790
  const sorted = (boardData.items || [])
3791
- .sort((a, b) => new Date(b.updated_at || b.created_at || 0) - new Date(a.updated_at || a.created_at || 0))
3791
+ .sort((a, b) => new Date(normalizeDt(b.updated_at || b.created_at) || 0) - new Date(normalizeDt(a.updated_at || a.created_at) || 0))
3792
3792
  .slice(0, 10);
3793
3793
  setRecentItems(sorted);
3794
3794
  const runsList = Array.isArray(runsData) ? runsData : (runsData.runs || []);
@@ -3914,7 +3914,7 @@ function DashboardPage({ selectedProject, onProjectChange }) {
3914
3914
  <div>
3915
3915
  <div class="quick-info-label">Created</div>
3916
3916
  <div class="quick-info-value">
3917
- ${status.created_at ? new Date(status.created_at).toLocaleDateString() : 'Unknown'}
3917
+ ${status.created_at ? new Date(normalizeDt(status.created_at)).toLocaleDateString() : 'Unknown'}
3918
3918
  </div>
3919
3919
  </div>
3920
3920
  </div>
@@ -6028,7 +6028,7 @@ function BoardPage({ selectedProject }) {
6028
6028
  }
6029
6029
  // Date range filter
6030
6030
  if (filters.dateRange) {
6031
- const d = new Date(item.created_at || item.updated_at);
6031
+ const d = new Date(normalizeDt(item.created_at || item.updated_at));
6032
6032
  const now = new Date();
6033
6033
  if (filters.dateRange === 'today') {
6034
6034
  if (d.toDateString() !== now.toDateString()) return false;
@@ -7647,7 +7647,7 @@ function PluginsTab({ selectedProject }) {
7647
7647
  <div class="ext-meta">
7648
7648
  v${installed[name].version || '?'} \u2014
7649
7649
  Source: ${installed[name].source || 'local'} \u2014
7650
- Installed: ${installed[name].installed_at ? new Date(installed[name].installed_at).toLocaleDateString() : '?'}
7650
+ Installed: ${installed[name].installed_at ? new Date(normalizeDt(installed[name].installed_at)).toLocaleDateString() : '?'}
7651
7651
  </div>
7652
7652
  </div>
7653
7653
  <div class="ext-actions">
@@ -1 +1 @@
1
- 967f9299226b269a3fc94de2e9ea689f9222f7e3
1
+ 7417af9f3d1a0f653684f09ddcdad8a0ebb80f99
@@ -1 +1 @@
1
- 20260506-143615-967f929
1
+ 20260506-171343-7417af9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beastmode-develeap/beastmode",
3
- "version": "0.1.173",
3
+ "version": "0.1.174",
4
4
  "description": "BeastMode Dark Factory — turn intent into verified software",
5
5
  "type": "module",
6
6
  "bin": {