Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
cerebrux committed Nov 14, 2017
2 parents 58a0e61 + ec5ec8b commit a47f871
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Name : uCareSystem
License: GPL3 (http://www.gnu.org/licenses/gpl.html)
Author : Salih Emin
Email : salihemin (at) about.me
Email : salihemin (at) about.me
Date : 15-11-2017
Version: 4.3.0
System : Ubuntu or Debian derivatives (Not tested every flavor)
Expand Down
7 changes: 7 additions & 0 deletions assets/launch-ucaresystemcore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
# uCareSystem Core Launcher
# Copyright (c) 2017 Salih Emin. All rights reserved.
# Use of this source code is governed by GPLv3 license that can be
# found in the LICENSE file.

gksu -m 'uCareSystem : Authentication Required' "uxterm -title 'uCareSystem Core' -hold -e ucaresystem-core"
2 changes: 1 addition & 1 deletion assets/ucaresystemcore.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ Type=Application
Name=uCareSystem Core
Comment=All in one system maintenance
Icon=ucaresystemicon
Exec=ucaresystemcore
Exec=launch-ucaresystemcore
Terminal=false
Categories=PackageManager;
9 changes: 4 additions & 5 deletions debian-packaging/changelog
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
ucaresystem-core (4.2.2) stable; urgency=medium
ucaresystem-core (4.3.0) trusty; urgency=high

* Refactoring versioning for Debian based distributions.
* Adding repository installer postinstall

-- Salih Emin <mail> Wed, 08 Nov 2017 14:45:44 +0200
* Added desktop icon and entry. User can launch ucaresystem form application menu

-- Salih Emin <[email protected]> Wed, 15 Nov 2017 14:45:44 +0200
17 changes: 17 additions & 0 deletions debian-packaging/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Source: ucaresystem-core
Section: utils
Priority: optional
Maintainer: Salih Emin <>
Build-Depends: debhelper (>= 9)
Standards-Version: 4.1.1
Homepage: http://utappia.org
Vcs-Browser: https://github.com/Utappia/uCareSystem.git

Package: ucaresystem-core
Architecture: all
Depends: apt, deborphan, lsb-release, xterm, gksu
Description: All-in-one System Update and maintenance app
This simple script will automatically refresh your packagelist,
download and install software updates (if there are any), remove old
kernels, obsolete packages and configuration files and free up disk space
without any user intervention
6 changes: 3 additions & 3 deletions ucaresystem-core
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set -e
#Variables
DIST_CODENAME=$(lsb_release --codename | cut -f2)
DATE=(date +%F_%T)
UCARE_VERSION=(4.2.3)
UCARE_VERSION=(4.3.0)

# Checking if the user has run the script with "sudo" or not
if [[ $EUID -ne 0 ]] ; then
Expand Down Expand Up @@ -90,8 +90,8 @@ function MAINTENACE {
echo

## Removes unneeded packages
sudo apt autoremove --purge -y;
echo
sudo apt autoremove -y; # Debian Jessie shows no love for --purge. So
echo # for the time being I am removing it
echo "###################################"
echo "Finished removing unneeded packages"
echo "###################################"
Expand Down

0 comments on commit a47f871

Please sign in to comment.