Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Update AppVeyor config and AppImage build script


Former-commit-id: 14580cb
  • Loading branch information
tkashkin committed Sep 19, 2018
1 parent 69e334a commit 08a12a6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
5 changes: 4 additions & 1 deletion appimage/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ _ROOT="`pwd`"
_SCRIPTROOT="$(dirname "$(readlink -f "$0")")"
_LINUXDEPLOYQT="linuxdeployqt-continuous-x86_64.AppImage"

_SOURCE="${APPVEYOR_BUILD_VERSION:-local}"
_VERSION="$_SOURCE-$(git rev-parse --short HEAD)"

BUILDROOT="$_ROOT/build/appimage"
BUILDDIR="$BUILDROOT/build"
APPDIR="$BUILDROOT/appdir"
Expand Down Expand Up @@ -37,7 +40,7 @@ appimage()
wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/$_LINUXDEPLOYQT"
chmod a+x linuxdeployqt-continuous-x86_64.AppImage
unset QTDIR; unset QT_PLUGIN_PATH; unset LD_LIBRARY_PATH
export VERSION=$(git rev-parse --short HEAD)
export VERSION="$_VERSION"
export LD_LIBRARY_PATH=$APPDIR/usr/lib:$LD_LIBRARY_PATH
"./$_LINUXDEPLOYQT" "$APPDIR/usr/share/applications/com.github.tkashkin.gamehub.desktop" -appimage -bundle-non-qt-libs -verbose=2
rm -f "$APPDIR/AppRun"
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.11.1-{branch}-{build}
version: 0.11.1-{build}-{branch}

pull_requests:
do_not_increment_build_number: true
Expand Down
5 changes: 5 additions & 0 deletions data/com.github.tkashkin.gamehub.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
</screenshots>

<releases>
<release type="development" version="0.11.1" date="2018-09-19">
<description>
<p>Updated pt_BR localization</p>
</description>
</release>
<release type="development" version="0.11.0" date="2018-09-18">
<description>
<ul>
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
com.github.tkashkin.gamehub (0.11.1) xenial; urgency=low

* Updated pt_BR localization

-- tkashkin <[email protected]> Wed, 19 Sep 2018 03:19:47 +0300

com.github.tkashkin.gamehub (0.11.0) xenial; urgency=low

* Humble Trove support
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('com.github.tkashkin.gamehub', 'vala', 'c', version: '0.11.0')
project('com.github.tkashkin.gamehub', 'vala', 'c', version: '0.11.1')

i18n = import('i18n')
gnome = import('gnome')
Expand Down

0 comments on commit 08a12a6

Please sign in to comment.