Merge lp:~popey/memories-touch/add-packaging into lp:~sebastijan-kuzner/memories-touch/trunk

Status: Approved
Approved by: mr.incomplete
Approved revision: 2
Proposed branch: lp:~popey/memories-touch/add-packaging
Merge into: lp:~sebastijan-kuzner/memories-touch/trunk
Diff against target: 497 lines (+372/-9)
17 files modified
debian/changelog (+5/-0)
debian/compat (+1/-0)
debian/control (+14/-0)
debian/copyright (+29/-0)
debian/files (+1/-0)
debian/install (+26/-0)
debian/memories-touch.debhelper.log (+45/-0)
debian/memories-touch.substvars (+1/-0)
debian/memories-touch/DEBIAN/control (+10/-0)
debian/memories-touch/DEBIAN/md5sums (+44/-0)
debian/memories-touch/usr/share/applications/memories.desktop (+9/-0)
debian/memories-touch/usr/share/doc/memories-touch/copyright (+29/-0)
debian/rules (+13/-0)
debian/source/format (+1/-0)
memories.desktop (+7/-5)
memories.qmlproject.user (+74/-4)
memories.qmlproject.user.b8a2a5b (+63/-0)
To merge this branch: bzr merge lp:~popey/memories-touch/add-packaging
Reviewer Review Type Date Requested Status
mr.incomplete Pending
Review via email: mp+160299@code.launchpad.net

Description of the change

Attempt at adding packaging to memories, so we can get it in the collections ppa.

To post a comment you must log in.

Unmerged revisions

2. By Alan Pope 🍺🐧🐱 πŸ¦„

