2016-01-08 17:55:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# if you run the build.sh script to build Subsurface you'll never need
|
|
|
|
# this, but if you build your binaries differently for some reason and
|
|
|
|
# you want to build Subsurface-mobile, running this from within the
|
|
|
|
# checked out source directory (not your build directory) should do the
|
|
|
|
# trick - you can also run this to update to the latest upstream when
|
|
|
|
# you don't want to rerun the whole build.sh script.
|
|
|
|
|
|
|
|
SRC=$(cd .. ; pwd)
|
|
|
|
|
2016-04-05 05:02:03 +00:00
|
|
|
if [ ! -d "$SRC/subsurface" ] || [ ! -d "mobile-widgets" ] || [ ! -d "core" ] ; then
|
2016-01-08 17:55:32 +00:00
|
|
|
echo "please start this script from the Subsurface source directory (which needs to be named \"subsurface\")."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-04-02 01:11:56 +00:00
|
|
|
if [ "$1" = "-nopull" ] ; then
|
|
|
|
NOPULL=1
|
|
|
|
fi
|
|
|
|
|
2016-03-10 13:40:19 +00:00
|
|
|
# now bring in the latest Kirigami mobile components plus a couple of icons that we need
|
2016-01-08 17:55:32 +00:00
|
|
|
# first, get the latest from upstream
|
|
|
|
# yes, this is a bit overkill as we clone a lot of stuff for just a few files, but this way
|
|
|
|
# we stop having to manually merge our code with upstream all the time
|
|
|
|
# as we get closer to shipping a production version we'll likely check out specific tags
|
|
|
|
# or SHAs from upstream
|
|
|
|
cd $SRC
|
2016-03-31 23:10:24 +00:00
|
|
|
if [ ! -d kirigami ] ; then
|
2017-04-15 10:33:38 +00:00
|
|
|
git clone -b master https://github.com/KDE/kirigami.git
|
2016-01-08 17:55:32 +00:00
|
|
|
fi
|
2016-04-02 01:11:56 +00:00
|
|
|
if [ "$NOPULL" = "" ] ; then
|
|
|
|
pushd kirigami
|
2017-03-31 14:15:14 +00:00
|
|
|
git checkout master
|
|
|
|
git pull origin master
|
2017-10-04 15:20:14 +00:00
|
|
|
# if we want to pin a specific Kirigami version, we can do this here
|
2018-02-21 07:57:31 +00:00
|
|
|
git checkout 38a9dec7317945e5751c86a6c54de787c261e024
|
2016-04-02 01:11:56 +00:00
|
|
|
popd
|
|
|
|
fi
|
2016-01-08 17:55:32 +00:00
|
|
|
if [ ! -d breeze-icons ] ; then
|
2017-11-27 21:40:25 +00:00
|
|
|
git clone https://github.com/kde/breeze-icons
|
2016-01-08 17:55:32 +00:00
|
|
|
fi
|
2016-04-02 01:11:56 +00:00
|
|
|
if [ "$NOPULL" = "" ] ; then
|
|
|
|
pushd breeze-icons
|
|
|
|
git pull
|
|
|
|
popd
|
|
|
|
fi
|
2016-01-08 17:55:32 +00:00
|
|
|
|
|
|
|
# now copy the components and a couple of icons into plae
|
2016-04-05 05:02:03 +00:00
|
|
|
MC=$SRC/subsurface/mobile-widgets/qml/kirigami
|
2016-06-22 16:17:25 +00:00
|
|
|
PMMC=kirigami
|
2016-01-08 17:55:32 +00:00
|
|
|
BREEZE=breeze-icons
|
|
|
|
|
|
|
|
rm -rf $MC
|
|
|
|
mkdir -p $MC/icons
|
2016-03-31 23:10:24 +00:00
|
|
|
cp -R $PMMC/* $MC/
|
2016-04-01 21:40:07 +00:00
|
|
|
|
2018-03-08 19:16:24 +00:00
|
|
|
cp $BREEZE/icons/actions/22/map-globe.svg $MC/icons
|
2016-01-08 17:55:32 +00:00
|
|
|
cp $BREEZE/icons/actions/24/dialog-cancel.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/distribute-horizontal-x.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/document-edit.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/document-save.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/go-next.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/go-previous.svg $MC/icons
|
2017-06-22 15:52:33 +00:00
|
|
|
cp $BREEZE/icons/actions/24/go-up.svg $MC/icons
|
2016-01-08 17:55:32 +00:00
|
|
|
cp $BREEZE/icons/actions/16/view-readermode.svg $MC/icons
|
2016-01-09 05:48:53 +00:00
|
|
|
cp $BREEZE/icons/actions/24/application-menu.svg $MC/icons
|
2016-01-09 07:17:48 +00:00
|
|
|
cp $BREEZE/icons/actions/22/gps.svg $MC/icons
|
2016-01-09 07:16:19 +00:00
|
|
|
cp $BREEZE/icons/actions/24/trash-empty.svg $MC/icons
|
2016-04-02 03:30:28 +00:00
|
|
|
cp $BREEZE/icons/actions/24/list-add.svg $MC/icons
|
2016-06-12 14:31:14 +00:00
|
|
|
cp $BREEZE/icons/actions/22/handle-left.svg $MC/icons
|
2017-07-14 13:41:00 +00:00
|
|
|
cp $BREEZE/icons/actions/22/handle-right.svg $MC/icons
|
2017-10-10 04:09:54 +00:00
|
|
|
cp $BREEZE/icons/actions/22/overflow-menu.svg $MC/icons
|
2016-01-08 17:55:32 +00:00
|
|
|
|
2017-01-02 20:55:13 +00:00
|
|
|
# kirigami now needs the breeze-icons internally as well
|
|
|
|
pushd $MC
|
|
|
|
ln -s $SRC/$BREEZE .
|
2018-02-15 09:44:13 +00:00
|
|
|
|
|
|
|
# do not show the action buttons when the keyboard is open
|
2017-08-01 16:21:11 +00:00
|
|
|
sed -i -e "s/visible: root.action/visible: root.action \&\& \!Qt.inputMethod.visible/g" src/controls/private/ActionButton.qml
|
2017-10-04 19:35:33 +00:00
|
|
|
sed -i -e "s/visible: root.leftAction/visible: root.leftAction \&\& \!Qt.inputMethod.visible/g" src/controls/private/ActionButton.qml
|
|
|
|
sed -i -e "s/visible: root.rightAction/visible: root.rightAction \&\& \!Qt.inputMethod.visible/g" src/controls/private/ActionButton.qml
|
2018-02-15 09:44:13 +00:00
|
|
|
|
|
|
|
# another hack. Do not include the Kirigami resources (on static build). It causes
|
|
|
|
# double defined symbols in our setting. I would like a nicer fix for this
|
|
|
|
# issue, but failed to find one. For example, not adding the resource in
|
|
|
|
# our build causes the qrc file not to be generated. Manual generation
|
|
|
|
# of the resource file (using rcc) introduces the double symbols again.
|
|
|
|
# so it seems some Kirigami weirdness (but their staticcmake example compiles
|
|
|
|
# correctly).
|
|
|
|
sed -i -e "s/#include <qrc_kirigami.cpp>/\/\/#include <qrc_kirigami.cpp>/" src/kirigamiplugin.cpp
|
2017-01-02 20:55:13 +00:00
|
|
|
popd
|
|
|
|
|
2016-03-31 23:10:24 +00:00
|
|
|
echo org.kde.plasma.kirigami synced from upstream
|