bump(main/ugit): 5.8

This commit is contained in:
Biswapriyo Nath 2024-02-03 19:42:19 +05:30 committed by Chongyun Lee
parent 4a2fd4edec
commit 80fd25938c
2 changed files with 22 additions and 16 deletions

View File

@ -2,9 +2,9 @@ TERMUX_PKG_HOMEPAGE=https://github.com/Bhupesh-V/ugit
TERMUX_PKG_DESCRIPTION="ugit helps you undo your last git command with grace. Your damage control git buddy"
TERMUX_PKG_LICENSE=MIT
TERMUX_PKG_MAINTAINER=@termux
TERMUX_PKG_VERSION="5.7"
TERMUX_PKG_VERSION="5.8"
TERMUX_PKG_SRCURL=$TERMUX_PKG_HOMEPAGE/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=9438261ef39fb3785a21edc00b756a9866e44ee373326f0269dc066c9a22ead9
TERMUX_PKG_SHA256=aedc5fd10b82ed8f3c2fc3ffb9d912863a7fec936a9e444a25e8a41123e2e90f
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_DEPENDS='bash, fzf, ncurses-utils'

View File

@ -1,20 +1,26 @@
diff --git a/ugit b/ugit
index ae0b8a2..4ff660f 100755
index c116180..c9cce1a 100755
--- a/ugit
+++ b/ugit
@@ -328,7 +328,6 @@ Available options:
-h, --help Print this help and exit
-v, --version Print current ugit version
--u, --update Update ugit
-g, --guide Open ugit undo text guide
EOF
printf "\n%s\n" "Contact 📬️: $(tput bold)varshneybhupesh@gmail.com${RESET} for assistance"
@@ -344,25 +343,6 @@ get_changelog() {
echo -e "${CHANGELOG#* }"
@@ -429,7 +429,6 @@ print_help() {
printf "Available options:\n"
printf " -h, --help Print this help and exit\n"
printf " -v, --version Print current ugit version\n"
- printf " -u, --update Update ugit\n"
printf " -g, --guide Open the ugit undo text guide\n\n"
printf "Contact 📬️: %s for assistance\n" "$(tput bold)varshneybhupesh@gmail.com${RESET}"
printf "Read the guide: %s\n" "https://til.bhupesh.me/git/how-to-undo-anything-in-git"
@@ -443,31 +442,6 @@ get_changelog() {
printf "Read Full Changelog: %s\n" "${BOLD}${CHANGELOG}${RESET}"
}
-ugit_update() {
- if [ -n "${UGIT_RUNNING_IN_DOCKER-}" ] && [ "$UGIT_RUNNING_IN_DOCKER" = true ]; then
- printf "%s\n\n" "You are running version ${VERSION} of ugit via Docker. Please pull the latest docker image to update."
- printf "\t%s\n" "${BOLD_ORG_FG}docker pull bhupeshimself/ugit${RESET}"
- return
- fi
-
- printf "%s\n" "Checking for updates ..."
- curl -s -L "$SCRIPT_URL" > "$TMP_FILE"
- NEW_VER=$(grep "^VERSION" "$TMP_FILE" | awk -F'[="]' '{print $3}')
@ -34,9 +40,9 @@ index ae0b8a2..4ff660f 100755
-}
-
open_guide() {
GUIDE="https://bhupesh.gitbook.io/notes/git/how-to-undo-anything-in-git"
@@ -407,8 +387,6 @@ main() {
GUIDE="https://til.bhupesh.me/git/how-to-undo-anything-in-git"
@@ -517,8 +491,6 @@ main() {
case "$key" in
--version|-v)
show_version;;