@beastmode-develeap/beastmode 0.1.173 → 0.1.175

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-180459-449d5c6";</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>
@@ -4044,6 +4044,7 @@ function normalizeDt(s) {
4044
4044
  if (!s) return s;
4045
4045
  if (s.length >= 19 && s[10] === ' ') s = s.slice(0, 10) + 'T' + s.slice(11);
4046
4046
  if (s.endsWith('+00:00')) s = s.slice(0, -6) + 'Z';
4047
+ if (s.endsWith(' UTC')) s = s.slice(0, -4);
4047
4048
  if (s.length >= 19 && !s.endsWith('Z') && !s.includes('+')) s += 'Z';
4048
4049
  return s;
4049
4050
  }
@@ -6028,7 +6029,7 @@ function BoardPage({ selectedProject }) {
6028
6029
  }
6029
6030
  // Date range filter
6030
6031
  if (filters.dateRange) {
6031
- const d = new Date(item.created_at || item.updated_at);
6032
+ const d = new Date(normalizeDt(item.created_at || item.updated_at));
6032
6033
  const now = new Date();
6033
6034
  if (filters.dateRange === 'today') {
6034
6035
  if (d.toDateString() !== now.toDateString()) return false;
@@ -7647,7 +7648,7 @@ function PluginsTab({ selectedProject }) {
7647
7648
  <div class="ext-meta">
7648
7649
  v${installed[name].version || '?'} \u2014
7649
7650
  Source: ${installed[name].source || 'local'} \u2014
7650
- Installed: ${installed[name].installed_at ? new Date(installed[name].installed_at).toLocaleDateString() : '?'}
7651
+ Installed: ${installed[name].installed_at ? new Date(normalizeDt(installed[name].installed_at)).toLocaleDateString() : '?'}
7651
7652
  </div>
7652
7653
  </div>
7653
7654
  <div class="ext-actions">
@@ -1 +1 @@
1
- 967f9299226b269a3fc94de2e9ea689f9222f7e3
1
+ 449d5c62fda4258fac2e5f50dac2f01395e4ef42
@@ -1 +1 @@
1
- 20260506-143615-967f929
1
+ 20260506-180459-449d5c6
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.175",
4
4
  "description": "BeastMode Dark Factory — turn intent into verified software",
5
5
  "type": "module",
6
6
  "bin": {