@tt-a1i/hive 1.1.2 → 1.1.4

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,21 @@
2
2
 
3
3
  All notable user-facing changes will be documented in this file.
4
4
 
5
+ ## 1.1.4 - 2026-05-17
6
+
7
+ Update guidance polish.
8
+
9
+ - Shows `npm install -g @tt-a1i/hive@latest` in update prompts instead of
10
+ `npm update -g @tt-a1i/hive`, making the upgrade command explicit and
11
+ deterministic across npm versions.
12
+
13
+ ## 1.1.3 - 2026-05-17
14
+
15
+ Brand polish.
16
+
17
+ - Uses the README logo for the browser favicon and the in-app topbar brand mark.
18
+ - Removes the old inline SVG favicon from the web shell.
19
+
5
20
  ## 1.1.2 - 2026-05-17
6
21
 
7
22
  Private-release workflow fix.
Binary file
@@ -27,7 +27,7 @@ export const compareVersions = (left, right) => {
27
27
  };
28
28
  const buildVersionInfo = (currentVersion, latestVersion) => ({
29
29
  current_version: currentVersion,
30
- install_hint: `npm update -g ${PACKAGE_NAME}`,
30
+ install_hint: `npm install -g ${PACKAGE_NAME}@latest`,
31
31
  latest_version: latestVersion,
32
32
  package_name: PACKAGE_NAME,
33
33
  release_url: `https://www.npmjs.com/package/${PACKAGE_NAME}/v/${latestVersion}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tt-a1i/hive",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "description": "Browser-native hive-mind for CLI coding agents — Claude Code, Codex, Gemini, and OpenCode collaborate as real PTY processes via a team protocol.",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.30.3",