karnel-termux 0.0.2 → 0.0.3

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.
@@ -69,7 +69,7 @@ install_main() {
69
69
  log_info "Available targets:"
70
70
  echo
71
71
  list_item "lang - Language packages (Node.js, Python, Perl, PHP, Rust, C, C++, Go)"
72
- list_item "db - Databases (PostgreSQL, MariaDB, SQLite, MongoDB)"
72
+ list_item "db - Databases (PostgreSQL, MariaDB, SQLite, MongoDB, Redis)"
73
73
  list_item "ai - AI tools (OpenCode, Gentle AI, Claude Code, etc.)"
74
74
  list_item "editor - Code editor (code-server)"
75
75
  list_item "dev - Development tools"
@@ -294,6 +294,10 @@ _install_specific_tools() {
294
294
  install_mongodb
295
295
  case $? in 0|2) ((installed_count++));; 1) ((failed_count++));; esac
296
296
  ;;
297
+ redis)
298
+ install_redis
299
+ case $? in 0|2) ((installed_count++));; 1) ((failed_count++));; esac
300
+ ;;
297
301
  *)
298
302
  log_warn "Unknown database: --$tool"
299
303
  ;;
@@ -119,6 +119,7 @@ _list_db() {
119
119
  table_row "MariaDB" "--mariadb" "$(_check_pkg "mariadb")"
120
120
  table_row "SQLite" "--sqlite" "$(_check_pkg "sqlite")"
121
121
  table_row "MongoDB" "--mongodb" "$(_check_pkg "mongodb")"
122
+ table_row "Redis" "--redis" "$(_check_pkg "redis")"
122
123
  table_end
123
124
 
124
125
  echo
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "karnel-termux",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Modular Dev Environment for Termux — install languages, databases, AI agents, editors, and more with one command",
5
5
  "bin": {
6
6
  "karnel": "karnel/bin/karnel"