Re: problems with Kirigami on iOS

2017-01-05 Thread Martin Gysel
Am 03.01.2017 um 12:14 schrieb Marco Martin: > On Tuesday 03 January 2017, Dirk Hohndel wrote: >> but that doesn't appear to be sufficient, as the error message above seems >> to indicate... >> >> Is anyone else using Kirigami and Qt 5.7.1 on iOS and has figured out a way >> around that problem? >

Re: [PATCH 1/7] add simple script to generate a qrc containing all qml files

2016-08-19 Thread Martin Gysel
Am 19.08.2016 um 03:24 schrieb Aleix Pol: > Can you please upload the patches to phabricator.kde.org or > reviewboard.kde.org? > done > Thanks! > Aleix > > On Tue, Aug 16, 2016 at 8:23 PM, Martin Gysel <m...@bearsh.org> wrote: >> --

Re: more Kirigami patches

2016-08-19 Thread Martin Gysel
Am 18.08.2016 um 17:52 schrieb Marco Martin: > On Tuesday 16 August 2016 20:23:45 Martin Gysel wrote: >> Hi >> Here are some patches I have in my branch. >> It contains a script to (re)generate the qml file, one the generate a >> resource file with possibly used

Re: [PATCH 6/7] add kirigami icons as resource

2016-08-18 Thread Martin Gysel
Am 16.08.2016 um 21:27 schrieb Marco Martin: > did some comments inline but would be better if this was done in phabricator > > On Tuesday 16 August 2016 20:23:51 Martin Gysel wrote: >> alias="icons/document-decrypt.svg">breeze-icons/icons/actions/32/document-d &g

Re: more Kirigami patches

2016-08-16 Thread Martin Gysel
Am 16.08.2016 um 20:28 schrieb Marco Martin: > On Tuesday 16 August 2016 20:23:45 Martin Gysel wrote: >> Hi >> Here are some patches I have in my branch. >> It contains a script to (re)generate the qml file, one the generate a >> resource file with possibly used

more Kirigami patches

2016-08-16 Thread Martin Gysel
Hi Here are some patches I have in my branch. It contains a script to (re)generate the qml file, one the generate a resource file with possibly used icons and one to generaste a qmltypes file. It adds the icon resource to the pri file and updates the qml resource file. Furthermore the library

[PATCH 3/7] add script to gen a qmltypes file

2016-08-16 Thread Martin Gysel
--- scripts/gen_qmltypes.sh | 17 + 1 file changed, 17 insertions(+) create mode 100755 scripts/gen_qmltypes.sh diff --git a/scripts/gen_qmltypes.sh b/scripts/gen_qmltypes.sh new file mode 100755 index 000..4ea0bc7 --- /dev/null +++ b/scripts/gen_qmltypes.sh @@ -0,0 +1,17 @@

[PATCH 5/7] fix target/library path in qmake project file

2016-08-16 Thread Martin Gysel
--- kirigami.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kirigami.pro b/kirigami.pro index f7d6fe6..735376d 100644 --- a/kirigami.pro +++ b/kirigami.pro @@ -7,7 +7,7 @@ SOURCES += $$PWD/src/kirigamiplugin.cpp $$PWD/src/enums.cpp API_VER=1.0 -TARGET =

[PATCH 7/7] update qml resource file

2016-08-16 Thread Martin Gysel
--- kirigami.qrc | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kirigami.qrc b/kirigami.qrc index 63d64ac..fe4400f 100644 --- a/kirigami.qrc +++ b/kirigami.qrc @@ -7,12 +7,13 @@ src/controls/AbstractListItem.qml src/controls/SplitDrawer.qml

[PATCH 6/7] add kirigami icons as resource

2016-08-16 Thread Martin Gysel
--- kirigami-icons.qrc | 13 + kirigami.pri | 1 + 2 files changed, 14 insertions(+) create mode 100644 kirigami-icons.qrc diff --git a/kirigami-icons.qrc b/kirigami-icons.qrc new file mode 100644 index 000..7f3ffa9 --- /dev/null +++ b/kirigami-icons.qrc @@ -0,0 +1,13 @@

[PATCH 2/7] add script to find possible used icons in kirigami

2016-08-16 Thread Martin Gysel
--- scripts/gen_icons_qrc.sh | 59 1 file changed, 59 insertions(+) create mode 100755 scripts/gen_icons_qrc.sh diff --git a/scripts/gen_icons_qrc.sh b/scripts/gen_icons_qrc.sh new file mode 100755 index 000..dff68df --- /dev/null +++

[PATCH 4/7] improve kirigami dir detection

2016-08-16 Thread Martin Gysel
--- scripts/gen_icons_qrc.sh | 2 +- scripts/gen_qml_qrc.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/gen_icons_qrc.sh b/scripts/gen_icons_qrc.sh index dff68df..164b807 100755 --- a/scripts/gen_icons_qrc.sh +++ b/scripts/gen_icons_qrc.sh @@ -5,7 +5,7 @@

[PATCH 1/7] add simple script to generate a qrc containing all qml files

2016-08-16 Thread Martin Gysel
--- scripts/gen_qml_qrc.sh | 39 +++ 1 file changed, 39 insertions(+) create mode 100755 scripts/gen_qml_qrc.sh diff --git a/scripts/gen_qml_qrc.sh b/scripts/gen_qml_qrc.sh new file mode 100755 index 000..6e1c378 --- /dev/null +++ b/scripts/gen_qml_qrc.sh

Re: Kirigami patches

2016-08-16 Thread Martin Gysel
Am 16.08.2016 um 01:55 schrieb Dirk Hohndel: > It's pretty clear that no one ever tested the kirigami.pro qmake file. The > second patch I'm not 100% sure about, but it seems to match what the > documentation tells us SHOULD be done. maybe my understanding of the qt build system, tools and