Merge lp:~anneonyme017/tuxdungeon/i18n into lp:~jorik-vannielen/tuxdungeon/tuxdungeon

Proposed by Anne017
Status: Merged
Merged at revision: 2
Proposed branch: lp:~anneonyme017/tuxdungeon/i18n
Merge into: lp:~jorik-vannielen/tuxdungeon/tuxdungeon
Diff against target: 1823 lines (+1004/-463)
13 files modified
About.qml (+4/-4)
BlackMountain.qml (+1/-1)
BrownMountain.qml (+1/-1)
Game.qml (+16/-16)
HomePage.qml (+10/-10)
Introduction.qml (+2/-2)
LevelSelect.qml (+9/-9)
SettingsPage.qml (+3/-3)
TuxDungeon.qmlproject.user (+66/-404)
TuxDungeon.qmlproject.user.3.2-pre1 (+542/-0)
VictoryPage.qml (+6/-6)
po/fr.po (+186/-0)
po/tuxdungeon.pot (+158/-7)
To merge this branch: bzr merge lp:~anneonyme017/tuxdungeon/i18n
Reviewer Review Type Date Requested Status
jorik Approve
Review via email: mp+313554@code.launchpad.net

Description of the change

Hello,

Here is a proposal of internationalization to solve this bug:
https://bugs.launchpad.net/tuxdungeon/+bug/1547952

I also have attached a translation in French.
Since it is the first time I use Bazaar, let me know if everything is fine.

Best regards.
Anne

To post a comment you must log in.
Revision history for this message
jorik (jorik-vannielen) wrote :

Hi Anne,

Thank you very much for your work! I myself didn't know how to add internationalization, so this is a great help!
I´ll try to merge it. Although I'm not really familiar with bazaar, I think I will get it done.
Thanks again and I'll try to make the translations for my other app Click the Cookie work also.

Jorik

review: Approve
Revision history for this message
Anne017 (anneonyme017) wrote :

You're welcome :)

Here are two link to learn how to internationalize your app:
https://developer.ubuntu.com/en/phone/apps/qml/tutorials/internationalizing-your-app/
https://www.youtube.com/watch?v=wpPyQ4tIUiY

Since you approved this request, the changes have been automatically merged into ~jorik-vannielen/tuxdungeon/tuxdungeon, without any action on Bazaar.

Could you also open the translations in Launchpad for this project?
It is not done currently: https://translations.launchpad.net/tuxdungeon
This way the translations could be more easily reviewed by Ubuntu Translators (without entering into code).
Here is a link explaining how to do this very easily:
https://wiki.ubuntu.com/Translations/LpProjectConfiguration

Revision history for this message
Anne017 (anneonyme017) wrote :

For the "Click the cookie" app, multiple translations are already available (I have myself participate a year ago to the French one):
https://translations.launchpad.net/clickthecookie

There is only a bug opened to improve the internationalization of some strings especially for plural forms (this is not an issue in French):
https://bugs.launchpad.net/clickthecookie/+bug/1492509

