diff --git a/README.md b/README.md index ca5cabb..e3e6791 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ Name : uCareSystem License: GPL3 (http://www.gnu.org/licenses/gpl.html) Author : Salih Emin Email : salih-emin(a)ubuntu.com -Date : 27-01-2026 (first release 19-02-2009) -Version: 26.01.27 +Date : 14-02-2026 (first release 19-02-2009) +Version: 26.02.14 System : Ubuntu Linux and derivatives. With Deb, Snap or Flatpak. (Partial support for WSL2) WebSite: http://utappia.org ``` diff --git a/debian/changelog b/debian/changelog index 23ad3c2..99fc9e9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ucaresystem-core (26.02.14) jammy; urgency=high + + * fixed not launching on Ubuntu 25.10 + + -- Salih Emin Sat, 14 Feb 2026 15:18:47 +0000 + ucaresystem-core (26.01.27) jammy; urgency=medium * Fixed snap based infrastracture apps like Doker, Kubernetes, LXD diff --git a/src/launch-ucaresystemcore b/src/launch-ucaresystemcore index e2a2bf2..93c12e9 100644 --- a/src/launch-ucaresystemcore +++ b/src/launch-ucaresystemcore @@ -24,4 +24,14 @@ if [ -z "${TERMINAL_CMD:-}" ] || ! command -v "$TERMINAL_CMD" >/dev/null 2>&1; t fi # Open the default terminal emulator and execute ucaresystem-core -"$TERMINAL_CMD" -e "bash -c 'ucaresystem-core; read -p \"Press Enter to exit...\"'" +TERMINAL_BASENAME=$(basename "$TERMINAL_CMD") +CMD=(bash -c 'ucaresystem-core; read -r -p "Press Enter to exit..."') + +case "$TERMINAL_BASENAME" in + gnome-terminal*|kgx|gnome-console) + "$TERMINAL_CMD" -- "${CMD[@]}" + ;; + *) + "$TERMINAL_CMD" -e "${CMD[@]}" + ;; +esac diff --git a/src/ucaresystem-core b/src/ucaresystem-core index 00c9364..5d0f530 100755 --- a/src/ucaresystem-core +++ b/src/ucaresystem-core @@ -11,8 +11,8 @@ set -e # Author : Salih Emin # WebSite: http://utappia.org # Email : salih-emin(at)ubuntu.com -# Date : 27-01-2026 (first release 19-02-2009) -# Version: 26.01.27 +# Date : 14-02-2026 (first release 19-02-2009) +# Version: 26.02.14 # System : Ubuntu Linux and derivatives. With Deb, Snap or Flatpak. (Partial support for Debian and WSL2) # Description: #This simple script will automatically refresh your package list, download and install @@ -29,7 +29,7 @@ YELLOW="\e[33m" RED="\e[31m" ENDCOLOR="\e[0m" DATE=$(date +%F_%T) -UCARE_VERSION="26.01.27" +UCARE_VERSION="26.02.14" # See HONORED_RELEASES.md for historical record of honored releases VER_CODENAME="Frankie P" PREV_VER="25.12"