diff --git a/data/com.github.maoschanz.drawing.appdata.xml.in b/data/com.github.maoschanz.drawing.appdata.xml.in index d552baa2..8de27529 100644 --- a/data/com.github.maoschanz.drawing.appdata.xml.in +++ b/data/com.github.maoschanz.drawing.appdata.xml.in @@ -31,14 +31,14 @@

First stable release, including a few basic tools.

- - - - - - - - + + +

Version 0.4 introduces a new icon, numerous bug fixes, an improved + toolbar for the "legacy" and "toolbar only" layouts, an action for creating + an image from the clipboard content, a smoother pencil, and various new + translations.

+
+
diff --git a/deb_package.sh b/deb_package.sh index ab664b27..eb3acb0d 100755 --- a/deb_package.sh +++ b/deb_package.sh @@ -8,18 +8,21 @@ VERSION="0.4" previous_dir=`pwd` # mettre en place la structure à la con voulue par les scripts de debian -DIR_NAME=$PACKAGE_NAME'_'$VERSION -mkdir -p /tmp/building-dir/$DIR_NAME -cp -r build-aux /tmp/building-dir/$DIR_NAME -cp -r data /tmp/building-dir/$DIR_NAME -cp -r debian /tmp/building-dir/$DIR_NAME -cp -r help /tmp/building-dir/$DIR_NAME -cp -r po /tmp/building-dir/$DIR_NAME -cp -r src /tmp/building-dir/$DIR_NAME -cp meson.build /tmp/building-dir/$DIR_NAME -cd /tmp/building-dir/ -tar -Jcvf $PACKAGE_NAME.orig.tar.xz $DIR_NAME -cd /tmp/building-dir/$DIR_NAME +DIR_NAME=$PACKAGE_NAME'-'$VERSION +FILE_NAME=$PACKAGE_NAME'_'$VERSION +DIR_PATH=/tmp/building-dir +mkdir -p $DIR_PATH/$DIR_NAME/ +cp -r build-aux $DIR_PATH/$DIR_NAME/ +cp -r data $DIR_PATH/$DIR_NAME/ +cp -r debian $DIR_PATH/$DIR_NAME/ +cp -r help $DIR_PATH/$DIR_NAME/ +cp -r po $DIR_PATH/$DIR_NAME/ +cp -r src $DIR_PATH/$DIR_NAME/ +cp meson.build $DIR_PATH/$DIR_NAME/ +cd $DIR_PATH/ +tar -Jcvf $FILE_NAME.orig.tar.xz $DIR_NAME +# tar -Jcvf $PACKAGE_NAME.orig.tar.xz $DIR_NAME +cd $DIR_PATH/$DIR_NAME/ # création des fichiers exigés ## création de 'control' à partir des appdata @@ -29,18 +32,20 @@ cd /tmp/building-dir/$DIR_NAME # TODO ## création de 'compat' -echo '10' > /tmp/building-dir/$DIR_NAME/debian/compat +echo '10' > $DIR_PATH/$DIR_NAME/debian/compat # le truc qui chie des fichiers supplémentaires pour la construction -dh_make -i +dh_make -i -y # la construction debuild -i -us -uc -b # récupérer le paquet dans /tmp -cp /tmp/building-dir/drawing_0.4_amd64.deb $previous_dir +cp $DIR_PATH/*.deb $previous_dir # nettoyage -# rm -r /tmp/building-dir +ls $DIR_PATH +ls $DIR_PATH/$DIR_NAME +rm -r $DIR_PATH cd $previous_dir diff --git a/debian/changelog b/debian/changelog index 37e81b25..4dd8ae31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,10 @@ -drawing (0.4) unstable; urgency=low +drawing (0.4.1) unstable; urgency=low - * Read the appstream data if you want an actual changelog + * New icon + * Numerous bug fixes + * Improved toolbar for the "legacy" and "toolbar only" layouts + * Action for creating an image from the clipboard content + * Smoother pencil + * Various new translations -- Romain F. T. Mon, 22 Jul 2019 00:18:12 +0100 diff --git a/meson.build b/meson.build index a846a55f..3044fa3a 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'drawing', - version: '0.4.0', + version: '0.4.1', meson_version: '>= 0.50.0', )