Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
ucaresystem-core (26.02.14) jammy; urgency=high

* fixed not launching on Ubuntu 25.10

-- Salih Emin <salih-emin@ubuntu.com> 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
Expand Down
12 changes: 11 additions & 1 deletion src/launch-ucaresystemcore
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions src/ucaresystem-core
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down