From: Stefanos Harhalakis Date: Fri, 14 Jan 2011 15:05:48 +0000 (+0000) Subject: v0.9.2 X-Git-Url: http://git.maemo.org/git/?p=drlaunch;a=commitdiff_plain;h=2fe384410a4c7a712d33ea17f5bc070b1bf052d2;ds=sidebyside v0.9.2 --- diff --git a/debian/changelog b/debian/changelog index be7f025..d73812f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,98 @@ +drlaunch (0.9.2-1) unstable; urgency=low + + * New release: + - Workaround for mysterious disabling of orientation notifications. + Force re-initialization of MCE in each expose event. + * New bugtracker in maemo's bugzilla. + + -- Stefanos Harhalakis Fri, 14 Jan 2011 14:12:27 +0200 + +drlaunch (0.9.1-1) unstable; urgency=low + + * New release: + - Fix loading of older version config files. + + -- Stefanos Harhalakis Fri, 14 Jan 2011 05:05:49 +0200 + +drlaunch (0.9-1) unstable; urgency=low + + * New release: + - Add option for no background + - Add option for theme's background + - Don't fail on bad orientation notification + - Don't fail when encountering unrecognized icons (bad form). Use the + default ugly blue icon instead + - Add loggin option. If /tmp/drlaunch.log exists then log stdout/stderr + there. + + -- Stefanos Harhalakis Fri, 14 Jan 2011 04:19:03 +0200 + +drlaunch (0.8-1) unstable; urgency=low + + * New release: + - At last, fix bug of hildon-home crash. It happened because of dbus + conflicts with other widgets that used dbus. Huge thanks to Andreas + Anckar (aanckar) of t.m.o. Many thanks to (lizardo) for assisting + with this bug and providing insights. Thanks to everyone else that + helped (including but not limited to DaSilva, ivgalvez, Switch_, + rantom) + + -- Stefanos Harhalakis Thu, 12 Aug 2010 19:19:44 +0300 + +drlaunch (0.7.2-1) unstable; urgency=low + + * New release: + - Attempt to force the mainloop for dbus. + * Keep debuging enabled. + + -- Stefanos Harhalakis Thu, 12 Aug 2010 16:54:47 +0300 + +drlaunch (0.7.1-1) unstable; urgency=low + + * New release: + - Changed default settings + - Added debug redirect to /tmp/drlaunch.log + * Enable debuging + + -- Stefanos Harhalakis Wed, 11 Aug 2010 23:02:04 +0300 + +drlaunch (0.7-3) unstable; urgency=low + + * Re-upload + + -- Stefanos Harhalakis Mon, 9 Aug 2010 23:22:23 +0300 + +drlaunch (0.7-2) unstable; urgency=low + + * Update postinst and prerm scripts to run update-python-modules + + -- Stefanos Harhalakis Mon, 9 Aug 2010 00:15:54 +0300 + +drlaunch (0.7-1) unstable; urgency=low + + * New version: + - Add icon rotation animation + - Rewrite drawing functions for faster drawing in order to support + animation. + - Restructure configuration window to support 8x4 layout editing. + - Add support for layouts > 4x4. + - Add "About" dialog. + * Delay installation of drlaunch_widget.py and drlaunch.desktop files + in order to avoid race condition. They are now installed from the postrm + script and removed by the prerm script. + * Add copyright notice for about0.py and portrait.py in debian/copyright. + + -- Stefanos Harhalakis Sun, 8 Aug 2010 21:20:45 +0300 + +drlaunch (0.6-1) unstable; urgency=low + + * New version: + - Fix bug when encountering .desktop entries without a 'Name'. + - Handle 'Type' from .desktop entries as well. + - Ignore .desktop entries with 'Type' = 'Daemon'. + + -- Stefanos Harhalakis Mon, 19 Jul 2010 04:43:30 +0300 + drlaunch (0.5-1) unstable; urgency=low * New version: diff --git a/debian/control b/debian/control index db3f02c..8bdfd8f 100644 --- a/debian/control +++ b/debian/control @@ -11,7 +11,7 @@ Architecture: all Depends: ${python:Depends}, python2.5, hildon-desktop-python-loader, python-hildon, python-hildondesktop, python-osso XSBC-Maemo-Display-Name: DrLaunch -XSBC-Bugtracker: mailto:v13@v13.gr +XSBC-Bugtracker: https://bugs.maemo.org/enter_bug.cgi?product=DrLaunch Description: Application launcher widget with portrait mode DrLaunch is an application launcher widget for the home screen that supports portrait mode. Whenever the phone is rotated, icons are also diff --git a/debian/copyright b/debian/copyright index 1b49a14..de4c131 100644 --- a/debian/copyright +++ b/debian/copyright @@ -27,3 +27,8 @@ Public License can be found in `/usr/share/common-licenses/GPL'. The Debian packaging is (C) 2010, Stefanos Harhalakis and is licensed under the GPLv3, see above. +DrLaunch includes two files (about0.py and potrait.py) that are modified +versions of the files from gPodder. The files are +Copyright (c) Thomas Perl and the gPodder Team +and are alse distributed under the terms of GPLv3 license. + diff --git a/debian/drlaunch.postinst b/debian/drlaunch.postinst new file mode 100644 index 0000000..6207538 --- /dev/null +++ b/debian/drlaunch.postinst @@ -0,0 +1,47 @@ +#!/bin/sh +# postinst script for wifieye +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +case "$1" in + configure) + cp /usr/share/pyshared/drlaunch/drlaunch_widget.py \ + /usr/lib/hildon-desktop + + SRC="/tmp/drlaunch.desktop" + if test -e "$SRC" ; then + mv "$SRC" /usr/share/applications/hildon-home + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# Automatically added by dh_pysupport +if which update-python-modules >/dev/null 2>&1; then + update-python-modules drlaunch.public +fi +# End automatically added section + +exit 0 + diff --git a/debian/drlaunch.prerm b/debian/drlaunch.prerm new file mode 100644 index 0000000..fbc0f86 --- /dev/null +++ b/debian/drlaunch.prerm @@ -0,0 +1,19 @@ +#!/bin/sh + +FNS="/usr/lib/hildon-desktop/drlaunch_widget.py /usr/share/applications/hildon-home/drlaunch.desktop" + +for F in $FNS ; do + if test -e "$F" ; then + echo "Removing: $F" + rm -f "$F" + fi +done + +# Automatically added by dh_pysupport +if which update-python-modules >/dev/null 2>&1; then + update-python-modules -c drlaunch.public +fi +# End automatically added section + +exit 0 + diff --git a/debian/rules b/debian/rules index c2eaa2e..b5e0a02 100755 --- a/debian/rules +++ b/debian/rules @@ -13,8 +13,10 @@ cdbs_python_current_binary := $(shell pyversions -d) DEB_PYTHON_INSTALL_ARGS_ALL = --no-compile -O0 --install-layout=deb install/drlaunch:: - dh_install drlaunch_widget.py usr/lib/hildon-desktop/ - dh_install misc/drlaunch.desktop usr/share/applications/hildon-home/ +# dh_install drlaunch_widget.py usr/lib/hildon-desktop/ +# dh_install misc/drlaunch.desktop usr/share/applications/hildon-home/ +# dh_install drlaunch_widget.py tmp/ + dh_install misc/drlaunch.desktop tmp/ python-build-stamp-%: ifeq (all, $(cdbs_python_module_arch))