Fixes to postrm etc.
authorwellu <wellu@wellu.org>
Fri, 9 Jan 2009 13:32:14 +0000 (13:32 +0000)
committerwellu <wellu@wellu.org>
Fri, 9 Jan 2009 13:32:14 +0000 (13:32 +0000)
git-svn-id: file:///svnroot/speedometer/trunk@63 df364472-da61-43ef-8a67-511c89aa921b

README
debian/changelog
debian/postrm

diff --git a/README b/README
index 2540da9..cd125d7 100644 (file)
--- a/README
+++ b/README
@@ -1,3 +1,4 @@
+
 This application and all its files are released under
 GPL license. See COPYING for the whole license text.
 
@@ -15,3 +16,14 @@ Wellu Mäkinen
 Poste restante
 33580 Tampere
 FINLAND
+
+This application has been tested and developed solely
+on Nokia N810 which has internal GPS receiver. It
+*might* work on Nokia N800 with a Bluetooth GPS dongle
+too but that would be black magic or voodoo of some kind.
+
+
+Feedback and suggestions: wellu@wellu.org
+
+
+CUT HERE >--->--->--->--->--->--->--->--->--->--->--->--->
index 456f43c..1d9297c 100644 (file)
@@ -1,8 +1,10 @@
 speedometer (0.31) unstable; urgency=low
 
   * Added maemo-launcher support to speed startup a bit.
+  * Fixed postrm script so that it will clean everything on purge.
+  * Replaced unnecessary and buggy delete-event emission. 
 
- -- Wellu Mäkinen <wellu@wellu.org>  Thu,  8 Jan 2009 10:42:52 +0200
+ -- Wellu Mäkinen <wellu@wellu.org>  Fri, 09 Jan 2009 20:52:40 +0200
 
 speedometer (0.3) unstable; urgency=low
 
index 25a6b1d..10e6be4 100755 (executable)
@@ -1,6 +1,17 @@
 #! /bin/sh
 
-# deletes the settings
-#gconftool --recursive-unset /apps/Maemo/speedometer
+case "$1" in 
+       remove)
+       # user really wants to remove this package so cleanup
+       # everything the app has created
+       gconftool --recursive-unset /apps/Maemo/speedometer
+       ;;
+
+       upgrade)
+       # normal upgrade of the package
+
+       ;;
+
+esac
 
 exit 0