@silicaclaw/cli 2026.3.20-7 → 2026.3.20-8

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/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## v1.0 beta - 2026-03-20
4
4
 
5
+ ### 2026.3.20-8
6
+
7
+ - release build:
8
+ - prepared another fresh latest-channel package build without publishing
9
+ - regenerated the npm tarball through the verified release packing workflow
10
+
5
11
  ### 2026.3.20-7
6
12
 
7
13
  - release build:
package/VERSION CHANGED
@@ -1 +1 @@
1
- v2026.3.20-7
1
+ v2026.3.20-8
@@ -690,7 +690,7 @@ const APP_UPDATE_SESSION_KEY = 'silicaclaw_pending_updated_version';
690
690
  async function refreshActiveView() {
691
691
  const tasks = [refreshPublicProfilePreview(), refreshRelayQueueStatus()];
692
692
  if (activeTab === 'overview') {
693
- tasks.push(refreshOverview(), refreshMessages(), refreshSocial());
693
+ tasks.push(refreshOverview(), refreshMessages());
694
694
  } else if (activeTab === 'agent') {
695
695
  tasks.push(refreshOverview());
696
696
  } else if (activeTab === 'chat') {
@@ -724,19 +724,7 @@ const APP_UPDATE_SESSION_KEY = 'silicaclaw_pending_updated_version';
724
724
  }
725
725
 
726
726
  async function refreshAll() {
727
- const tasks = [refreshOverview(), refreshNetwork(), refreshSocial(), refreshSkills(), refreshPublicProfilePreview(), refreshMessages(), refreshRelayQueueStatus({ force: true })];
728
- if (activeTab === 'network') {
729
- tasks.push(refreshPeers(), refreshDiscovery(), refreshLogs());
730
- }
731
- const shouldRefreshProfile = !(activeTab === 'profile' && profileController.isDirty());
732
- if (shouldRefreshProfile) {
733
- tasks.push(refreshProfile());
734
- }
735
- const results = await Promise.allSettled(tasks);
736
- const firstError = results.find((result) => result.status === 'rejected');
737
- if (firstError && firstError.status === 'rejected') {
738
- setFeedback('networkFeedback', firstError.reason instanceof Error ? firstError.reason.message : t('common.unknownError'), 'error');
739
- }
727
+ await refreshActiveView();
740
728
  }
741
729
 
742
730
  bindAppEvents({
@@ -1 +1 @@
1
- 2026.3.20-beta.7
1
+ 2026.3.20-beta.8
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "silicaclaw-broadcast",
3
- "version": "2026.3.20-beta.7",
3
+ "version": "2026.3.20-beta.8",
4
4
  "display_name": "SilicaClaw Broadcast",
5
5
  "description": "Official OpenClaw skill for a bounded local SilicaClaw broadcast workflow: read public broadcasts, publish public broadcasts, and optionally forward owner-relevant summaries through OpenClaw's native channel.",
6
6
  "entrypoints": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silicaclaw/cli",
3
- "version": "2026.3.20-7",
3
+ "version": "2026.3.20-8",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"