first attempt at packaging

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== added directory 'debian'
=== added file 'debian/changelog'
--- debian/changelog 1970-01-01 00:00:00 +0000
+++ debian/changelog 2013-04-23 08:48:28 +0000
@@ -0,0 +1,5 @@
1memories-touch (0.1) raring; urgency=low
2
3 * Initial Release.
4
5 -- Alan Pope <alan.pope@canonical.com> Tue, 23 Apr 2013 09:17:59 +0100
06
=== added file 'debian/compat'
--- debian/compat 1970-01-01 00:00:00 +0000
+++ debian/compat 2013-04-23 08:48:28 +0000
@@ -0,0 +1,1 @@
18
02
=== added file 'debian/control'
--- debian/control 1970-01-01 00:00:00 +0000
+++ debian/control 2013-04-23 08:48:28 +0000
@@ -0,0 +1,14 @@
1Source: memories-touch
2Section: games
3Priority: extra
4Maintainer: Alan Pope <alan.pope@canonical.com>
5Build-Depends: debhelper (>= 8.0.0)
6Standards-Version: 3.9.4
7Vcs-Bzr: https://code.launchpad.net/~sebastijan-kuzner/memories-touch/trunk
8
9Package: memories-touch
10Architecture: all
11Depends:${misc:Depends},qtdeclarative5-localstorage-plugin,qtdeclarative5-particles-plugin,qtdeclarative5-qtquick2-plugin,qtdeclarative5-ubuntu-ui-toolkit-plugin|qt-components-ubuntu,qtdeclarative5-window-plugin,qtdeclarative5-xmllistmodel-plugin,${shlibs:Depends},qmlscene
12Description: Simple pairs memory game
13 Match pairs of icons by tapping on them.
14
015
=== added file 'debian/copyright'
--- debian/copyright 1970-01-01 00:00:00 +0000
+++ debian/copyright 2013-04-23 08:48:28 +0000
@@ -0,0 +1,29 @@
1Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2Upstream-Name: memories-touch
3Source: https://code.launchpad.net/~sebastijan-kuzner/memories-touch/trunk
4
5Files: *
6Copyright: 2013 Sebastijan Kuzner <sebastijan.kuzner@gmail.com>
7License: GPL-3.0+
8
9Files: debian/*
10Copyright: 2013 Alan Pope <alan.pope@canonical.com>
11License: GPL-3.0+
12
13License: GPL-3.0+
14 This program is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18 .
19 This package is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23 .
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 .
27 On Debian systems, the complete text of the GNU General
28 Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
29
030
=== added file 'debian/files'
--- debian/files 1970-01-01 00:00:00 +0000
+++ debian/files 2013-04-23 08:48:28 +0000
@@ -0,0 +1,1 @@
1memories-touch_0.1_all.deb games extra
02
=== added file 'debian/install'
--- debian/install 1970-01-01 00:00:00 +0000
+++ debian/install 2013-04-23 08:48:28 +0000
@@ -0,0 +1,26 @@
1Surface.qml /usr/share/memories-touch
2memories.qml /usr/share/memories-touch
3gamelogic.js /usr/share/memories-touch
4Images /usr/share/memories-touch
5Images/16.svg /usr/share/memories-touch
6Images/2.png /usr/share/memories-touch
7Images/17.png /usr/share/memories-touch
8Images/14.png /usr/share/memories-touch
9Images/9.png /usr/share/memories-touch
10Images/3.png /usr/share/memories-touch
11Images/11.png /usr/share/memories-touch
12Images/8.png /usr/share/memories-touch
13Images/7.png /usr/share/memories-touch
14Images/12.png /usr/share/memories-touch
15Images/4.png /usr/share/memories-touch
16Images/5.png /usr/share/memories-touch
17Images/6.png /usr/share/memories-touch
18Images/10.png /usr/share/memories-touch
19Images/1.png /usr/share/memories-touch
20Images/13.png /usr/share/memories-touch
21Images/15.png /usr/share/memories-touch
22avatar@8.png /usr/share/memories-touch
23Card.qml /usr/share/memories-touch
24CurrentScore.qml /usr/share/memories-touch
25Result.qml /usr/share/memories-touch
26memories.desktop /usr/share/applications
027
=== added directory 'debian/memories-touch'
=== added file 'debian/memories-touch.debhelper.log'
--- debian/memories-touch.debhelper.log 1970-01-01 00:00:00 +0000
+++ debian/memories-touch.debhelper.log 2013-04-23 08:48:28 +0000
@@ -0,0 +1,45 @@
1dh_auto_configure
2dh_auto_build
3dh_auto_test
4dh_prep
5dh_installdirs
6dh_auto_install
7dh_install
8dh_installdocs
9dh_installchangelogs
10dh_installexamples
11dh_installman
12dh_installcatalogs
13dh_installcron
14dh_installdebconf
15dh_installemacsen
16dh_installifupdown
17dh_installinfo
18dh_pysupport
19dh_installinit
20dh_installmenu
21dh_installmime
22dh_installmodules
23dh_installlogcheck
24dh_installlogrotate
25dh_installpam
26dh_installppp
27dh_installudev
28dh_installwm
29dh_installxfonts
30dh_installgsettings
31dh_bugfiles
32dh_ucf
33dh_lintian
34dh_gconf
35dh_icons
36dh_perl
37dh_usrlocal
38dh_link
39dh_compress
40dh_fixperms
41dh_installdeb
42dh_gencontrol
43dh_md5sums
44dh_builddeb
45dh_builddeb
046
=== added file 'debian/memories-touch.substvars'
--- debian/memories-touch.substvars 1970-01-01 00:00:00 +0000
+++ debian/memories-touch.substvars 2013-04-23 08:48:28 +0000
@@ -0,0 +1,1 @@
1misc:Depends=
02
=== added directory 'debian/memories-touch/DEBIAN'
=== added file 'debian/memories-touch/DEBIAN/control'
--- debian/memories-touch/DEBIAN/control 1970-01-01 00:00:00 +0000
+++ debian/memories-touch/DEBIAN/control 2013-04-23 08:48:28 +0000
@@ -0,0 +1,10 @@
1Package: memories-touch
2Version: 0.1
3Architecture: all
4Maintainer: Alan Pope <alan.pope@canonical.com>
5Installed-Size: 203
6Depends: qtdeclarative5-localstorage-plugin, qtdeclarative5-particles-plugin, qtdeclarative5-qtquick2-plugin, qtdeclarative5-ubuntu-ui-toolkit-plugin | qt-components-ubuntu, qtdeclarative5-window-plugin, qtdeclarative5-xmllistmodel-plugin, qmlscene
7Section: games
8Priority: extra
9Description: Simple pairs memory game
10 Match pairs of icons by tapping on them.
011
=== added file 'debian/memories-touch/DEBIAN/md5sums'
--- debian/memories-touch/DEBIAN/md5sums 1970-01-01 00:00:00 +0000
+++ debian/memories-touch/DEBIAN/md5sums 2013-04-23 08:48:28 +0000
@@ -0,0 +1,44 @@
1ebe5aa57a0236f40c89c53f3f7d2b983 usr/share/applications/memories.desktop
21b09d5233fb8b93a7820597ed4a8ae1b usr/share/doc/memories-touch/changelog.gz
3182a9edd94f70b451a147f75fa0d82ba usr/share/doc/memories-touch/copyright
4ab5304fdea28dd72b5c1c706012092c4 usr/share/memories-touch/1.png
590ace301af3dd84f36a64bbabc0a4309 usr/share/memories-touch/10.png
6ee9205c01332b2c9e2f87a849b42f5f9 usr/share/memories-touch/11.png
797ed57dc84d1d5ae7e3cab80ba9544d1 usr/share/memories-touch/12.png
83461839a45ac97dc48c23b070d770025 usr/share/memories-touch/13.png
9a3a0b5e53ddbf2c158392dd5d1336be3 usr/share/memories-touch/14.png
104ec5ddbf3b2431558b2b0d74a1ede74e usr/share/memories-touch/15.png
111363e735ec26112890d0275686cd0cfc usr/share/memories-touch/16.svg
122b9aef2d2ec1a5d53786282af7b1192e usr/share/memories-touch/17.png
1349232d45c535a8a3a487a9edb79e92ea usr/share/memories-touch/2.png
147525a48ca5c777169bc1d35f940e782f usr/share/memories-touch/3.png
158877431f07ae09a1c3f0c075f8a7e6a7 usr/share/memories-touch/4.png
1649cbfed198c163e1eeddfe7567fac54e usr/share/memories-touch/5.png
178416c45613da5414f3a1f92707102283 usr/share/memories-touch/6.png
18932e4c1a257abf78a7fe2cf76b34746d usr/share/memories-touch/7.png
19fbacf6f2a5857f7999b575103be4db26 usr/share/memories-touch/8.png
20fce613e444b108ff5032af7948b10db7 usr/share/memories-touch/9.png
218865b771d4ad37c47f5067bcf8f17abb usr/share/memories-touch/Card.qml
22c2754d2314b751f637be01fc6b17d8f8 usr/share/memories-touch/CurrentScore.qml
23ab5304fdea28dd72b5c1c706012092c4 usr/share/memories-touch/Images/1.png
2490ace301af3dd84f36a64bbabc0a4309 usr/share/memories-touch/Images/10.png
25ee9205c01332b2c9e2f87a849b42f5f9 usr/share/memories-touch/Images/11.png
2697ed57dc84d1d5ae7e3cab80ba9544d1 usr/share/memories-touch/Images/12.png
273461839a45ac97dc48c23b070d770025 usr/share/memories-touch/Images/13.png
28a3a0b5e53ddbf2c158392dd5d1336be3 usr/share/memories-touch/Images/14.png
294ec5ddbf3b2431558b2b0d74a1ede74e usr/share/memories-touch/Images/15.png
301363e735ec26112890d0275686cd0cfc usr/share/memories-touch/Images/16.svg
312b9aef2d2ec1a5d53786282af7b1192e usr/share/memories-touch/Images/17.png
3249232d45c535a8a3a487a9edb79e92ea usr/share/memories-touch/Images/2.png
337525a48ca5c777169bc1d35f940e782f usr/share/memories-touch/Images/3.png
348877431f07ae09a1c3f0c075f8a7e6a7 usr/share/memories-touch/Images/4.png
3549cbfed198c163e1eeddfe7567fac54e usr/share/memories-touch/Images/5.png
368416c45613da5414f3a1f92707102283 usr/share/memories-touch/Images/6.png
37932e4c1a257abf78a7fe2cf76b34746d usr/share/memories-touch/Images/7.png
38fbacf6f2a5857f7999b575103be4db26 usr/share/memories-touch/Images/8.png
39fce613e444b108ff5032af7948b10db7 usr/share/memories-touch/Images/9.png
4034d1d7ec280580998f7ed9fe95db3e23 usr/share/memories-touch/Result.qml
411338e2977b3a1494977865bf82af9c96 usr/share/memories-touch/Surface.qml
42940ee629a1cce1a2d48335c76d4d25cd usr/share/memories-touch/avatar@8.png
4334a97e10d74aa66193619f861d89364d usr/share/memories-touch/gamelogic.js
4452be1ee617f817b4b2980dbc962a132a usr/share/memories-touch/memories.qml
045
=== added directory 'debian/memories-touch/usr'
=== added directory 'debian/memories-touch/usr/share'
=== added directory 'debian/memories-touch/usr/share/applications'
=== added file 'debian/memories-touch/usr/share/applications/memories.desktop'
--- debian/memories-touch/usr/share/applications/memories.desktop 1970-01-01 00:00:00 +0000
+++ debian/memories-touch/usr/share/applications/memories.desktop 2013-04-23 08:48:28 +0000
@@ -0,0 +1,9 @@
1[Desktop Entry]
2Encoding=UTF-8
3Version=1.0
4Type=Application
5Terminal=false
6Exec=qmlscene /usr/share/memories-touch/memories.qml
7Name=Memories
8X-Ubuntu-Touch=true
9X-Ubuntu-StageHint=SideStage
010
=== added directory 'debian/memories-touch/usr/share/doc'
=== added directory 'debian/memories-touch/usr/share/doc/memories-touch'
=== added file 'debian/memories-touch/usr/share/doc/memories-touch/changelog.gz'
1Binary files debian/memories-touch/usr/share/doc/memories-touch/changelog.gz 1970-01-01 00:00:00 +0000 and debian/memories-touch/usr/share/doc/memories-touch/changelog.gz 2013-04-23 08:48:28 +0000 differ11Binary files debian/memories-touch/usr/share/doc/memories-touch/changelog.gz 1970-01-01 00:00:00 +0000 and debian/memories-touch/usr/share/doc/memories-touch/changelog.gz 2013-04-23 08:48:28 +0000 differ
=== added file 'debian/memories-touch/usr/share/doc/memories-touch/copyright'
--- debian/memories-touch/usr/share/doc/memories-touch/copyright 1970-01-01 00:00:00 +0000
+++ debian/memories-touch/usr/share/doc/memories-touch/copyright 2013-04-23 08:48:28 +0000
@@ -0,0 +1,29 @@
1Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2Upstream-Name: memories-touch
3Source: https://code.launchpad.net/~sebastijan-kuzner/memories-touch/trunk
4
5Files: *
6Copyright: 2013 Sebastijan Kuzner <sebastijan.kuzner@gmail.com>
7License: GPL-3.0+
8
9Files: debian/*
10Copyright: 2013 Alan Pope <alan.pope@canonical.com>
11License: GPL-3.0+
12
13License: GPL-3.0+
14 This program is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18 .
19 This package is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
23 .
24 You should have received a copy of the GNU General Public License
25 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 .
27 On Debian systems, the complete text of the GNU General
28 Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
29
030
=== added file 'debian/rules'
--- debian/rules 1970-01-01 00:00:00 +0000
+++ debian/rules 2013-04-23 08:48:28 +0000
@@ -0,0 +1,13 @@
1#!/usr/bin/make -f
2# -*- makefile -*-
3# Sample debian/rules that uses debhelper.
4# This file was originally written by Joey Hess and Craig Small.
5# As a special exception, when this file is copied by dh-make into a
6# dh-make output file, you may use that output file without restriction.
7# This special exception was added by Craig Small in version 0.37 of dh-make.
8
9# Uncomment this to turn on verbose mode.
10#export DH_VERBOSE=1
11
12%:
13 dh $@
014
=== added directory 'debian/source'
=== added file 'debian/source/format'
--- debian/source/format 1970-01-01 00:00:00 +0000
+++ debian/source/format 2013-04-23 08:48:28 +0000
@@ -0,0 +1,1 @@
13.0 (native)
02
=== modified file 'memories.desktop'
--- memories.desktop 2013-04-21 17:20:31 +0000
+++ memories.desktop 2013-04-23 08:48:28 +0000
@@ -1,7 +1,9 @@
1[Desktop Entry]1[Desktop Entry]
2Name=memories2Encoding=UTF-8
3Comment=My project description3Version=1.0
4Exec=/usr/bin/qmlscene4Type=Application
5Icon=qmlscene
6Terminal=false5Terminal=false
7Type=Application6Exec=qmlscene /usr/share/memories-touch/memories.qml
7Name=Memories
8X-Ubuntu-Touch=true
9X-Ubuntu-StageHint=SideStage
810
=== modified file 'memories.qmlproject.user'
--- memories.qmlproject.user 2013-04-21 17:20:31 +0000
+++ memories.qmlproject.user 2013-04-23 08:48:28 +0000
@@ -1,10 +1,10 @@
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 2.7.0, 2013-04-21T19:05:18. -->3<!-- Written by QtCreator 2.7.0, 2013-04-23T09:20:28. -->
4<qtcreator>4<qtcreator>
5 <data>5 <data>
6 <variable>ProjectExplorer.Project.ActiveTarget</variable>6 <variable>ProjectExplorer.Project.ActiveTarget</variable>
7 <value type="int">-1</value>7 <value type="int">0</value>
8 </data>8 </data>
9 <data>9 <data>
10 <variable>ProjectExplorer.Project.EditorSettings</variable>10 <variable>ProjectExplorer.Project.EditorSettings</variable>
@@ -49,12 +49,82 @@
49 <valuemap type="QVariantMap"/>49 <valuemap type="QVariantMap"/>
50 </data>50 </data>
51 <data>51 <data>
52 <variable>ProjectExplorer.Project.Target.0</variable>
53 <valuemap type="QVariantMap">
54 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop</value>
55 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>
56 <value type="QByteArray" key="ProjectExplorer.ProjectConfiguration.Id">{1e421ca5-3d01-4332-ab3f-666ec5fe3e38}</value>
57 <value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">-1</value>
58 <value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
59 <value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
60 <value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">0</value>
61 <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
62 <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
63 <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
64 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
65 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
66 <value type="QByteArray" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
67 </valuemap>
68 <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
69 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy locally</value>
70 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
71 <value type="QByteArray" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
72 </valuemap>
73 <value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
74 <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
75 <value type="bool" key="Analyzer.Project.UseGlobal">true</value>
76 <valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
77 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
78 <value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
79 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
80 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
81 <value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
82 <value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
83 <value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
84 <value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
85 <value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
86 <valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
87 <value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
88 <value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
89 <valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
90 <value type="int">0</value>
91 <value type="int">1</value>
92 <value type="int">2</value>
93 <value type="int">3</value>
94 <value type="int">4</value>
95 <value type="int">5</value>
96 <value type="int">6</value>
97 <value type="int">7</value>
98 <value type="int">8</value>
99 <value type="int">9</value>
100 <value type="int">10</value>
101 <value type="int">11</value>
102 <value type="int">12</value>
103 <value type="int">13</value>
104 <value type="int">14</value>
105 </valuelist>
106 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName"></value>
107 <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">QML Scene</value>
108 <value type="QByteArray" key="ProjectExplorer.ProjectConfiguration.Id">QmlProjectManager.QmlRunConfiguration.QmlScene</value>
109 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.MainScript">CurrentFile</value>
110 <value type="QString" key="QmlProjectManager.QmlRunConfiguration.QDeclarativeViewerArguments"></value>
111 <valuelist type="QVariantList" key="QmlProjectManager.QmlRunConfiguration.UserEnvironmentChanges"/>
112 <value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
113 <value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
114 <value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
115 <value type="bool" key="RunConfiguration.UseQmlDebugger">true</value>
116 <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">false</value>
117 </valuemap>
118 <value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
119 </valuemap>
120 </data>
121 <data>
52 <variable>ProjectExplorer.Project.TargetCount</variable>122 <variable>ProjectExplorer.Project.TargetCount</variable>
53 <value type="int">0</value>123 <value type="int">1</value>
54 </data>124 </data>
55 <data>125 <data>
56 <variable>ProjectExplorer.Project.Updater.EnvironmentId</variable>126 <variable>ProjectExplorer.Project.Updater.EnvironmentId</variable>
57 <value type="QString">{b8a2a5b7-b33e-4e33-bd4e-be00d9721ad0}</value>127 <value type="QString">{a7de895d-c4c2-4933-af92-29d0124d9c01}</value>
58 </data>128 </data>
59 <data>129 <data>
60 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>130 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
61131
=== added file 'memories.qmlproject.user.b8a2a5b'
--- memories.qmlproject.user.b8a2a5b 1970-01-01 00:00:00 +0000
+++ memories.qmlproject.user.b8a2a5b 2013-04-23 08:48:28 +0000
@@ -0,0 +1,63 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE QtCreatorProject>
3<!-- Written by QtCreator 2.7.0, 2013-04-21T19:05:18. -->
4<qtcreator>
5 <data>
6 <variable>ProjectExplorer.Project.ActiveTarget</variable>
7 <value type="int">-1</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="QByteArray" key="language">Cpp</value>
17 <valuemap type="QVariantMap" key="value">
18 <value type="QString" key="CurrentPreferences">CppGlobal</value>
19 </valuemap>
20 </valuemap>
21 <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
22 <value type="QByteArray" key="language">QmlJS</value>
23 <valuemap type="QVariantMap" key="value">
24 <value type="QString" 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="bool" key="EditorConfiguration.MouseNavigation">true</value>
33 <value type="int" key="EditorConfiguration.PaddingMode">1</value>
34 <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
35 <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
36 <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
37 <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
38 <value type="int" key="EditorConfiguration.TabSize">8</value>
39 <value type="bool" key="EditorConfiguration.UseGlobal">true</value>
40 <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
41 <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
42 <value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
43 <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
44 <value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
45 </valuemap>
46 </data>
47 <data>
48 <variable>ProjectExplorer.Project.PluginSettings</variable>
49 <valuemap type="QVariantMap"/>
50 </data>
51 <data>
52 <variable>ProjectExplorer.Project.TargetCount</variable>
53 <value type="int">0</value>
54 </data>
55 <data>
56 <variable>ProjectExplorer.Project.Updater.EnvironmentId</variable>
57 <value type="QString">{b8a2a5b7-b33e-4e33-bd4e-be00d9721ad0}</value>
58 </data>
59 <data>
60 <variable>ProjectExplorer.Project.Updater.FileVersion</variable>
61 <value type="int">12</value>
62 </data>
63</qtcreator>

Subscribers

People subscribed via source and target branches