omni-catalyst 1.0.0 → 1.0.1

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.
File without changes
File without changes
File without changes
@@ -410,8 +410,8 @@ _render() {
410
410
  local entry="${TP[$(( i * 3 + 1 ))]}${PANEL_ICONS[$i]}${NC} ${WHITE}${PANEL_HEADERS[$i]}${NC} ${GREEN1}${val}${NC}"
411
411
  local ev; ev=$(_ansi_len "$entry")
412
412
  local epad=$(( (col_w - ev) / 2 ))
413
- (( epad < 1 )) && epad=1
414
413
  local epad2=$(( col_w - ev - epad ))
414
+ (( epad < 0 )) && epad=0
415
415
  (( epad2 < 0 )) && epad2=0
416
416
  col_line+="$(printf '%*s' "$epad" '')${entry}$(printf '%*s' "$epad2" '')"
417
417
  (( i < 4 )) && col_line+="${GRAY}│${NC}"
package/core/utils/env.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- OMNI_VERSION="1.0.0"
3
+ OMNI_VERSION="1.0.1"
4
4
 
5
5
  # -------------------------
6
6
  # Directorios del usuario
package/install.sh CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omni-catalyst",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Modular Dev Environment for Termux — install languages, databases, AI agents, editors, and more with one command",
5
5
  "bin": {
6
6
  "omni": "core/bin/omni",
@@ -13,9 +13,6 @@
13
13
  "README.md",
14
14
  "LICENSE"
15
15
  ],
16
- "scripts": {
17
- "postinstall": "node scripts/npm-install.js"
18
- },
19
16
  "engines": {
20
17
  "node": ">=14.0.0"
21
18
  },
@@ -39,5 +36,8 @@
39
36
  "homepage": "https://omni-catalyst.vercel.app",
40
37
  "os": [
41
38
  "android"
42
- ]
43
- }
39
+ ],
40
+ "scripts": {
41
+ "postinstall": "node scripts/npm-install.js"
42
+ }
43
+ }