diff --git a/projects/mtg/debian/Res.txt b/projects/mtg/debian/Res.txt new file mode 100644 index 000000000..600f2d236 --- /dev/null +++ b/projects/mtg/debian/Res.txt @@ -0,0 +1,2 @@ +/home/user/MyDocs/wagic/Res/ +/home/user/wagic/Res/ diff --git a/projects/mtg/debian/changelog b/projects/mtg/debian/changelog index c9d9012ca..de84bcaf8 100644 --- a/projects/mtg/debian/changelog +++ b/projects/mtg/debian/changelog @@ -1,8 +1,6 @@ -wagic (0.14.0maemo0) unstable; urgency=low +wagic (0.14.1maemo0) unstable; urgency=low - * Touch interface - * Usage of the volume buttons to go to next phase and interrupt - * CPU load improvements - * Fixed upgrade - * wagic 0.14.0 - -- Xawotihs Sun, 12 Dec 2010 14:11:42 +0200 + * Fixed crashes in the touch interface + * Changed the installation mechanism to be able to work while the FAT partition is mounted + * wagic 0.14.1 + -- Xawotihs Wed, 29 Dec 2010 14:11:42 +0200 diff --git a/projects/mtg/debian/postinst b/projects/mtg/debian/postinst index 77f9985d6..4e6d6950b 100644 --- a/projects/mtg/debian/postinst +++ b/projects/mtg/debian/postinst @@ -1,11 +1,11 @@ #!/bin/sh -e chmod +x /opt/wagic/wagic -mkdir -p /home/user/MyDocs/wagic -mkdir -p /home/user/MyDocs/wagic/Res -cp -rf /opt/wagic/ResInst/* /home/user/MyDocs/wagic/Res -rm -rf /opt/wagic/ResInst -ln -s /home/user/MyDocs/wagic/Res /opt/wagic/Res +if grep -q /home/user/MyDocs /proc/mounts; then + mkdir -p /home/user/MyDocs/wagic + mkdir -p /home/user/MyDocs/wagic/Res + cp -rf /home/user/wagic/Res/* /home/user/MyDocs/wagic/Res +fi gtk-update-icon-cache -f /usr/share/icons/hicolor exit 0