This commit is contained in:
Tony George 2013-10-12 10:57:15 +05:30
parent 74a82b8ac2
commit 56b69da335
3 changed files with 11 additions and 4 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
timeshift (1.0.5) quantal; urgency=low
timeshift (1.0.6) quantal; urgency=low
* Initial Release

View File

@ -9,8 +9,15 @@ echo "Installing files..."
sudo cp -dpr --no-preserve=ownership -t / ./*
if [ $? -eq 0 ]; then
echo "TimeShift was installed successfully"
echo "Use the shortcut in the application menu or run: sudo timeshift"
echo "Installed successfully."
echo ""
echo "Start TimeShift using the shortcut in the application menu"
echo "or by running the command: sudo timeshift"
echo ""
echo "If it fails to start, please check if the following packages"
echo "are installed on your system:"
echo "- libgtk-3 libgee2 libsoup libjson-glib rsync"
echo ""
else
echo "Installation failed!"
exit 1

View File

@ -30,7 +30,7 @@ using Utility;
public Main App;
public const string AppName = "TimeShift";
public const string AppVersion = "1.0.5";
public const string AppVersion = "1.0.6";
public const string AppAuthor = "Tony George";
public const string AppAuthorEmail = "teejee2008@gmail.com";
public const bool LogTimestamp = true;