batipanel 0.4.8 → 0.4.10

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.
Files changed (3) hide show
  1. package/VERSION +1 -1
  2. package/install.sh +9 -14
  3. package/package.json +1 -1
package/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.8
1
+ 0.4.10
package/install.sh CHANGED
@@ -610,19 +610,14 @@ echo " b layouts # Show available layouts"
610
610
  echo " b config layout 7panel # Change default layout"
611
611
  echo " b theme # List/change color themes"
612
612
  echo ""
613
- # auto-apply: start a fresh shell so aliases are immediately available
614
- if [ -t 0 ]; then
615
- printf "Start a new shell to apply changes? [Y/n] "
616
- read -r yn
617
- case "${yn:-Y}" in
618
- [Yy]*|"")
619
- echo "Starting $USER_SHELL..."
620
- exec "$SHELL" -l
621
- ;;
622
- *)
623
- echo "Run this to apply: source $SHELL_RC"
624
- ;;
625
- esac
613
+ # auto-apply: launch a fresh login shell so aliases work immediately
614
+ # skip if running inside curl|bash (web-install.sh handles this)
615
+ if [ -t 0 ] && [ -z "${BATIPANEL_NO_EXEC:-}" ]; then
616
+ echo "Launching new shell to apply changes..."
617
+ cd "$HOME"
618
+ exec "$SHELL" -l
626
619
  else
627
- echo "Open a new terminal or run: source $SHELL_RC"
620
+ echo "To start using batipanel, run:"
621
+ echo ""
622
+ echo " source $SHELL_RC && b"
628
623
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "batipanel",
3
- "version": "0.4.8",
3
+ "version": "0.4.10",
4
4
  "description": "AI-powered terminal workspace manager — multi-panel tmux layouts with Claude Code, git, monitoring, and more",
5
5
  "bin": {
6
6
  "batipanel": "./bin/cli.sh"