feat: installer treat breaking changes

This commit is contained in:
v4n
2025-01-16 13:49:16 +02:00
parent a46776838a
commit a6d0bcfb5f
3 changed files with 82 additions and 3 deletions
+5 -2
View File
@@ -1,6 +1,6 @@
#!/bin/bash
VERSION="0.1.6"
VERSION="0.2.0"
# --- Globals ---
@@ -14,7 +14,7 @@ MODS_DIR=""
DB_FILE=""
LAST_CHECKED_UPDATE_FILE="${HOME}/.config/h2mm/last_update"
VERSION_URL="https://raw.githubusercontent.com/v4n00/h2mm-cli/refs/heads/dev/version"
VERSION_URL="https://raw.githubusercontent.com/v4n00/h2mm-cli/refs/heads/master/version"
REPO_URL="https://github.com/v4n00/h2mm-cli"
# --- Utility Functions ---
@@ -685,6 +685,9 @@ function main() {
reset|r)
mod_reset "$@"
;;
version|v|-v|--version)
echo "${VERSION}"
;;
help|--help|-h|h)
display_help
;;