unoverse 0.1.41 → 0.1.43

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.
@@ -14,7 +14,7 @@ cmd_help() {
14
14
  echo -e " ${BOLD}Anywhere${NC}"
15
15
  echo -e " ${GREEN}create${NC} Start something new, here"
16
16
  echo -e " ${GREEN}studio${NC} Author components, nodes, agent skills"
17
- echo -e " ${GREEN}where${NC} Your universe's addresses"
17
+ echo -e " ${GREEN}where${NC} Links to your universe ${DIM}(Canvas, API), checked live${NC}"
18
18
  echo -e " ${GREEN}update${NC} Update this CLI"
19
19
  echo ""
20
20
  echo -e " ${BOLD}This universe${NC}"
@@ -429,7 +429,7 @@ ENVEOF
429
429
  echo -e " ${DIM}1.${NC} Start Docker Desktop"
430
430
  echo -e " ${DIM}2.${NC} ${GREEN}unoverse start${NC}"
431
431
  fi
432
- echo -e " ${GREEN}unoverse where${NC} Its addresses, once it is up"
432
+ echo -e " ${GREEN}unoverse where${NC} Links to your Canvas and API"
433
433
  echo ""
434
434
  info "Run ${BOLD}unoverse check${NC} anytime to see if it is healthy"
435
435
  info "Change a setting any time: edit ${BOLD}.env${NC} directly, or re-run ${BOLD}unoverse create${NC} (Enter keeps each current value)"
@@ -78,6 +78,17 @@ case "${1:-}" in
78
78
  if [ -n "$(docker compose -f "$ROOT/docker-compose.yml" ps -q 2>/dev/null)" ]; then
79
79
  docker compose -f "$ROOT/docker-compose.yml" --env-file "$ROOT/.env" up -d --remove-orphans >/dev/null 2>&1 \
80
80
  && ok "Running services moved to the new images"
81
+ echo ""
82
+ echo -e " ${GREEN}unoverse where${NC} Links to your Canvas and API"
83
+ echo ""
84
+ else
85
+ # An update never boots a stopped universe — but it should say what would.
86
+ echo ""
87
+ echo -e " ${BOLD}Everything is up to date.${NC} Next:"
88
+ echo ""
89
+ echo -e " ${GREEN}unoverse start${NC} Start the platform"
90
+ echo -e " ${GREEN}unoverse where${NC} Links to your Canvas and API"
91
+ echo ""
81
92
  fi
82
93
  fi ;;
83
94
  deploy)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",