Let me know if you have questions about it.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'About.qml'
--- About.qml 2015-10-23 15:37:55 +0000
+++ About.qml 2016-12-19 17:05:52 +0000
@@ -4,7 +4,7 @@
44
5Page{5Page{
6 id: aboutPage6 id: aboutPage
7 title: "About"7 title: i18n.tr("About")
8 visible: false8 visible: false
99
1010
@@ -24,7 +24,7 @@
2424
25 Text {25 Text {
26 id: appName26 id: appName
27 text: "Tux Dungeon"27 text: i18n.tr("Tux Dungeon")
28 font.pointSize: 2528 font.pointSize: 25
29 horizontalAlignment: Text.AlignHCenter29 horizontalAlignment: Text.AlignHCenter
30 color: "white"30 color: "white"
@@ -35,7 +35,7 @@
35 }35 }
36 Text {36 Text {
37 id: infoText37 id: infoText
38 text: "This application is made by Jorik van Nielen. The sourcecode is available at Launchpad.\nDo you like this app? Please rate in the Ubuntu Store"38 text: i18n.tr("This application is made by Jorik van Nielen. The sourcecode is available at Launchpad.\nDo you like this app? Please rate in the Ubuntu Store")
39 font.pointSize: 2039 font.pointSize: 20
40 horizontalAlignment: Text.AlignHCenter40 horizontalAlignment: Text.AlignHCenter
41 color: "white"41 color: "white"
@@ -50,7 +50,7 @@
5050
51 Button{51 Button{
52 id: tutorialButton52 id: tutorialButton
53 text: "Tutorial"53 text: i18n.tr("Tutorial")
54 color: UbuntuColors.orange54 color: UbuntuColors.orange
55 anchors{55 anchors{
56 top: infoText.bottom56 top: infoText.bottom
5757
=== modified file 'BlackMountain.qml'
--- BlackMountain.qml 2015-10-23 15:37:55 +0000
+++ BlackMountain.qml 2016-12-19 17:05:52 +0000
@@ -203,5 +203,5 @@
203 }203 }
204 }204 }
205205
206 MyHeader{id: theHeader; backPage:"LevelSelect.qml"; title:"The black mountain"; colorb:"#E6E6E6"; colorf:"black"}206 MyHeader{id: theHeader; backPage:"LevelSelect.qml"; title:i18n.tr("The black mountain"); colorb:"#E6E6E6"; colorf:"black"}
207}207}
208208
=== modified file 'BrownMountain.qml'
--- BrownMountain.qml 2015-10-23 15:37:55 +0000
+++ BrownMountain.qml 2016-12-19 17:05:52 +0000
@@ -203,5 +203,5 @@
203 }203 }
204 }204 }
205205
206 MyHeader{id: theHeader; backPage:"LevelSelect.qml"; title:"The brown mountain"; colorb:"#E6E6E6"; colorf:"black"}206 MyHeader{id: theHeader; backPage:"LevelSelect.qml"; title:i18n.tr("The brown mountain"); colorb:"#E6E6E6"; colorf:"black"}
207}207}
208208
=== modified file 'Game.qml'
--- Game.qml 2015-10-23 15:37:55 +0000
+++ Game.qml 2016-12-19 17:05:52 +0000
@@ -11,7 +11,7 @@
1111
12Page{12Page{
13 id: gamePage13 id: gamePage
14 title: "Level " +lvl+ ", floor " + floor +"/"+ floors14 title: i18n.tr("Level ") +lvl+ i18n.tr(", floor ") + floor +i18n.tr("/")+ floors
1515
1616
17 property double lvl: 017 property double lvl: 0
@@ -598,23 +598,23 @@
598 }598 }
599599
600 ListItem.Header {600 ListItem.Header {
601 text: "Floor completed!"601 text: i18n.tr("Floor completed!")
602602
603 }603 }
604604
605 ListItem.Standard {605 ListItem.Standard {
606 text: "Monsters slain: "+ gamePage.monstersSlain606 text: i18n.tr("Monsters slain: ")+ gamePage.monstersSlain
607 }607 }
608608
609 ListItem.Standard {609 ListItem.Standard {
610 text: "Coins collected: "+ gamePage.coinsCollected610 text: i18n.tr("Coins collected: ")+ gamePage.coinsCollected
611 }611 }
612612
613613
614 ListItem.SingleControl {614 ListItem.SingleControl {
615 highlightWhenPressed: false615 highlightWhenPressed: false
616 control: Button {616 control: Button {
617 text: "Next floor"617 text: i18n.tr("Next floor")
618 color: UbuntuColors.green618 color: UbuntuColors.green
619619
620620
@@ -653,7 +653,7 @@
653 ListItem.SingleControl {653 ListItem.SingleControl {
654 highlightWhenPressed: false654 highlightWhenPressed: false
655 control: Button {655 control: Button {
656 text: "Continue in this dungeon"656 text: i18n.tr("Continue in this dungeon")
657 color: UbuntuColors.orange657 color: UbuntuColors.orange
658658
659659
@@ -681,18 +681,18 @@
681 }681 }
682682
683 ListItem.Header {683 ListItem.Header {
684 text: "Game over!"684 text: i18n.tr("Game over!")
685685
686 }686 }
687 ListItem.Standard{687 ListItem.Standard{
688 text: "You have no health left...\nCollect coins to buy a more powerfull\nTux and try again!"688 text: i18n.tr("You have no health left...\nCollect coins to buy a more powerfull\nTux and try again!")
689689
690690
691 }691 }
692 ListItem.SingleControl {692 ListItem.SingleControl {
693 highlightWhenPressed: false693 highlightWhenPressed: false
694 control: Button {694 control: Button {
695 text: "Quit"695 text: i18n.tr("Quit")
696 color: UbuntuColors.orange696 color: UbuntuColors.orange
697697
698698
699699
=== modified file 'HomePage.qml'
--- HomePage.qml 2015-10-23 15:37:55 +0000
+++ HomePage.qml 2016-12-19 17:05:52 +0000
@@ -64,7 +64,7 @@
64 Text {64 Text {
65 id: titleText65 id: titleText
66 width: parent.width66 width: parent.width
67 text: "Tux Dungeon"67 text: i18n.tr("Tux Dungeon")
68 font.pixelSize: main.height/1268 font.pixelSize: main.height/12
69 anchors.centerIn: titleRec69 anchors.centerIn: titleRec
70 horizontalAlignment: Text.AlignHCenter70 horizontalAlignment: Text.AlignHCenter
@@ -313,17 +313,17 @@
313 text: tuxList.currentItem.tuxName}313 text: tuxList.currentItem.tuxName}
314 ListItem.Standard{314 ListItem.Standard{
315 highlightWhenPressed: false315 highlightWhenPressed: false
316 text: "Price: " + tuxList.currentItem.tuxPrice}316 text: i18n.tr("Price: ") + tuxList.currentItem.tuxPrice}
317 ListItem.Standard{317 ListItem.Standard{
318 highlightWhenPressed: false318 highlightWhenPressed: false
319 text: "Health: " + tuxList.currentItem.tuxLives}319 text: i18n.tr("Health: ") + tuxList.currentItem.tuxLives}
320 ListItem.Standard{320 ListItem.Standard{
321 highlightWhenPressed: false321 highlightWhenPressed: false
322 text: "Damage: " + tuxList.currentItem.tuxAttack}322 text: i18n.tr("Damage: ") + tuxList.currentItem.tuxAttack}
323 ListItem.SingleControl{323 ListItem.SingleControl{
324 highlightWhenPressed: false324 highlightWhenPressed: false
325 control: Button{325 control: Button{
326 text: "Unlock"326 text: i18n.tr("Unlock")
327 color: mainView.coins>=tuxList.currentItem.tuxPrice?"green":"red"327 color: mainView.coins>=tuxList.currentItem.tuxPrice?"green":"red"
328328
329329
@@ -371,7 +371,7 @@
371 ListItem.SingleControl {371 ListItem.SingleControl {
372 highlightWhenPressed: false372 highlightWhenPressed: false
373 control: Button {373 control: Button {
374 text: "Close"374 text: i18n.tr("Close")
375375
376 onClicked: PopupUtils.close(tuxInfoPopover)376 onClicked: PopupUtils.close(tuxInfoPopover)
377 }377 }
378378
=== modified file 'Introduction.qml'
--- Introduction.qml 2015-10-23 15:37:55 +0000
+++ Introduction.qml 2016-12-19 17:05:52 +0000
@@ -105,7 +105,7 @@
105 color: "grey"105 color: "grey"
106 fontSize: "small"106 fontSize: "small"
107 width: contentWidth107 width: contentWidth
108 text: "Skip"108 text: i18n.tr("Skip")
109 horizontalAlignment: Text.AlignRight109 horizontalAlignment: Text.AlignRight
110 visible: listView.currentIndex!==listView.count-1110 visible: listView.currentIndex!==listView.count-1
111111
@@ -152,7 +152,7 @@
152 }152 }
153153
154 Label{154 Label{
155 text: "finish"155 text: i18n.tr("finish")
156 font.pixelSize: parent.height/2156 font.pixelSize: parent.height/2
157 anchors{157 anchors{
158 right: parent.right158 right: parent.right
159159
=== modified file 'LevelSelect.qml'
--- LevelSelect.qml 2015-10-23 15:37:55 +0000
+++ LevelSelect.qml 2016-12-19 17:05:52 +0000
@@ -95,7 +95,7 @@
9595
96 Text {96 Text {
97 id: titleBrown97 id: titleBrown
98 text: "The brown mountain"98 text: i18n.tr("The brown mountain")
99 anchors{99 anchors{
100100
101 left: brownMountain.right101 left: brownMountain.right
@@ -124,7 +124,7 @@
124124
125 Text {125 Text {
126 id: infoBrownMountain126 id: infoBrownMountain
127 text: "Explore the dungeons of the brown mountain"127 text: i18n.tr("Explore the dungeons of the brown mountain")
128 font.pointSize: 20128 font.pointSize: 20
129 font.weight: Font.Light129 font.weight: Font.Light
130 wrapMode: Text.WordWrap130 wrapMode: Text.WordWrap
@@ -141,7 +141,7 @@
141141
142 Text {142 Text {
143 id: brownDifi143 id: brownDifi
144 text: "Dificulty: 1"144 text: i18n.tr("Difficulty: 1")
145 font.weight: Font.Light145 font.weight: Font.Light
146 font.pointSize: 20146 font.pointSize: 20
147 wrapMode: Text.WordWrap147 wrapMode: Text.WordWrap
@@ -156,7 +156,7 @@
156 }156 }
157 Text {157 Text {
158 id: brownCompleted158 id: brownCompleted
159 text: "Levels completed: "+ mainView.brownCompleted + "/30"159 text: i18n.tr("Levels completed: ")+ mainView.brownCompleted + "/30"
160 font.weight: Font.Light160 font.weight: Font.Light
161 font.pointSize: 20161 font.pointSize: 20
162 wrapMode: Text.WordWrap162 wrapMode: Text.WordWrap
@@ -217,7 +217,7 @@
217217
218 Text {218 Text {
219 id: titleBlack219 id: titleBlack
220 text: "The brown mountain"220 text: i18n.tr("The brown mountain")
221 anchors{221 anchors{
222222
223 left: blackMountain.right223 left: blackMountain.right
@@ -246,7 +246,7 @@
246246
247 Text {247 Text {
248 id: infoBlackMountain248 id: infoBlackMountain
249 text: "Explore the dungeons of the dark, black mountain"249 text: i18n.tr("Explore the dungeons of the dark, black mountain")
250 font.pointSize: 20250 font.pointSize: 20
251 font.weight: Font.Light251 font.weight: Font.Light
252 wrapMode: Text.WordWrap252 wrapMode: Text.WordWrap
@@ -263,7 +263,7 @@
263263
264 Text {264 Text {
265 id: blackDifi265 id: blackDifi
266 text: "Dificulty: 2"266 text: i18n.tr("Difficulty: 2")
267 font.weight: Font.Light267 font.weight: Font.Light
268 font.pointSize: 20268 font.pointSize: 20
269 wrapMode: Text.WordWrap269 wrapMode: Text.WordWrap
@@ -278,7 +278,7 @@
278 }278 }
279 Text {279 Text {
280 id: blackCompleted280 id: blackCompleted
281 text: "Levels completed: "+ mainView.blackCompleted + "/30"281 text: i18n.tr("Levels completed: ")+ mainView.blackCompleted + "/30"
282 font.weight: Font.Light282 font.weight: Font.Light
283 font.pointSize: 20283 font.pointSize: 20
284 wrapMode: Text.WordWrap284 wrapMode: Text.WordWrap
@@ -309,7 +309,7 @@
309 }309 }
310 }310 }
311311
312 MyHeader{backPage:"HomePage.qml"; title:"Select levelpack"; colorb: "#2E9AFE"}312 MyHeader{backPage:"HomePage.qml"; title:i18n.tr("Select levelpack"); colorb: "#2E9AFE"}
313 }313 }
314314
315}315}
316316
=== modified file 'SettingsPage.qml'
--- SettingsPage.qml 2015-10-23 15:37:55 +0000
+++ SettingsPage.qml 2016-12-19 17:05:52 +0000
@@ -6,7 +6,7 @@
66
7Page{7Page{
8 id: settingsPage8 id: settingsPage
9 title: "Settings"9 title: i18n.tr("Settings")
10 visible: false10 visible: false
1111
1212
@@ -23,7 +23,7 @@
2323
24 Text {24 Text {
25 id: mutedText25 id: mutedText
26 text: "Sound"26 text: i18n.tr("Sound")
27 color: "white"27 color: "white"
28 anchors{28 anchors{
29 verticalCenter: parent.verticalCenter29 verticalCenter: parent.verticalCenter
@@ -65,7 +65,7 @@
65 bottomMargin: units.gu(2)65 bottomMargin: units.gu(2)
66 }66 }
67 color: UbuntuColors.red67 color: UbuntuColors.red
68 text: "Reset and return"68 text: i18n.tr("Reset and return")
6969
7070
71 onClicked: {71 onClicked: {
7272
=== modified file 'TuxDungeon.qmlproject.user'
--- TuxDungeon.qmlproject.user 2015-10-23 15:37:55 +0000
+++ TuxDungeon.qmlproject.user 2016-12-19 17:05:52 +0000
@@ -1,8 +1,12 @@
1<?xml version="1.0" encoding="UTF-8"?>1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE QtCreatorProject>2<!DOCTYPE QtCreatorProject>
3<!-- Written by QtCreator 3.1.1, 2015-10-22T18:22:57. -->3<!-- Written by QtCreator 4.1.0, 2016-12-19T17:39:29. -->
4<qtcreator>4<qtcreator>
5 <data>5 <data>
6 <variable>EnvironmentId</variable>
7 <value type="QByteArray">{88c09cc7-159f-482a-a317-07019e810400}</value>
8 </data>
9 <data>
6 <variable>ProjectExplorer.Project.ActiveTarget</variable>10 <variable>ProjectExplorer.Project.ActiveTarget</variable>
7 <value type="int">0</value>11 <value type="int">0</value>
8 </data>12 </data>
@@ -36,6 +40,7 @@
36 <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>40 <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
37 <value type="bool" key="EditorConfiguration.ShowMargin">false</value>41 <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
38 <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>42 <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
43 <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
39 <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>44 <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
40 <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>45 <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
41 <value type="int" key="EditorConfiguration.TabSize">8</value>46 <value type="int" key="EditorConfiguration.TabSize">8</value>
@@ -54,402 +59,54 @@
54 <data>59 <data>
55 <variable>ProjectExplorer.Project.Target.0</variable>60 <variable>ProjectExplorer.Project.Target.0</variable>
56 <valuemap type="QVariantMap">61 <valuemap type="QVariantMap">
57 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop</value>62 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK for device-armhf (GCC armhf-ubuntu-sdk-16.04)</value>
58 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>63 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">UbuntuSDK for device-armhf (GCC armhf-ubuntu-sdk-16.04)</value>
59 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{77094d1d-9ebd-4e84-8ae0-689262a4cd8d}</value>64 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{7838fbc0-663f-4a71-b713-fbe6aa224f49}</value>
60 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>65 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
61 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>66 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
62 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>67 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
63 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">68 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
64 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-Desktop-default</value>69 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/vincent/tuxdungeon</value>
65 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">70 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
66 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">71 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
67 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>72 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
68 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Update translations template</value>73 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Update translations template</value>
69 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>74 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
70 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.UpdateTranslationTemplateMakeStep</value>75 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.UpdateTranslationTemplateMakeStep</value>
71 </valuemap>76 </valuemap>
72 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">77 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
73 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>78 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
74 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build translations</value>79 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build translations</value>
75 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>80 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
76 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildTranslationMakeStep</value>81 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildTranslationMakeStep</value>
77 </valuemap>82 </valuemap>
78 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>83 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
79 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>84 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Compiler</value>
80 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>85 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
81 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>86 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
82 </valuemap>87 </valuemap>
83 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">88 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
84 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>89 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
85 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>90 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Nettoyer</value>
86 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>91 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
87 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>92 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
88 </valuemap>93 </valuemap>
89 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>94 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
90 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>95 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
91 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>96 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
92 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>97 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>
93 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>98 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
94 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildConfiguration</value>99 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildConfiguration</value>
95 </valuemap>100 </valuemap>
96 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>101 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
97 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">102 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
98 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">103 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
99 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>104 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
100 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>105 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
101 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>106 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK Click build</value>
102 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>107 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
103 </valuemap>108 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.ClickPackageStep</value>
104 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>109 <value type="int" key="Ubuntu.UbuntuPackageStep.PackageMode">1</value>
105 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy locally</value>
106 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
107 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
108 </valuemap>
109 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
110 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
111 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
112 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
113 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
114 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
115 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
116 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
117 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
118 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
119 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
120 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
121 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
122 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
123 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
124 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
125 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
126 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
127 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
128 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
129 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
130 <value type="int">0</value>
131 <value type="int">1</value>
132 <value type="int">2</value>
133 <value type="int">3</value>
134 <value type="int">4</value>
135 <value type="int">5</value>
136 <value type="int">6</value>
137 <value type="int">7</value>
138 <value type="int">8</value>
139 <value type="int">9</value>
140 <value type="int">10</value>
141 <value type="int">11</value>
142 <value type="int">12</value>
143 <value type="int">13</value>
144 <value type="int">14</value>
145 </valuelist>
146 <value type="int" key="PE.EnvironmentAspect.Base">0</value>
147 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
148 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
149 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">QML Scene</value>
150 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QmlProjectManager.QmlRunConfiguration.QmlScene</value>
151 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.MainScript">CurrentFile</value>
152 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.QDeclarativeViewerArguments"></value>
153 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
154 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
155 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
156 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
157 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
158 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
159 </valuemap>
160 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.1">
161 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
162 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
163 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
164 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
165 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
166 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
167 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
168 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
169 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
170 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
171 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
172 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
173 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
174 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
175 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
176 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
177 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
178 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
179 <value type="int">0</value>
180 <value type="int">1</value>
181 <value type="int">2</value>
182 <value type="int">3</value>
183 <value type="int">4</value>
184 <value type="int">5</value>
185 <value type="int">6</value>
186 <value type="int">7</value>
187 <value type="int">8</value>
188 <value type="int">9</value>
189 <value type="int">10</value>
190 <value type="int">11</value>
191 <value type="int">12</value>
192 <value type="int">13</value>
193 <value type="int">14</value>
194 </valuelist>
195 <value type="int" key="PE.EnvironmentAspect.Base">-1</value>
196 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
197 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
198 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">QML Viewer</value>
199 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QmlProjectManager.QmlRunConfiguration</value>
200 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.MainScript">CurrentFile</value>
201 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.QDeclarativeViewerArguments"></value>
202 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
203 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
204 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
205 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
206 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
207 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
208 </valuemap>
209 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.2">
210 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
211 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
212 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
213 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
214 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
215 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
216 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
217 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
218 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
219 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
220 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
221 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
222 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
223 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
224 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
225 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
226 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
227 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
228 <value type="int">0</value>
229 <value type="int">1</value>
230 <value type="int">2</value>
231 <value type="int">3</value>
232 <value type="int">4</value>
233 <value type="int">5</value>
234 <value type="int">6</value>
235 <value type="int">7</value>
236 <value type="int">8</value>
237 <value type="int">9</value>
238 <value type="int">10</value>
239 <value type="int">11</value>
240 <value type="int">12</value>
241 <value type="int">13</value>
242 <value type="int">14</value>
243 </valuelist>
244 <value type="int" key="PE.EnvironmentAspect.Base">-1</value>
245 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
246 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
247 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">TuxDungeon</value>
248 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuRunConfiguration.AppTuxDungeon</value>
249 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
250 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
251 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
252 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
253 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
254 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
255 </valuemap>
256 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">3</value>
257 </valuemap>
258 </data>
259 <data>
260 <variable>ProjectExplorer.Project.Target.1</variable>
261 <valuemap type="QVariantMap">
262 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Ubuntu Device (GCC armhf-ubuntu-sdk-15.04-vivid)</value>
263 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Ubuntu Device (GCC armhf-ubuntu-sdk-15.04-vivid)</value>
264 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{ff7f2fa1-15d6-4372-9777-afeaa5756601}</value>
265 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
266 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
267 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
268 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
269 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-Ubuntu_Device_GCC_armhf_ubuntu_sdk_15_04_vivid-default</value>
270 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
271 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
272 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
273 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Update translations template</value>
274 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
275 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.UpdateTranslationTemplateMakeStep</value>
276 </valuemap>
277 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
278 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
279 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build translations</value>
280 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
281 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildTranslationMakeStep</value>
282 </valuemap>
283 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
284 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
285 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
286 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
287 </valuemap>
288 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
289 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
290 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
291 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
292 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
293 </valuemap>
294 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
295 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
296 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
297 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>
298 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
299 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildConfiguration</value>
300 </valuemap>
301 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
302 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
303 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
304 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
305 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
306 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK Click build</value>
307 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
308 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.ClickPackageStep</value>
309 <value type="int" key="Ubuntu.UbuntuPackageStep.PackageMode">2</value>
310 <value type="bool" key="Ubuntu.UbuntuPackageStep.TreatErrorsAsWarnings">false</value>
311 </valuemap>
312 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
313 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
314 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Upload files to Ubuntu Device</value>
315 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
316 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UploadStep</value>
317 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedFiles">
318 <value type="QString">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-Ubuntu_Device_GCC_armhf_ubuntu_sdk_15_04_vivid-default/tuxdungeon.jorik-vannielen_0.1_all.click</value>
319 <value type="QString">/usr/share/qtcreator/ubuntu/scripts/qtc_device_applaunch.py</value>
320 </valuelist>
321 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedHosts">
322 <value type="QString">127.0.0.1</value>
323 <value type="QString">127.0.0.1</value>
324 </valuelist>
325 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedRemotePaths">
326 <value type="QString">/tmp</value>
327 <value type="QString">/tmp</value>
328 </valuelist>
329 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedSysroots">
330 <value type="QString">/var/lib/schroot/chroots/click-ubuntu-sdk-15.04-armhf</value>
331 <value type="QString">/var/lib/schroot/chroots/click-ubuntu-sdk-15.04-armhf</value>
332 </valuelist>
333 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedTimes">
334 <value type="QDateTime">2015-10-22T18:07:16</value>
335 <value type="QDateTime">2015-10-22T18:07:16</value>
336 </valuelist>
337 </valuemap>
338 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
339 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
340 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
341 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
342 </valuemap>
343 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
344 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy to Ubuntu Device</value>
345 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
346 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.DeployConfiguration</value>
347 </valuemap>
348 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
349 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
350 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
351 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
352 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
353 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
354 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
355 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
356 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
357 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
358 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
359 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
360 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
361 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
362 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
363 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
364 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
365 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
366 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
367 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
368 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
369 <value type="int">0</value>
370 <value type="int">1</value>
371 <value type="int">2</value>
372 <value type="int">3</value>
373 <value type="int">4</value>
374 <value type="int">5</value>
375 <value type="int">6</value>
376 <value type="int">7</value>
377 <value type="int">8</value>
378 <value type="int">9</value>
379 <value type="int">10</value>
380 <value type="int">11</value>
381 <value type="int">12</value>
382 <value type="int">13</value>
383 <value type="int">14</value>
384 </valuelist>
385 <value type="int" key="PE.EnvironmentAspect.Base">1</value>
386 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
387 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
388 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">TuxDungeon</value>
389 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.RemoteRunConfiguration.AppTuxDungeon</value>
390 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
391 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
392 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
393 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
394 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
395 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
396 <value type="bool" key="UbuntuRemoteRunConfiguration.ForceInstall">false</value>
397 <value type="bool" key="UbuntuRemoteRunConfiguration.Uninstall">true</value>
398 </valuemap>
399 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
400 </valuemap>
401 </data>
402 <data>
403 <variable>ProjectExplorer.Project.Target.2</variable>
404 <valuemap type="QVariantMap">
405 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK for i386 (GCC ubuntu-sdk-15.04-vivid)</value>
406 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">UbuntuSDK for i386 (GCC ubuntu-sdk-15.04-vivid)</value>
407 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{949f2a10-0849-481f-9fdc-78ec43f022ed}</value>
408 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
409 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
410 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
411 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
412 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-UbuntuSDK_for_i386_GCC_ubuntu_sdk_15_04_vivid-default</value>
413 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
414 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
415 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
416 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Update translations template</value>
417 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
418 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.UpdateTranslationTemplateMakeStep</value>
419 </valuemap>
420 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
421 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
422 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build translations</value>
423 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
424 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildTranslationMakeStep</value>
425 </valuemap>
426 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
427 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
428 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
429 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
430 </valuemap>
431 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
432 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
433 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
434 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
435 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
436 </valuemap>
437 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
438 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
439 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
440 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>
441 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
442 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildConfiguration</value>
443 </valuemap>
444 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
445 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
446 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
447 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
448 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
449 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK Click build</value>
450 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
451 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.ClickPackageStep</value>
452 <value type="int" key="Ubuntu.UbuntuPackageStep.PackageMode">2</value>
453 <value type="bool" key="Ubuntu.UbuntuPackageStep.TreatErrorsAsWarnings">false</value>110 <value type="bool" key="Ubuntu.UbuntuPackageStep.TreatErrorsAsWarnings">false</value>
454 </valuemap>111 </valuemap>
455 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">112 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
@@ -464,7 +121,7 @@
464 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedTimes"/>121 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedTimes"/>
465 </valuemap>122 </valuemap>
466 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>123 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
467 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>124 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Déploiement</value>
468 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>125 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
469 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>126 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
470 </valuemap>127 </valuemap>
@@ -476,6 +133,11 @@
476 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>133 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
477 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>134 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
478 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">135 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
136 <value type="bool" key="Analyzer.QmlProfiler.AggregateTraces">false</value>
137 <value type="bool" key="Analyzer.QmlProfiler.FlushEnabled">false</value>
138 <value type="uint" key="Analyzer.QmlProfiler.FlushInterval">1000</value>
139 <value type="QString" key="Analyzer.QmlProfiler.LastTraceFile"></value>
140 <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
479 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>141 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
480 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>142 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
481 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>143 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
@@ -529,14 +191,14 @@
529 </data>191 </data>
530 <data>192 <data>
531 <variable>ProjectExplorer.Project.TargetCount</variable>193 <variable>ProjectExplorer.Project.TargetCount</variable>
532 <value type="int">3</value>194 <value type="int">1</value>
533 </data>
534 <data>
535 <variable>ProjectExplorer.Project.Updater.EnvironmentId</variable>
536 <value type="QByteArray">{8c467843-8132-4277-995e-9769d40901c1}</value>
537 </data>195 </data>
538 <data>196 <data>
539 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>197 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
540 <value type="int">15</value>198 <value type="int">18</value>
199 </data>
200 <data>
201 <variable>Version</variable>
202 <value type="int">18</value>
541 </data>203 </data>
542</qtcreator>204</qtcreator>
543205
=== added file 'TuxDungeon.qmlproject.user.3.2-pre1'
--- TuxDungeon.qmlproject.user.3.2-pre1 1970-01-01 00:00:00 +0000
+++ TuxDungeon.qmlproject.user.3.2-pre1 2016-12-19 17:05:52 +0000
@@ -0,0 +1,542 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE QtCreatorProject>
3<!-- Written by QtCreator 3.1.1, 2015-10-22T18:22:57. -->
4<qtcreator>
5 <data>
6 <variable>ProjectExplorer.Project.ActiveTarget</variable>
7 <value type="int">0</value>
8 </data>
9 <data>
10 <variable>ProjectExplorer.Project.EditorSettings</variable>
11 <valuemap type="QVariantMap">
12 <value type="bool" key="EditorConfiguration.AutoIndent">true</value>
13 <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
14 <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
15 <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
16 <value type="QString" key="language">Cpp</value>
17 <valuemap type="QVariantMap" key="value">
18 <value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
19 </valuemap>
20 </valuemap>
21 <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
22 <value type="QString" key="language">QmlJS</value>
23 <valuemap type="QVariantMap" key="value">
24 <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
25 </valuemap>
26 </valuemap>
27 <value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
28 <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
29 <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
30 <value type="int" key="EditorConfiguration.IndentSize">4</value>
31 <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
32 <value type="int" key="EditorConfiguration.MarginColumn">80</value>
33 <value type="bool" key="EditorConfiguration.MouseHiding">true</value>
34 <value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
35 <value type="int" key="EditorConfiguration.PaddingMode">1</value>
36 <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
37 <value type="bool" key="EditorConfiguration.ShowMargin">false</value>
38 <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
39 <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
40 <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
41 <value type="int" key="EditorConfiguration.TabSize">8</value>
42 <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
43 <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
44 <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
45 <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
46 <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
47 <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
48 </valuemap>
49 </data>
50 <data>
51 <variable>ProjectExplorer.Project.PluginSettings</variable>
52 <valuemap type="QVariantMap"/>
53 </data>
54 <data>
55 <variable>ProjectExplorer.Project.Target.0</variable>
56 <valuemap type="QVariantMap">
57 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop</value>
58 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>
59 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{77094d1d-9ebd-4e84-8ae0-689262a4cd8d}</value>
60 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
61 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
62 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
63 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
64 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-Desktop-default</value>
65 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
66 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
67 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
68 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Update translations template</value>
69 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
70 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.UpdateTranslationTemplateMakeStep</value>
71 </valuemap>
72 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
73 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
74 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build translations</value>
75 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
76 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildTranslationMakeStep</value>
77 </valuemap>
78 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
79 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
80 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
81 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
82 </valuemap>
83 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
84 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
85 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
86 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
87 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
88 </valuemap>
89 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
90 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
91 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
92 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>
93 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
94 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildConfiguration</value>
95 </valuemap>
96 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
97 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
98 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
99 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
100 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
101 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
102 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
103 </valuemap>
104 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
105 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy locally</value>
106 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
107 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
108 </valuemap>
109 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
110 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
111 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
112 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
113 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
114 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
115 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
116 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
117 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
118 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
119 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
120 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
121 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
122 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
123 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
124 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
125 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
126 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
127 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
128 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
129 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
130 <value type="int">0</value>
131 <value type="int">1</value>
132 <value type="int">2</value>
133 <value type="int">3</value>
134 <value type="int">4</value>
135 <value type="int">5</value>
136 <value type="int">6</value>
137 <value type="int">7</value>
138 <value type="int">8</value>
139 <value type="int">9</value>
140 <value type="int">10</value>
141 <value type="int">11</value>
142 <value type="int">12</value>
143 <value type="int">13</value>
144 <value type="int">14</value>
145 </valuelist>
146 <value type="int" key="PE.EnvironmentAspect.Base">0</value>
147 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
148 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
149 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">QML Scene</value>
150 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QmlProjectManager.QmlRunConfiguration.QmlScene</value>
151 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.MainScript">CurrentFile</value>
152 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.QDeclarativeViewerArguments"></value>
153 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
154 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
155 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
156 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
157 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
158 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
159 </valuemap>
160 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.1">
161 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
162 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
163 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
164 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
165 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
166 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
167 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
168 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
169 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
170 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
171 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
172 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
173 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
174 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
175 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
176 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
177 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
178 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
179 <value type="int">0</value>
180 <value type="int">1</value>
181 <value type="int">2</value>
182 <value type="int">3</value>
183 <value type="int">4</value>
184 <value type="int">5</value>
185 <value type="int">6</value>
186 <value type="int">7</value>
187 <value type="int">8</value>
188 <value type="int">9</value>
189 <value type="int">10</value>
190 <value type="int">11</value>
191 <value type="int">12</value>
192 <value type="int">13</value>
193 <value type="int">14</value>
194 </valuelist>
195 <value type="int" key="PE.EnvironmentAspect.Base">-1</value>
196 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
197 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
198 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">QML Viewer</value>
199 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">QmlProjectManager.QmlRunConfiguration</value>
200 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.MainScript">CurrentFile</value>
201 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.QDeclarativeViewerArguments"></value>
202 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
203 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
204 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
205 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
206 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
207 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
208 </valuemap>
209 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.2">
210 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
211 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
212 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
213 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
214 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
215 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
216 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
217 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
218 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
219 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
220 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
221 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
222 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
223 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
224 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
225 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
226 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
227 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
228 <value type="int">0</value>
229 <value type="int">1</value>
230 <value type="int">2</value>
231 <value type="int">3</value>
232 <value type="int">4</value>
233 <value type="int">5</value>
234 <value type="int">6</value>
235 <value type="int">7</value>
236 <value type="int">8</value>
237 <value type="int">9</value>
238 <value type="int">10</value>
239 <value type="int">11</value>
240 <value type="int">12</value>
241 <value type="int">13</value>
242 <value type="int">14</value>
243 </valuelist>
244 <value type="int" key="PE.EnvironmentAspect.Base">-1</value>
245 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
246 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
247 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">TuxDungeon</value>
248 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuRunConfiguration.AppTuxDungeon</value>
249 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
250 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
251 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
252 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
253 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
254 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
255 </valuemap>
256 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">3</value>
257 </valuemap>
258 </data>
259 <data>
260 <variable>ProjectExplorer.Project.Target.1</variable>
261 <valuemap type="QVariantMap">
262 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Ubuntu Device (GCC armhf-ubuntu-sdk-15.04-vivid)</value>
263 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Ubuntu Device (GCC armhf-ubuntu-sdk-15.04-vivid)</value>
264 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{ff7f2fa1-15d6-4372-9777-afeaa5756601}</value>
265 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
266 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
267 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
268 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
269 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-Ubuntu_Device_GCC_armhf_ubuntu_sdk_15_04_vivid-default</value>
270 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
271 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
272 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
273 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Update translations template</value>
274 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
275 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.UpdateTranslationTemplateMakeStep</value>
276 </valuemap>
277 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
278 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
279 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build translations</value>
280 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
281 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildTranslationMakeStep</value>
282 </valuemap>
283 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
284 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
285 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
286 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
287 </valuemap>
288 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
289 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
290 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
291 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
292 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
293 </valuemap>
294 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
295 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
296 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
297 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>
298 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
299 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildConfiguration</value>
300 </valuemap>
301 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
302 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
303 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
304 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
305 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
306 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK Click build</value>
307 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
308 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.ClickPackageStep</value>
309 <value type="int" key="Ubuntu.UbuntuPackageStep.PackageMode">2</value>
310 <value type="bool" key="Ubuntu.UbuntuPackageStep.TreatErrorsAsWarnings">false</value>
311 </valuemap>
312 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
313 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
314 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Upload files to Ubuntu Device</value>
315 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
316 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UploadStep</value>
317 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedFiles">
318 <value type="QString">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-Ubuntu_Device_GCC_armhf_ubuntu_sdk_15_04_vivid-default/tuxdungeon.jorik-vannielen_0.1_all.click</value>
319 <value type="QString">/usr/share/qtcreator/ubuntu/scripts/qtc_device_applaunch.py</value>
320 </valuelist>
321 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedHosts">
322 <value type="QString">127.0.0.1</value>
323 <value type="QString">127.0.0.1</value>
324 </valuelist>
325 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedRemotePaths">
326 <value type="QString">/tmp</value>
327 <value type="QString">/tmp</value>
328 </valuelist>
329 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedSysroots">
330 <value type="QString">/var/lib/schroot/chroots/click-ubuntu-sdk-15.04-armhf</value>
331 <value type="QString">/var/lib/schroot/chroots/click-ubuntu-sdk-15.04-armhf</value>
332 </valuelist>
333 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedTimes">
334 <value type="QDateTime">2015-10-22T18:07:16</value>
335 <value type="QDateTime">2015-10-22T18:07:16</value>
336 </valuelist>
337 </valuemap>
338 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
339 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
340 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
341 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
342 </valuemap>
343 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
344 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy to Ubuntu Device</value>
345 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
346 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.DeployConfiguration</value>
347 </valuemap>
348 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
349 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
350 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
351 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
352 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
353 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
354 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
355 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
356 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
357 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
358 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
359 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
360 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
361 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
362 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
363 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
364 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
365 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
366 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
367 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
368 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
369 <value type="int">0</value>
370 <value type="int">1</value>
371 <value type="int">2</value>
372 <value type="int">3</value>
373 <value type="int">4</value>
374 <value type="int">5</value>
375 <value type="int">6</value>
376 <value type="int">7</value>
377 <value type="int">8</value>
378 <value type="int">9</value>
379 <value type="int">10</value>
380 <value type="int">11</value>
381 <value type="int">12</value>
382 <value type="int">13</value>
383 <value type="int">14</value>
384 </valuelist>
385 <value type="int" key="PE.EnvironmentAspect.Base">1</value>
386 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
387 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
388 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">TuxDungeon</value>
389 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.RemoteRunConfiguration.AppTuxDungeon</value>
390 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
391 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
392 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
393 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
394 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
395 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
396 <value type="bool" key="UbuntuRemoteRunConfiguration.ForceInstall">false</value>
397 <value type="bool" key="UbuntuRemoteRunConfiguration.Uninstall">true</value>
398 </valuemap>
399 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
400 </valuemap>
401 </data>
402 <data>
403 <variable>ProjectExplorer.Project.Target.2</variable>
404 <valuemap type="QVariantMap">
405 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK for i386 (GCC ubuntu-sdk-15.04-vivid)</value>
406 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">UbuntuSDK for i386 (GCC ubuntu-sdk-15.04-vivid)</value>
407 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{949f2a10-0849-481f-9fdc-78ec43f022ed}</value>
408 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
409 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
410 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
411 <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
412 <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/jorik/Documenten/ubuntutouchapps/build-TuxDungeon-UbuntuSDK_for_i386_GCC_ubuntu_sdk_15_04_vivid-default</value>
413 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
414 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
415 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
416 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Update translations template</value>
417 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
418 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.UpdateTranslationTemplateMakeStep</value>
419 </valuemap>
420 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
421 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
422 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build translations</value>
423 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
424 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildTranslationMakeStep</value>
425 </valuemap>
426 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
427 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
428 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
429 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
430 </valuemap>
431 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
432 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
433 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
434 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
435 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
436 </valuemap>
437 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
438 <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
439 <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
440 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>
441 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
442 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UbuntuQml.BuildConfiguration</value>
443 </valuemap>
444 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">1</value>
445 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
446 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
447 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
448 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
449 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">UbuntuSDK Click build</value>
450 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
451 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.ClickPackageStep</value>
452 <value type="int" key="Ubuntu.UbuntuPackageStep.PackageMode">2</value>
453 <value type="bool" key="Ubuntu.UbuntuPackageStep.TreatErrorsAsWarnings">false</value>
454 </valuemap>
455 <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1">
456 <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
457 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Upload files to Ubuntu Device</value>
458 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
459 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.UploadStep</value>
460 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedFiles"/>
461 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedHosts"/>
462 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedRemotePaths"/>
463 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedSysroots"/>
464 <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedTimes"/>
465 </valuemap>
466 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">2</value>
467 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
468 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
469 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
470 </valuemap>
471 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
472 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy to Ubuntu Device</value>
473 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
474 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.DeployConfiguration</value>
475 </valuemap>
476 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
477 <valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
478 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
479 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
480 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
481 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
482 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
483 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
484 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
485 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
486 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
487 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
488 <value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
489 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
490 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
491 <value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
492 <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
493 <value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
494 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
495 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
496 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
497 <value type="int">0</value>
498 <value type="int">1</value>
499 <value type="int">2</value>
500 <value type="int">3</value>
501 <value type="int">4</value>
502 <value type="int">5</value>
503 <value type="int">6</value>
504 <value type="int">7</value>
505 <value type="int">8</value>
506 <value type="int">9</value>
507 <value type="int">10</value>
508 <value type="int">11</value>
509 <value type="int">12</value>
510 <value type="int">13</value>
511 <value type="int">14</value>
512 </valuelist>
513 <value type="int" key="PE.EnvironmentAspect.Base">1</value>
514 <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
515 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
516 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">TuxDungeon</value>
517 <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">UbuntuProjectManager.RemoteRunConfiguration.AppTuxDungeon</value>
518 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
519 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
520 <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
521 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
522 <value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
523 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
524 <value type="bool" key="UbuntuRemoteRunConfiguration.ForceInstall">false</value>
525 <value type="bool" key="UbuntuRemoteRunConfiguration.Uninstall">true</value>
526 </valuemap>
527 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
528 </valuemap>
529 </data>
530 <data>
531 <variable>ProjectExplorer.Project.TargetCount</variable>
532 <value type="int">3</value>
533 </data>
534 <data>
535 <variable>ProjectExplorer.Project.Updater.EnvironmentId</variable>
536 <value type="QByteArray">{8c467843-8132-4277-995e-9769d40901c1}</value>
537 </data>
538 <data>
539 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
540 <value type="int">15</value>
541 </data>
542</qtcreator>
0543
=== modified file 'VictoryPage.qml'
--- VictoryPage.qml 2015-10-23 15:37:55 +0000
+++ VictoryPage.qml 2016-12-19 17:05:52 +0000
@@ -4,7 +4,7 @@
44
5Page{5Page{
6 id: victoryPage6 id: victoryPage
7 title: "Level Completed"7 title: i18n.tr("Level Completed")
88
9 property double mountain9 property double mountain
10 property string mountainName10 property string mountainName
@@ -36,7 +36,7 @@
36 wrapMode: Text.WordWrap36 wrapMode: Text.WordWrap
37 horizontalAlignment: Text.AlignHCenter37 horizontalAlignment: Text.AlignHCenter
3838
39 text: "Congratulations!\nYou have completed level "+ level+ " of the "+ victoryPage.mountainName+"."39 text: i18n.tr("Congratulations!\nYou have completed level ")+ level+ i18n.tr(" of the ")+ victoryPage.mountainName+"."
40 }40 }
41 Label{41 Label{
42 id: monsterLabel42 id: monsterLabel
@@ -50,7 +50,7 @@
50 wrapMode: Text.WordWrap50 wrapMode: Text.WordWrap
51 horizontalAlignment: Text.AlignHCenter51 horizontalAlignment: Text.AlignHCenter
5252
53 text: "Monsters slain: "+monstersSlain53 text: i18n.tr("Monsters slain: ")+monstersSlain
54 }54 }
55 Image{55 Image{
56 id: monsterImage56 id: monsterImage
@@ -76,7 +76,7 @@
76 wrapMode: Text.WordWrap76 wrapMode: Text.WordWrap
77 horizontalAlignment: Text.AlignHCenter77 horizontalAlignment: Text.AlignHCenter
7878
79 text: "Coins collected: "+coinsCollected79 text: i18n.tr("Coins collected: ")+coinsCollected
8080
8181
82 }82 }
@@ -105,7 +105,7 @@
105 wrapMode: Text.WordWrap105 wrapMode: Text.WordWrap
106 horizontalAlignment: Text.AlignHCenter106 horizontalAlignment: Text.AlignHCenter
107107
108 text: "New total coins: "+newTotalCoins108 text: i18n.tr("New total coins: ")+newTotalCoins
109 }109 }
110110
111 Image{111 Image{
@@ -159,7 +159,7 @@
159 Label{159 Label{
160 anchors.centerIn: parent160 anchors.centerIn: parent
161 color: "white"161 color: "white"
162 text: "complete"162 text: i18n.tr("complete")
163 font.pixelSize: parent.height/5163 font.pixelSize: parent.height/5
164164
165 }165 }
166166
=== added file 'po/fr.po'
--- po/fr.po 1970-01-01 00:00:00 +0000
+++ po/fr.po 2016-12-19 17:05:52 +0000
@@ -0,0 +1,186 @@
1# SOME DESCRIPTIVE TITLE.
2# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3# This file is distributed under the same license as the PACKAGE package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5#
6#, fuzzy
7msgid ""
8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2016-12-19 17:39+0100\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"
15"Language: fr\n"
16"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=CHARSET\n"
18"Content-Transfer-Encoding: 8bit\n"
19
20#: BlackMountain.qml:206
21msgid "The black mountain"
22msgstr "La montagne noire"
23
24#: Game.qml:14
25msgid "Level "
26msgstr "Niveau "
27
28#: Game.qml:14
29msgid ", floor "
30msgstr ", étage "
31
32#: Game.qml:14
33msgid "/"
34msgstr "/"
35
36#: Game.qml:601
37msgid "Floor completed!"
38msgstr "Étage terminé[nbsp]!"
39
40#: Game.qml:606 VictoryPage.qml:53
41msgid "Monsters slain: "
42msgstr "Monstres tués[nbsp]: "
43
44#: Game.qml:610 VictoryPage.qml:79
45msgid "Coins collected: "
46msgstr "Pièces collectées[nbsp]: "
47
48#: Game.qml:617
49msgid "Next floor"
50msgstr "Étage suivant"
51
52#: Game.qml:656
53msgid "Continue in this dungeon"
54msgstr "Continuer dans ce donjon"
55
56#: Game.qml:684
57msgid "Game over!"
58msgstr "Partie terminée[nbsp]!"
59
60#: Game.qml:688
61msgid ""
62"You have no health left...\n"
63"Collect coins to buy a more powerfull\n"
64"Tux and try again!"
65msgstr ""
66"Il ne vous reste plus de vie...\n"
67"Collectez des pièces pour acheter un Tux plus\n"
68"puissant et réessayez[nbsp]!"
69
70#: Game.qml:695
71msgid "Quit"
72msgstr "Quitter"
73
74#: VictoryPage.qml:7
75msgid "Level Completed"
76msgstr "Niveau terminé"
77
78#: VictoryPage.qml:39
79msgid ""
80"Congratulations!\n"
81"You have completed level "
82msgstr ""
83"Félicitations[nbsp]!\n"
84"Vous avez terminé le niveau "
85
86#: VictoryPage.qml:39
87msgid " of the "
88msgstr " de "
89
90#: VictoryPage.qml:108
91msgid "New total coins: "
92msgstr "Nouveau total de pièces[nbsp]: "
93
94#: VictoryPage.qml:162
95msgid "complete"
96msgstr "terminé"
97
98#: HomePage.qml:67 About.qml:27
99msgid "Tux Dungeon"
100msgstr "Le donjon de Tux"
101
102#: HomePage.qml:316
103msgid "Price: "
104msgstr "Prix[nbsp]: "
105
106#: HomePage.qml:319
107msgid "Health: "
108msgstr "Santé[nbsp]: "
109
110#: HomePage.qml:322
111msgid "Damage: "
112msgstr "Dégâts[nbsp]: "
113
114#: HomePage.qml:326
115msgid "Unlock"
116msgstr "Déverrouiller"
117
118#: HomePage.qml:374
119msgid "Close"
120msgstr "Fermer"
121
122#: SettingsPage.qml:9
123msgid "Settings"
124msgstr "Paramètres"
125
126#: SettingsPage.qml:26
127msgid "Sound"
128msgstr "Son"
129
130#: SettingsPage.qml:68
131msgid "Reset and return"
132msgstr "Réinitialisation et retour"
133
134#: BrownMountain.qml:206 LevelSelect.qml:98 LevelSelect.qml:220
135msgid "The brown mountain"
136msgstr "La montagne brune"
137
138#: LevelSelect.qml:127
139msgid "Explore the dungeons of the brown mountain"
140msgstr "Explorez les donjons de la montage brune"
141
142#: LevelSelect.qml:144
143msgid "Difficulty: 1"
144msgstr "Difficulté[nbsp]: 1"
145
146#: LevelSelect.qml:159 LevelSelect.qml:281
147msgid "Levels completed: "
148msgstr "Niveaux terminés[nbsp]: "
149
150#: LevelSelect.qml:249
151msgid "Explore the dungeons of the dark, black mountain"
152msgstr "Explorez les donjons de la montage noire"
153
154#: LevelSelect.qml:266
155msgid "Difficulty: 2"
156msgstr "Difficulté[nbsp]: 2"
157
158#: LevelSelect.qml:312
159msgid "Select levelpack"
160msgstr "Sélectionner un pack de niveaux"
161
162#: About.qml:7
163msgid "About"
164msgstr "À propos"
165
166#: About.qml:38
167msgid ""
168"This application is made by Jorik van Nielen. The sourcecode is available at "
169"Launchpad.\n"
170"Do you like this app? Please rate in the Ubuntu Store"
171msgstr ""
172"Cette application a été créée par Jorik van Nielen. Le code source est disponible sur "
173"Launchpad.\n"
174"Vous aimez cette application[nbsp]? Notez-la dans la logithèque d'Ubuntu"
175
176#: About.qml:53
177msgid "Tutorial"
178msgstr "Tutoriel"
179
180#: Introduction.qml:108
181msgid "Skip"
182msgstr "Ignorer"
183
184#: Introduction.qml:155
185msgid "finish"
186msgstr "terminé"
0187
=== modified file 'po/tuxdungeon.pot'
--- po/tuxdungeon.pot 2015-10-23 15:37:55 +0000
+++ po/tuxdungeon.pot 2016-12-19 17:05:52 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2015-10-17 11:54+0200\n"11"POT-Creation-Date: 2016-12-19 17:39+0100\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,11 +17,162 @@
17"Content-Type: text/plain; charset=CHARSET\n"17"Content-Type: text/plain; charset=CHARSET\n"
18"Content-Transfer-Encoding: 8bit\n"18"Content-Transfer-Encoding: 8bit\n"
1919
20#: Introduction.qml:7620#: BlackMountain.qml:206
21#, qt-format21msgid "The black mountain"
22msgid "Already used %1? <b>Skip the tutorial</b>"22msgstr ""
23msgstr ""23
2424#: Game.qml:14
25#: Introduction.qml:7625msgid "Level "
26msgstr ""
27
28#: Game.qml:14
29msgid ", floor "
30msgstr ""
31
32#: Game.qml:14
33msgid "/"
34msgstr ""
35
36#: Game.qml:601
37msgid "Floor completed!"
38msgstr ""
39
40#: Game.qml:606 VictoryPage.qml:53
41msgid "Monsters slain: "
42msgstr ""
43
44#: Game.qml:610 VictoryPage.qml:79
45msgid "Coins collected: "
46msgstr ""
47
48#: Game.qml:617
49msgid "Next floor"
50msgstr ""
51
52#: Game.qml:656
53msgid "Continue in this dungeon"
54msgstr ""
55
56#: Game.qml:684
57msgid "Game over!"
58msgstr ""
59
60#: Game.qml:688
61msgid ""
62"You have no health left...\n"
63"Collect coins to buy a more powerfull\n"
64"Tux and try again!"
65msgstr ""
66
67#: Game.qml:695
68msgid "Quit"
69msgstr ""
70
71#: VictoryPage.qml:7
72msgid "Level Completed"
73msgstr ""
74
75#: VictoryPage.qml:39
76msgid ""
77"Congratulations!\n"
78"You have completed level "
79msgstr ""
80
81#: VictoryPage.qml:39
82msgid " of the "
83msgstr ""
84
85#: VictoryPage.qml:108
86msgid "New total coins: "
87msgstr ""
88
89#: VictoryPage.qml:162
90msgid "complete"
91msgstr ""
92
93#: HomePage.qml:67 About.qml:27
94msgid "Tux Dungeon"
95msgstr ""
96
97#: HomePage.qml:316
98msgid "Price: "
99msgstr ""
100
101#: HomePage.qml:319
102msgid "Health: "
103msgstr ""
104
105#: HomePage.qml:322
106msgid "Damage: "
107msgstr ""
108
109#: HomePage.qml:326
110msgid "Unlock"
111msgstr ""
112
113#: HomePage.qml:374
114msgid "Close"
115msgstr ""
116
117#: SettingsPage.qml:9
118msgid "Settings"
119msgstr ""
120
121#: SettingsPage.qml:26
122msgid "Sound"
123msgstr ""
124
125#: SettingsPage.qml:68
126msgid "Reset and return"
127msgstr ""
128
129#: BrownMountain.qml:206 LevelSelect.qml:98 LevelSelect.qml:220
130msgid "The brown mountain"
131msgstr ""
132
133#: LevelSelect.qml:127
134msgid "Explore the dungeons of the brown mountain"
135msgstr ""
136
137#: LevelSelect.qml:144
138msgid "Difficulty: 1"
139msgstr ""
140
141#: LevelSelect.qml:159 LevelSelect.qml:281
142msgid "Levels completed: "
143msgstr ""
144
145#: LevelSelect.qml:249
146msgid "Explore the dungeons of the dark, black mountain"
147msgstr ""
148
149#: LevelSelect.qml:266
150msgid "Difficulty: 2"
151msgstr ""
152
153#: LevelSelect.qml:312
154msgid "Select levelpack"
155msgstr ""
156
157#: About.qml:7
158msgid "About"
159msgstr ""
160
161#: About.qml:38
162msgid ""
163"This application is made by Jorik van Nielen. The sourcecode is available at "
164"Launchpad.\n"
165"Do you like this app? Please rate in the Ubuntu Store"
166msgstr ""
167
168#: About.qml:53
169msgid "Tutorial"
170msgstr ""
171
172#: Introduction.qml:108
26msgid "Skip"173msgid "Skip"
27msgstr ""174msgstr ""
175
176#: Introduction.qml:155
177msgid "finish"
178msgstr ""

Subscribers

People subscribed via source and target branches

to all changes: