Merge lp:~mzanetti/reminders-app/cleanup into lp:reminders-app

Proposed by Michael Zanetti
Status: Superseded
Proposed branch: lp:~mzanetti/reminders-app/cleanup
Merge into: lp:reminders-app
Diff against target: 1352 lines (+187/-225)
63 files modified
.bzrignore (+2/-2)
CMakeLists.txt (+2/-6)
deployment.pri (+0/-25)
reminders-app.in (+0/-3)
run_on_ubuntu_touch.sh (+6/-12)
src/app/CMakeLists.txt (+6/-6)
src/app/main.cpp (+5/-5)
src/app/qml/components/NotebooksDelegate.qml (+3/-3)
src/app/qml/components/NotesDelegate.qml (+3/-3)
src/app/qml/components/ToolbarSpacer.qml (+3/-3)
src/app/qml/reminders.qml (+4/-4)
src/app/qml/ui/AccountSelectorPage.qml (+3/-3)
src/app/qml/ui/EditNotePage.qml (+3/-3)
src/app/qml/ui/NotePage.qml (+3/-3)
src/app/qml/ui/NotebooksPage.qml (+3/-3)
src/app/qml/ui/NotesPage.qml (+3/-3)
src/app/qml/ui/RemindersPage.qml (+3/-3)
src/app/qml/ui/SearchNotesPage.qml (+3/-3)
src/plugin/Evernote/evernoteconnection.cpp (+3/-3)
src/plugin/Evernote/evernoteconnection.h (+3/-3)
src/plugin/Evernote/evernoteplugin.cpp (+3/-3)
src/plugin/Evernote/jobs/createnotebookjob.cpp (+3/-3)
src/plugin/Evernote/jobs/createnotebookjob.h (+3/-3)
src/plugin/Evernote/jobs/createnotejob.cpp (+3/-3)
src/plugin/Evernote/jobs/createnotejob.h (+3/-3)
src/plugin/Evernote/jobs/deletenotejob.cpp (+3/-3)
src/plugin/Evernote/jobs/deletenotejob.h (+3/-3)
src/plugin/Evernote/jobs/evernotejob.cpp (+3/-3)
src/plugin/Evernote/jobs/evernotejob.h (+3/-3)
src/plugin/Evernote/jobs/expungenotebookjob.cpp (+3/-3)
src/plugin/Evernote/jobs/expungenotebookjob.h (+3/-3)
src/plugin/Evernote/jobs/fetchnotebooksjob.cpp (+3/-3)
src/plugin/Evernote/jobs/fetchnotebooksjob.h (+3/-3)
src/plugin/Evernote/jobs/fetchnotejob.cpp (+3/-3)
src/plugin/Evernote/jobs/fetchnotejob.h (+3/-3)
src/plugin/Evernote/jobs/fetchnotesjob.cpp (+3/-3)
src/plugin/Evernote/jobs/fetchnotesjob.h (+3/-3)
src/plugin/Evernote/jobs/fetchusernamejob.cpp (+3/-3)
src/plugin/Evernote/jobs/fetchusernamejob.h (+3/-3)
src/plugin/Evernote/jobs/notesstorejob.cpp (+3/-3)
src/plugin/Evernote/jobs/notesstorejob.h (+3/-3)
src/plugin/Evernote/jobs/savenotejob.cpp (+3/-3)
src/plugin/Evernote/jobs/savenotejob.h (+3/-3)
src/plugin/Evernote/jobs/userstorejob.cpp (+3/-3)
src/plugin/Evernote/jobs/userstorejob.h (+3/-3)
src/plugin/Evernote/note.cpp (+3/-3)
src/plugin/Evernote/note.h (+3/-3)
src/plugin/Evernote/notebook.cpp (+3/-3)
src/plugin/Evernote/notebook.h (+3/-3)
src/plugin/Evernote/notebooks.cpp (+3/-3)
src/plugin/Evernote/notebooks.h (+3/-3)
src/plugin/Evernote/notes.cpp (+3/-3)
src/plugin/Evernote/notes.h (+3/-3)
src/plugin/Evernote/notesstore.cpp (+3/-3)
src/plugin/Evernote/notesstore.h (+3/-3)
src/plugin/Evernote/resource.cpp (+3/-3)
src/plugin/Evernote/resource.h (+3/-3)
src/plugin/Evernote/userstore.cpp (+3/-3)
src/plugin/Evernote/userstore.h (+3/-3)
src/plugin/Evernote/utils/enmldocument.cpp (+3/-3)
src/plugin/Evernote/utils/enmldocument.h (+3/-3)
tests/autopilot/reminders/main/test_main.py (+2/-2)
tests/autopilot/run (+1/-1)
To merge this branch: bzr merge lp:~mzanetti/reminders-app/cleanup
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Needs Fixing
Ubuntu Notes app developers Pending
Review via email: mp+203077@code.launchpad.net

Commit message

some cleanup

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Needs Fixing (continuous-integration)
lp:~mzanetti/reminders-app/cleanup updated
30. By David Planella

Add the .pot file to the source tree to re-enable translations after some changes were reverted in trunk recenty.

Approved by Ubuntu Phone Apps Jenkins Bot, Michael Zanetti.

31. By Michael Zanetti

Enable attaching and uploading images.

Approved by David Planella, Ubuntu Phone Apps Jenkins Bot.

32. By Launchpad Translations on behalf of reminders-app-dev

Launchpad automatic translations update.

33. By Launchpad Translations on behalf of reminders-app-dev

Launchpad automatic translations update.

34. By Launchpad Translations on behalf of reminders-app-dev

Launchpad automatic translations update.

35. By Michael Zanetti

change EditNotePage to reflect design wireframe more closely.

Approved by Ubuntu Phone Apps Jenkins Bot, David Planella.

36. By Michael Zanetti

major cleanup

* fixes run_on_ubuntu_touch after sergios changes
* removes obsolete script for running (use the built binary instead)
* remove leftover .pri file from qmake days
* completes renaming from reminders-app to reminders

37. By Michael Zanetti

update .bzrignore

38. By Michael Zanetti

install binary file when not in click mode

39. By Michael Zanetti

fix python import

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file '.bzrignore'
2--- .bzrignore 2013-11-21 23:30:15 +0000
3+++ .bzrignore 2014-01-27 13:06:11 +0000
4@@ -1,2 +1,2 @@
5-reminders-app.qmlproject.user
6-reminders-app.pro.user
7+CMakeLists.txt.user
8+builddir
9
10=== modified file 'CMakeLists.txt'
11--- CMakeLists.txt 2014-01-19 13:59:12 +0000
12+++ CMakeLists.txt 2014-01-27 13:06:11 +0000
13@@ -20,8 +20,8 @@
14 set(APP_NAME reminders)
15 set(DESKTOP_FILE "${PROJECT_NAME}_${APP_NAME}.desktop")
16 set(ICON ${APP_NAME}.png)
17-set(AUTOPILOT_DIR reminders_app)
18-set(APP_HARDCODE reminders-app)
19+set(AUTOPILOT_DIR reminders)
20+set(APP_HARDCODE reminders)
21 set(MAIN_QML ${APP_HARDCODE}.qml)
22
23 if(CLICK_MODE)
24@@ -37,10 +37,6 @@
25 set(DESKTOP_DIR ${DATA_DIR})
26 else(CLICK_MODE)
27 set(DATA_DIR ${CMAKE_INSTALL_DATADIR}/${APP_HARDCODE})
28- configure_file(${APP_HARDCODE}.in
29- ${CMAKE_CURRENT_BINARY_DIR}/${APP_HARDCODE})
30- install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${APP_HARDCODE}
31- DESTINATION ${CMAKE_INSTALL_BINDIR})
32 set(EXEC "qmlscene $@ ${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/qml/${MAIN_QML}")
33 set(ICON "${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/${ICON}")
34 set(DESKTOP_DIR ${CMAKE_INSTALL_DATADIR}/applications)
35
36=== removed file 'deployment.pri'
37--- deployment.pri 2013-11-21 23:30:15 +0000
38+++ deployment.pri 1970-01-01 00:00:00 +0000
39@@ -1,25 +0,0 @@
40-copyCommand =
41-for(deploymentfolder, DEPLOYMENTFOLDERS) {
42- source = $$PWD/$$eval($${deploymentfolder}.source)
43-message(source: $$eval($${deploymentfolder}.source))
44- source = $$replace(source, \\\\, /)
45- target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
46- target = $$replace(target, \\\\, /)
47- sourcePathSegments = $$split(source, /)
48- targetFullPath = $$target/$$last(sourcePathSegments)
49- targetFullPath ~= s,/\\.?/,/,
50- !isEqual(source,$$targetFullPath) {
51- !isEmpty(copyCommand):copyCommand += &&
52- copyCommand += $(MKDIR) \"$$target\"
53- copyCommand += && $(COPY_DIR) \"$$source\" \"$$target\"
54- }
55-}
56-!isEmpty(copyCommand) {
57- copyCommand = @echo Copying application data... && $$copyCommand
58- copydeploymentfolders.commands = $$copyCommand
59- first.depends = $(first) copydeploymentfolders
60- export(first.depends)
61- export(copydeploymentfolders.commands)
62- QMAKE_EXTRA_TARGETS += first copydeploymentfolders
63-}
64-
65
66=== removed file 'reminders-app.in'
67--- reminders-app.in 2014-01-19 13:59:12 +0000
68+++ reminders-app.in 1970-01-01 00:00:00 +0000
69@@ -1,3 +0,0 @@
70-#!/bin/sh
71-export QT_SELECT=qt5
72-qmlscene @CMAKE_INSTALL_PREFIX@/@DATA_DIR@/@MAIN_QML@
73
74=== modified file 'run_on_ubuntu_touch.sh'
75--- run_on_ubuntu_touch.sh 2014-01-24 18:18:26 +0000
76+++ run_on_ubuntu_touch.sh 2014-01-27 13:06:11 +0000
77@@ -1,11 +1,11 @@
78 #!/bin/sh
79-CODE_DIR=reminders-app
80+CODE_DIR=reminders
81 BUILD_DIR=builddir
82 USER=phablet
83 USER_ID=32011
84 PASSWORD=phablet
85-PACKAGE=reminders-app
86-BINARY=reminders-app
87+PACKAGE=reminders
88+BINARY=reminders
89 TARGET_IP=${TARGET_IP-127.0.0.1}
90 TARGET_SSH_PORT=${TARGET_SSH_PORT-2222}
91 TARGET_DEBUG_PORT=3768
92@@ -61,20 +61,14 @@
93
94 build() {
95 exec_with_ssh mkdir -p $CODE_DIR/$BUILD_DIR
96- exec_with_ssh PATH=/usr/lib/ccache:$PATH "cd $CODE_DIR/$BUILD_DIR && PATH=/usr/lib/ccache:$PATH QT_SELECT=qt5 cmake .."
97+ exec_with_ssh PATH=/usr/lib/ccache:$PATH "cd $CODE_DIR/$BUILD_DIR && PATH=/usr/lib/ccache:$PATH QT_SELECT=qt5 cmake .. -DCLICK_MODE=1"
98 exec_with_ssh PATH=/usr/lib/ccache:$PATH "cd $CODE_DIR/$BUILD_DIR && PATH=/usr/lib/ccache:$PATH make -j2"
99 }
100
101 build_click_package() {
102- exec_with_ssh mkdir -p $CODE_DIR/$BUILD_DIR/install
103- exec_with_ssh rm -rf $CODE_DIR/$BUILD_DIR/install/*
104- exec_with_ssh cp -r $CODE_DIR/src/app/qml $CODE_DIR/$BUILD_DIR/install
105- exec_with_ssh cp $CODE_DIR/*.json $CODE_DIR/$BUILD_DIR/install
106- exec_with_ssh cp $CODE_DIR/apparmor/*.json $CODE_DIR/$BUILD_DIR/install
107- exec_with_ssh cp $CODE_DIR/$PACKAGE.desktop $CODE_DIR/$BUILD_DIR/install
108- exec_with_ssh cp $CODE_DIR/$PACKAGE.png $CODE_DIR/$BUILD_DIR/install
109- exec_with_ssh cp -r $CODE_DIR/$BUILD_DIR/src/plugin/Evernote $CODE_DIR/$BUILD_DIR/install/
110+ exec_with_ssh "cd $CODE_DIR/$BUILD_DIR/ && make install DESTDIR=install"
111 exec_with_ssh click build $CODE_DIR/$BUILD_DIR/install
112+
113 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -P $TARGET_SSH_PORT $USER@$TARGET_IP:/home/phablet/com.ubuntu*$PACKAGE*.click .
114 }
115
116
117=== modified file 'src/app/CMakeLists.txt'
118--- src/app/CMakeLists.txt 2014-01-19 13:59:12 +0000
119+++ src/app/CMakeLists.txt 2014-01-27 13:06:11 +0000
120@@ -1,15 +1,15 @@
121 file(GLOB_RECURSE QML_SRCS *.qml *.js)
122
123-set(reminders-app_SRCS
124+set(reminders_SRCS
125 main.cpp
126 ${QML_SRCS}
127 )
128
129-add_executable(reminders-app ${reminders-app_SRCS})
130-
131-qt5_use_modules(reminders-app Gui Qml Quick)
132-
133-add_custom_target(reminders-app-qmlfiles ALL
134+add_executable(reminders ${reminders_SRCS})
135+
136+qt5_use_modules(reminders Gui Qml Quick)
137+
138+add_custom_target(reminders-qmlfiles ALL
139 COMMAND cp -r ${CMAKE_CURRENT_SOURCE_DIR}/qml ${CMAKE_CURRENT_BINARY_DIR}
140 DEPENDS ${QMLFILES}
141 )
142
143=== modified file 'src/app/main.cpp'
144--- src/app/main.cpp 2013-11-26 17:18:33 +0000
145+++ src/app/main.cpp 2014-01-27 13:06:11 +0000
146@@ -1,14 +1,14 @@
147 /*
148 * Copyright: 2013 Canonical, Ltd
149 *
150- * This file is part of reminders-app
151+ * This file is part of reminders
152 *
153- * reminders-app is free software: you can redistribute it and/or modify
154+ * reminders is free software: you can redistribute it and/or modify
155 * it under the terms of the GNU General Public License as published by
156 * the Free Software Foundation, either version 3 of the License, or
157 * (at your option) any later version.
158 *
159- * reminders-app is distributed in the hope that it will be useful,
160+ * reminders is distributed in the hope that it will be useful,
161 * but WITHOUT ANY WARRANTY; without even the implied warranty of
162 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
163 * GNU General Public License for more details.
164@@ -30,7 +30,7 @@
165 * import path for the plugin preconfigured. This is just used for easier
166 * development and while we can ship this, we could also run the app ourselves
167 * with:
168- * qmlscene -I /path/to/plugin/ reminders-app.qml
169+ * qmlscene -I /path/to/plugin/ reminders.qml
170 */
171
172 int main(int argc, char *argv[])
173@@ -47,7 +47,7 @@
174 view.engine()->setImportPathList(importPathList);
175
176 // and directly load the qml file
177- view.setSource(QUrl::fromLocalFile("qml/reminders-app.qml"));
178+ view.setSource(QUrl::fromLocalFile("qml/reminders.qml"));
179
180 view.show();
181
182
183=== modified file 'src/app/qml/components/NotebooksDelegate.qml'
184--- src/app/qml/components/NotebooksDelegate.qml 2013-12-14 23:59:04 +0000
185+++ src/app/qml/components/NotebooksDelegate.qml 2014-01-27 13:06:11 +0000
186@@ -1,13 +1,13 @@
187 /*
188 * Copyright: 2013 Canonical, Ltd
189 *
190- * This file is part of reminders-app
191+ * This file is part of reminders
192 *
193- * reminders-app is free software: you can redistribute it and/or modify
194+ * reminders is free software: you can redistribute it and/or modify
195 * it under the terms of the GNU General Public License as published by
196 * the Free Software Foundation; version 3.
197 *
198- * reminders-app is distributed in the hope that it will be useful,
199+ * reminders is distributed in the hope that it will be useful,
200 * but WITHOUT ANY WARRANTY; without even the implied warranty of
201 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
202 * GNU General Public License for more details.
203
204=== modified file 'src/app/qml/components/NotesDelegate.qml'
205--- src/app/qml/components/NotesDelegate.qml 2013-12-14 23:59:04 +0000
206+++ src/app/qml/components/NotesDelegate.qml 2014-01-27 13:06:11 +0000
207@@ -1,13 +1,13 @@
208 /*
209 * Copyright: 2013 Canonical, Ltd
210 *
211- * This file is part of reminders-app
212+ * This file is part of reminders
213 *
214- * reminders-app is free software: you can redistribute it and/or modify
215+ * reminders is free software: you can redistribute it and/or modify
216 * it under the terms of the GNU General Public License as published by
217 * the Free Software Foundation; version 3.
218 *
219- * reminders-app is distributed in the hope that it will be useful,
220+ * reminders is distributed in the hope that it will be useful,
221 * but WITHOUT ANY WARRANTY; without even the implied warranty of
222 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
223 * GNU General Public License for more details.
224
225=== modified file 'src/app/qml/components/ToolbarSpacer.qml'
226--- src/app/qml/components/ToolbarSpacer.qml 2013-12-14 00:04:11 +0000
227+++ src/app/qml/components/ToolbarSpacer.qml 2014-01-27 13:06:11 +0000
228@@ -1,13 +1,13 @@
229 /*
230 * Copyright: 2013 Canonical, Ltd
231 *
232- * This file is part of reminders-app
233+ * This file is part of reminders
234 *
235- * reminders-app is free software: you can redistribute it and/or modify
236+ * reminders is free software: you can redistribute it and/or modify
237 * it under the terms of the GNU General Public License as published by
238 * the Free Software Foundation; version 3.
239 *
240- * reminders-app is distributed in the hope that it will be useful,
241+ * reminders is distributed in the hope that it will be useful,
242 * but WITHOUT ANY WARRANTY; without even the implied warranty of
243 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
244 * GNU General Public License for more details.
245
246=== renamed file 'src/app/qml/reminders-app.qml' => 'src/app/qml/reminders.qml'
247--- src/app/qml/reminders-app.qml 2014-01-23 09:39:43 +0000
248+++ src/app/qml/reminders.qml 2014-01-27 13:06:11 +0000
249@@ -1,13 +1,13 @@
250 /*
251 * Copyright: 2013 Canonical, Ltd
252 *
253- * This file is part of reminders-app
254+ * This file is part of reminders
255 *
256- * reminders-app is free software: you can redistribute it and/or modify
257+ * reminders is free software: you can redistribute it and/or modify
258 * it under the terms of the GNU General Public License as published by
259 * the Free Software Foundation; version 3.
260 *
261- * reminders-app is distributed in the hope that it will be useful,
262+ * reminders is distributed in the hope that it will be useful,
263 * but WITHOUT ANY WARRANTY; without even the implied warranty of
264 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
265 * GNU General Public License for more details.
266@@ -31,7 +31,7 @@
267 objectName: "mainView"
268
269 // Note! applicationName needs to match the "name" field of the click manifest
270- applicationName: "com.ubuntu.reminders-app"
271+ applicationName: "com.ubuntu.reminders"
272
273 /*
274 This property enables the application to change orientation
275
276=== modified file 'src/app/qml/ui/AccountSelectorPage.qml'
277--- src/app/qml/ui/AccountSelectorPage.qml 2013-11-28 00:39:33 +0000
278+++ src/app/qml/ui/AccountSelectorPage.qml 2014-01-27 13:06:11 +0000
279@@ -1,13 +1,13 @@
280 /*
281 * Copyright: 2013 Canonical, Ltd
282 *
283- * This file is part of reminders-app
284+ * This file is part of reminders
285 *
286- * reminders-app is free software: you can redistribute it and/or modify
287+ * reminders is free software: you can redistribute it and/or modify
288 * it under the terms of the GNU General Public License as published by
289 * the Free Software Foundation; version 3.
290 *
291- * reminders-app is distributed in the hope that it will be useful,
292+ * reminders is distributed in the hope that it will be useful,
293 * but WITHOUT ANY WARRANTY; without even the implied warranty of
294 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
295 * GNU General Public License for more details.
296
297=== modified file 'src/app/qml/ui/EditNotePage.qml'
298--- src/app/qml/ui/EditNotePage.qml 2014-01-27 11:59:15 +0000
299+++ src/app/qml/ui/EditNotePage.qml 2014-01-27 13:06:11 +0000
300@@ -1,13 +1,13 @@
301 /*
302 * Copyright: 2013 Canonical, Ltd
303 *
304- * This file is part of reminders-app
305+ * This file is part of reminders
306 *
307- * reminders-app is free software: you can redistribute it and/or modify
308+ * reminders is free software: you can redistribute it and/or modify
309 * it under the terms of the GNU General Public License as published by
310 * the Free Software Foundation; version 3.
311 *
312- * reminders-app is distributed in the hope that it will be useful,
313+ * reminders is distributed in the hope that it will be useful,
314 * but WITHOUT ANY WARRANTY; without even the implied warranty of
315 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
316 * GNU General Public License for more details.
317
318=== modified file 'src/app/qml/ui/NotePage.qml'
319--- src/app/qml/ui/NotePage.qml 2013-12-18 20:56:34 +0000
320+++ src/app/qml/ui/NotePage.qml 2014-01-27 13:06:11 +0000
321@@ -1,13 +1,13 @@
322 /*
323 * Copyright: 2013 Canonical, Ltd
324 *
325- * This file is part of reminders-app
326+ * This file is part of reminders
327 *
328- * reminders-app is free software: you can redistribute it and/or modify
329+ * reminders is free software: you can redistribute it and/or modify
330 * it under the terms of the GNU General Public License as published by
331 * the Free Software Foundation; version 3.
332 *
333- * reminders-app is distributed in the hope that it will be useful,
334+ * reminders is distributed in the hope that it will be useful,
335 * but WITHOUT ANY WARRANTY; without even the implied warranty of
336 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
337 * GNU General Public License for more details.
338
339=== modified file 'src/app/qml/ui/NotebooksPage.qml'
340--- src/app/qml/ui/NotebooksPage.qml 2013-12-15 02:48:04 +0000
341+++ src/app/qml/ui/NotebooksPage.qml 2014-01-27 13:06:11 +0000
342@@ -1,13 +1,13 @@
343 /*
344 * Copyright: 2013 Canonical, Ltd
345 *
346- * This file is part of reminders-app
347+ * This file is part of reminders
348 *
349- * reminders-app is free software: you can redistribute it and/or modify
350+ * reminders is free software: you can redistribute it and/or modify
351 * it under the terms of the GNU General Public License as published by
352 * the Free Software Foundation; version 3.
353 *
354- * reminders-app is distributed in the hope that it will be useful,
355+ * reminders is distributed in the hope that it will be useful,
356 * but WITHOUT ANY WARRANTY; without even the implied warranty of
357 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
358 * GNU General Public License for more details.
359
360=== modified file 'src/app/qml/ui/NotesPage.qml'
361--- src/app/qml/ui/NotesPage.qml 2014-01-23 09:39:43 +0000
362+++ src/app/qml/ui/NotesPage.qml 2014-01-27 13:06:11 +0000
363@@ -1,13 +1,13 @@
364 /*
365 * Copyright: 2013 Canonical, Ltd
366 *
367- * This file is part of reminders-app
368+ * This file is part of reminders
369 *
370- * reminders-app is free software: you can redistribute it and/or modify
371+ * reminders is free software: you can redistribute it and/or modify
372 * it under the terms of the GNU General Public License as published by
373 * the Free Software Foundation; version 3.
374 *
375- * reminders-app is distributed in the hope that it will be useful,
376+ * reminders is distributed in the hope that it will be useful,
377 * but WITHOUT ANY WARRANTY; without even the implied warranty of
378 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
379 * GNU General Public License for more details.
380
381=== modified file 'src/app/qml/ui/RemindersPage.qml'
382--- src/app/qml/ui/RemindersPage.qml 2013-12-15 02:48:04 +0000
383+++ src/app/qml/ui/RemindersPage.qml 2014-01-27 13:06:11 +0000
384@@ -1,13 +1,13 @@
385 /*
386 * Copyright: 2013 Canonical, Ltd
387 *
388- * This file is part of reminders-app
389+ * This file is part of reminders
390 *
391- * reminders-app is free software: you can redistribute it and/or modify
392+ * reminders is free software: you can redistribute it and/or modify
393 * it under the terms of the GNU General Public License as published by
394 * the Free Software Foundation; version 3.
395 *
396- * reminders-app is distributed in the hope that it will be useful,
397+ * reminders is distributed in the hope that it will be useful,
398 * but WITHOUT ANY WARRANTY; without even the implied warranty of
399 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
400 * GNU General Public License for more details.
401
402=== modified file 'src/app/qml/ui/SearchNotesPage.qml'
403--- src/app/qml/ui/SearchNotesPage.qml 2013-12-14 22:38:57 +0000
404+++ src/app/qml/ui/SearchNotesPage.qml 2014-01-27 13:06:11 +0000
405@@ -1,13 +1,13 @@
406 /*
407 * Copyright: 2013 Canonical, Ltd
408 *
409- * This file is part of reminders-app
410+ * This file is part of reminders
411 *
412- * reminders-app is free software: you can redistribute it and/or modify
413+ * reminders is free software: you can redistribute it and/or modify
414 * it under the terms of the GNU General Public License as published by
415 * the Free Software Foundation; version 3.
416 *
417- * reminders-app is distributed in the hope that it will be useful,
418+ * reminders is distributed in the hope that it will be useful,
419 * but WITHOUT ANY WARRANTY; without even the implied warranty of
420 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
421 * GNU General Public License for more details.
422
423=== modified file 'src/plugin/Evernote/evernoteconnection.cpp'
424--- src/plugin/Evernote/evernoteconnection.cpp 2013-11-28 00:39:33 +0000
425+++ src/plugin/Evernote/evernoteconnection.cpp 2014-01-27 13:06:11 +0000
426@@ -1,13 +1,13 @@
427 /*
428 * Copyright: 2013 Canonical, Ltd
429 *
430- * This file is part of reminders-app
431+ * This file is part of reminders
432 *
433- * reminders-app is free software: you can redistribute it and/or modify
434+ * reminders is free software: you can redistribute it and/or modify
435 * it under the terms of the GNU General Public License as published by
436 * the Free Software Foundation; version 3.
437 *
438- * reminders-app is distributed in the hope that it will be useful,
439+ * reminders is distributed in the hope that it will be useful,
440 * but WITHOUT ANY WARRANTY; without even the implied warranty of
441 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
442 * GNU General Public License for more details.
443
444=== modified file 'src/plugin/Evernote/evernoteconnection.h'
445--- src/plugin/Evernote/evernoteconnection.h 2013-11-28 00:39:33 +0000
446+++ src/plugin/Evernote/evernoteconnection.h 2014-01-27 13:06:11 +0000
447@@ -1,13 +1,13 @@
448 /*
449 * Copyright: 2013 Canonical, Ltd
450 *
451- * This file is part of reminders-app
452+ * This file is part of reminders
453 *
454- * reminders-app is free software: you can redistribute it and/or modify
455+ * reminders is free software: you can redistribute it and/or modify
456 * it under the terms of the GNU General Public License as published by
457 * the Free Software Foundation; version 3.
458 *
459- * reminders-app is distributed in the hope that it will be useful,
460+ * reminders is distributed in the hope that it will be useful,
461 * but WITHOUT ANY WARRANTY; without even the implied warranty of
462 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
463 * GNU General Public License for more details.
464
465=== modified file 'src/plugin/Evernote/evernoteplugin.cpp'
466--- src/plugin/Evernote/evernoteplugin.cpp 2014-01-23 09:39:43 +0000
467+++ src/plugin/Evernote/evernoteplugin.cpp 2014-01-27 13:06:11 +0000
468@@ -1,13 +1,13 @@
469 /*
470 * Copyright: 2013 Canonical, Ltd
471 *
472- * This file is part of reminders-app
473+ * This file is part of reminders
474 *
475- * reminders-app is free software: you can redistribute it and/or modify
476+ * reminders is free software: you can redistribute it and/or modify
477 * it under the terms of the GNU General Public License as published by
478 * the Free Software Foundation; version 3.
479 *
480- * reminders-app is distributed in the hope that it will be useful,
481+ * reminders is distributed in the hope that it will be useful,
482 * but WITHOUT ANY WARRANTY; without even the implied warranty of
483 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
484 * GNU General Public License for more details.
485
486=== modified file 'src/plugin/Evernote/jobs/createnotebookjob.cpp'
487--- src/plugin/Evernote/jobs/createnotebookjob.cpp 2013-12-12 22:45:59 +0000
488+++ src/plugin/Evernote/jobs/createnotebookjob.cpp 2014-01-27 13:06:11 +0000
489@@ -1,13 +1,13 @@
490 /*
491 * Copyright: 2013 Canonical, Ltd
492 *
493- * This file is part of reminders-app
494+ * This file is part of reminders
495 *
496- * reminders-app is free software: you can redistribute it and/or modify
497+ * reminders is free software: you can redistribute it and/or modify
498 * it under the terms of the GNU General Public License as published by
499 * the Free Software Foundation; version 3.
500 *
501- * reminders-app is distributed in the hope that it will be useful,
502+ * reminders is distributed in the hope that it will be useful,
503 * but WITHOUT ANY WARRANTY; without even the implied warranty of
504 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
505 * GNU General Public License for more details.
506
507=== modified file 'src/plugin/Evernote/jobs/createnotebookjob.h'
508--- src/plugin/Evernote/jobs/createnotebookjob.h 2013-12-12 22:45:59 +0000
509+++ src/plugin/Evernote/jobs/createnotebookjob.h 2014-01-27 13:06:11 +0000
510@@ -1,13 +1,13 @@
511 /*
512 * Copyright: 2013 Canonical, Ltd
513 *
514- * This file is part of reminders-app
515+ * This file is part of reminders
516 *
517- * reminders-app is free software: you can redistribute it and/or modify
518+ * reminders is free software: you can redistribute it and/or modify
519 * it under the terms of the GNU General Public License as published by
520 * the Free Software Foundation; version 3.
521 *
522- * reminders-app is distributed in the hope that it will be useful,
523+ * reminders is distributed in the hope that it will be useful,
524 * but WITHOUT ANY WARRANTY; without even the implied warranty of
525 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
526 * GNU General Public License for more details.
527
528=== modified file 'src/plugin/Evernote/jobs/createnotejob.cpp'
529--- src/plugin/Evernote/jobs/createnotejob.cpp 2014-01-23 09:46:02 +0000
530+++ src/plugin/Evernote/jobs/createnotejob.cpp 2014-01-27 13:06:11 +0000
531@@ -1,13 +1,13 @@
532 /*
533 * Copyright: 2013 Canonical, Ltd
534 *
535- * This file is part of reminders-app
536+ * This file is part of reminders
537 *
538- * reminders-app is free software: you can redistribute it and/or modify
539+ * reminders is free software: you can redistribute it and/or modify
540 * it under the terms of the GNU General Public License as published by
541 * the Free Software Foundation; version 3.
542 *
543- * reminders-app is distributed in the hope that it will be useful,
544+ * reminders is distributed in the hope that it will be useful,
545 * but WITHOUT ANY WARRANTY; without even the implied warranty of
546 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
547 * GNU General Public License for more details.
548
549=== modified file 'src/plugin/Evernote/jobs/createnotejob.h'
550--- src/plugin/Evernote/jobs/createnotejob.h 2014-01-23 09:39:43 +0000
551+++ src/plugin/Evernote/jobs/createnotejob.h 2014-01-27 13:06:11 +0000
552@@ -1,13 +1,13 @@
553 /*
554 * Copyright: 2013 Canonical, Ltd
555 *
556- * This file is part of reminders-app
557+ * This file is part of reminders
558 *
559- * reminders-app is free software: you can redistribute it and/or modify
560+ * reminders is free software: you can redistribute it and/or modify
561 * it under the terms of the GNU General Public License as published by
562 * the Free Software Foundation; version 3.
563 *
564- * reminders-app is distributed in the hope that it will be useful,
565+ * reminders is distributed in the hope that it will be useful,
566 * but WITHOUT ANY WARRANTY; without even the implied warranty of
567 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
568 * GNU General Public License for more details.
569
570=== modified file 'src/plugin/Evernote/jobs/deletenotejob.cpp'
571--- src/plugin/Evernote/jobs/deletenotejob.cpp 2013-11-28 00:39:33 +0000
572+++ src/plugin/Evernote/jobs/deletenotejob.cpp 2014-01-27 13:06:11 +0000
573@@ -1,13 +1,13 @@
574 /*
575 * Copyright: 2013 Canonical, Ltd
576 *
577- * This file is part of reminders-app
578+ * This file is part of reminders
579 *
580- * reminders-app is free software: you can redistribute it and/or modify
581+ * reminders is free software: you can redistribute it and/or modify
582 * it under the terms of the GNU General Public License as published by
583 * the Free Software Foundation; version 3.
584 *
585- * reminders-app is distributed in the hope that it will be useful,
586+ * reminders is distributed in the hope that it will be useful,
587 * but WITHOUT ANY WARRANTY; without even the implied warranty of
588 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
589 * GNU General Public License for more details.
590
591=== modified file 'src/plugin/Evernote/jobs/deletenotejob.h'
592--- src/plugin/Evernote/jobs/deletenotejob.h 2013-11-29 20:58:04 +0000
593+++ src/plugin/Evernote/jobs/deletenotejob.h 2014-01-27 13:06:11 +0000
594@@ -1,13 +1,13 @@
595 /*
596 * Copyright: 2013 Canonical, Ltd
597 *
598- * This file is part of reminders-app
599+ * This file is part of reminders
600 *
601- * reminders-app is free software: you can redistribute it and/or modify
602+ * reminders is free software: you can redistribute it and/or modify
603 * it under the terms of the GNU General Public License as published by
604 * the Free Software Foundation; version 3.
605 *
606- * reminders-app is distributed in the hope that it will be useful,
607+ * reminders is distributed in the hope that it will be useful,
608 * but WITHOUT ANY WARRANTY; without even the implied warranty of
609 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
610 * GNU General Public License for more details.
611
612=== modified file 'src/plugin/Evernote/jobs/evernotejob.cpp'
613--- src/plugin/Evernote/jobs/evernotejob.cpp 2013-12-15 02:48:04 +0000
614+++ src/plugin/Evernote/jobs/evernotejob.cpp 2014-01-27 13:06:11 +0000
615@@ -1,13 +1,13 @@
616 /*
617 * Copyright: 2013 Canonical, Ltd
618 *
619- * This file is part of reminders-app
620+ * This file is part of reminders
621 *
622- * reminders-app is free software: you can redistribute it and/or modify
623+ * reminders is free software: you can redistribute it and/or modify
624 * it under the terms of the GNU General Public License as published by
625 * the Free Software Foundation; version 3.
626 *
627- * reminders-app is distributed in the hope that it will be useful,
628+ * reminders is distributed in the hope that it will be useful,
629 * but WITHOUT ANY WARRANTY; without even the implied warranty of
630 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
631 * GNU General Public License for more details.
632
633=== modified file 'src/plugin/Evernote/jobs/evernotejob.h'
634--- src/plugin/Evernote/jobs/evernotejob.h 2013-11-29 20:58:04 +0000
635+++ src/plugin/Evernote/jobs/evernotejob.h 2014-01-27 13:06:11 +0000
636@@ -1,13 +1,13 @@
637 /*
638 * Copyright: 2013 Canonical, Ltd
639 *
640- * This file is part of reminders-app
641+ * This file is part of reminders
642 *
643- * reminders-app is free software: you can redistribute it and/or modify
644+ * reminders is free software: you can redistribute it and/or modify
645 * it under the terms of the GNU General Public License as published by
646 * the Free Software Foundation; version 3.
647 *
648- * reminders-app is distributed in the hope that it will be useful,
649+ * reminders is distributed in the hope that it will be useful,
650 * but WITHOUT ANY WARRANTY; without even the implied warranty of
651 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
652 * GNU General Public License for more details.
653
654=== modified file 'src/plugin/Evernote/jobs/expungenotebookjob.cpp'
655--- src/plugin/Evernote/jobs/expungenotebookjob.cpp 2013-12-12 22:45:59 +0000
656+++ src/plugin/Evernote/jobs/expungenotebookjob.cpp 2014-01-27 13:06:11 +0000
657@@ -1,13 +1,13 @@
658 /*
659 * Copyright: 2013 Canonical, Ltd
660 *
661- * This file is part of reminders-app
662+ * This file is part of reminders
663 *
664- * reminders-app is free software: you can redistribute it and/or modify
665+ * reminders is free software: you can redistribute it and/or modify
666 * it under the terms of the GNU General Public License as published by
667 * the Free Software Foundation; version 3.
668 *
669- * reminders-app is distributed in the hope that it will be useful,
670+ * reminders is distributed in the hope that it will be useful,
671 * but WITHOUT ANY WARRANTY; without even the implied warranty of
672 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
673 * GNU General Public License for more details.
674
675=== modified file 'src/plugin/Evernote/jobs/expungenotebookjob.h'
676--- src/plugin/Evernote/jobs/expungenotebookjob.h 2013-12-12 22:45:59 +0000
677+++ src/plugin/Evernote/jobs/expungenotebookjob.h 2014-01-27 13:06:11 +0000
678@@ -1,13 +1,13 @@
679 /*
680 * Copyright: 2013 Canonical, Ltd
681 *
682- * This file is part of reminders-app
683+ * This file is part of reminders
684 *
685- * reminders-app is free software: you can redistribute it and/or modify
686+ * reminders is free software: you can redistribute it and/or modify
687 * it under the terms of the GNU General Public License as published by
688 * the Free Software Foundation; version 3.
689 *
690- * reminders-app is distributed in the hope that it will be useful,
691+ * reminders is distributed in the hope that it will be useful,
692 * but WITHOUT ANY WARRANTY; without even the implied warranty of
693 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
694 * GNU General Public License for more details.
695
696=== modified file 'src/plugin/Evernote/jobs/fetchnotebooksjob.cpp'
697--- src/plugin/Evernote/jobs/fetchnotebooksjob.cpp 2013-11-28 00:39:33 +0000
698+++ src/plugin/Evernote/jobs/fetchnotebooksjob.cpp 2014-01-27 13:06:11 +0000
699@@ -1,13 +1,13 @@
700 /*
701 * Copyright: 2013 Canonical, Ltd
702 *
703- * This file is part of reminders-app
704+ * This file is part of reminders
705 *
706- * reminders-app is free software: you can redistribute it and/or modify
707+ * reminders is free software: you can redistribute it and/or modify
708 * it under the terms of the GNU General Public License as published by
709 * the Free Software Foundation; version 3.
710 *
711- * reminders-app is distributed in the hope that it will be useful,
712+ * reminders is distributed in the hope that it will be useful,
713 * but WITHOUT ANY WARRANTY; without even the implied warranty of
714 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
715 * GNU General Public License for more details.
716
717=== modified file 'src/plugin/Evernote/jobs/fetchnotebooksjob.h'
718--- src/plugin/Evernote/jobs/fetchnotebooksjob.h 2013-11-29 20:58:04 +0000
719+++ src/plugin/Evernote/jobs/fetchnotebooksjob.h 2014-01-27 13:06:11 +0000
720@@ -1,13 +1,13 @@
721 /*
722 * Copyright: 2013 Canonical, Ltd
723 *
724- * This file is part of reminders-app
725+ * This file is part of reminders
726 *
727- * reminders-app is free software: you can redistribute it and/or modify
728+ * reminders is free software: you can redistribute it and/or modify
729 * it under the terms of the GNU General Public License as published by
730 * the Free Software Foundation; version 3.
731 *
732- * reminders-app is distributed in the hope that it will be useful,
733+ * reminders is distributed in the hope that it will be useful,
734 * but WITHOUT ANY WARRANTY; without even the implied warranty of
735 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
736 * GNU General Public License for more details.
737
738=== modified file 'src/plugin/Evernote/jobs/fetchnotejob.cpp'
739--- src/plugin/Evernote/jobs/fetchnotejob.cpp 2013-12-14 22:38:57 +0000
740+++ src/plugin/Evernote/jobs/fetchnotejob.cpp 2014-01-27 13:06:11 +0000
741@@ -1,13 +1,13 @@
742 /*
743 * Copyright: 2013 Canonical, Ltd
744 *
745- * This file is part of reminders-app
746+ * This file is part of reminders
747 *
748- * reminders-app is free software: you can redistribute it and/or modify
749+ * reminders is free software: you can redistribute it and/or modify
750 * it under the terms of the GNU General Public License as published by
751 * the Free Software Foundation; version 3.
752 *
753- * reminders-app is distributed in the hope that it will be useful,
754+ * reminders is distributed in the hope that it will be useful,
755 * but WITHOUT ANY WARRANTY; without even the implied warranty of
756 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
757 * GNU General Public License for more details.
758
759=== modified file 'src/plugin/Evernote/jobs/fetchnotejob.h'
760--- src/plugin/Evernote/jobs/fetchnotejob.h 2013-11-29 20:58:04 +0000
761+++ src/plugin/Evernote/jobs/fetchnotejob.h 2014-01-27 13:06:11 +0000
762@@ -1,13 +1,13 @@
763 /*
764 * Copyright: 2013 Canonical, Ltd
765 *
766- * This file is part of reminders-app
767+ * This file is part of reminders
768 *
769- * reminders-app is free software: you can redistribute it and/or modify
770+ * reminders is free software: you can redistribute it and/or modify
771 * it under the terms of the GNU General Public License as published by
772 * the Free Software Foundation; version 3.
773 *
774- * reminders-app is distributed in the hope that it will be useful,
775+ * reminders is distributed in the hope that it will be useful,
776 * but WITHOUT ANY WARRANTY; without even the implied warranty of
777 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
778 * GNU General Public License for more details.
779
780=== modified file 'src/plugin/Evernote/jobs/fetchnotesjob.cpp'
781--- src/plugin/Evernote/jobs/fetchnotesjob.cpp 2013-12-13 00:17:48 +0000
782+++ src/plugin/Evernote/jobs/fetchnotesjob.cpp 2014-01-27 13:06:11 +0000
783@@ -1,13 +1,13 @@
784 /*
785 * Copyright: 2013 Canonical, Ltd
786 *
787- * This file is part of reminders-app
788+ * This file is part of reminders
789 *
790- * reminders-app is free software: you can redistribute it and/or modify
791+ * reminders is free software: you can redistribute it and/or modify
792 * it under the terms of the GNU General Public License as published by
793 * the Free Software Foundation; version 3.
794 *
795- * reminders-app is distributed in the hope that it will be useful,
796+ * reminders is distributed in the hope that it will be useful,
797 * but WITHOUT ANY WARRANTY; without even the implied warranty of
798 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
799 * GNU General Public License for more details.
800
801=== modified file 'src/plugin/Evernote/jobs/fetchnotesjob.h'
802--- src/plugin/Evernote/jobs/fetchnotesjob.h 2013-12-18 20:57:07 +0000
803+++ src/plugin/Evernote/jobs/fetchnotesjob.h 2014-01-27 13:06:11 +0000
804@@ -1,13 +1,13 @@
805 /*
806 * Copyright: 2013 Canonical, Ltd
807 *
808- * This file is part of reminders-app
809+ * This file is part of reminders
810 *
811- * reminders-app is free software: you can redistribute it and/or modify
812+ * reminders is free software: you can redistribute it and/or modify
813 * it under the terms of the GNU General Public License as published by
814 * the Free Software Foundation; version 3.
815 *
816- * reminders-app is distributed in the hope that it will be useful,
817+ * reminders is distributed in the hope that it will be useful,
818 * but WITHOUT ANY WARRANTY; without even the implied warranty of
819 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
820 * GNU General Public License for more details.
821
822=== modified file 'src/plugin/Evernote/jobs/fetchusernamejob.cpp'
823--- src/plugin/Evernote/jobs/fetchusernamejob.cpp 2013-11-28 00:39:33 +0000
824+++ src/plugin/Evernote/jobs/fetchusernamejob.cpp 2014-01-27 13:06:11 +0000
825@@ -1,13 +1,13 @@
826 /*
827 * Copyright: 2013 Canonical, Ltd
828 *
829- * This file is part of reminders-app
830+ * This file is part of reminders
831 *
832- * reminders-app is free software: you can redistribute it and/or modify
833+ * reminders is free software: you can redistribute it and/or modify
834 * it under the terms of the GNU General Public License as published by
835 * the Free Software Foundation; version 3.
836 *
837- * reminders-app is distributed in the hope that it will be useful,
838+ * reminders is distributed in the hope that it will be useful,
839 * but WITHOUT ANY WARRANTY; without even the implied warranty of
840 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
841 * GNU General Public License for more details.
842
843=== modified file 'src/plugin/Evernote/jobs/fetchusernamejob.h'
844--- src/plugin/Evernote/jobs/fetchusernamejob.h 2013-11-28 00:39:33 +0000
845+++ src/plugin/Evernote/jobs/fetchusernamejob.h 2014-01-27 13:06:11 +0000
846@@ -1,13 +1,13 @@
847 /*
848 * Copyright: 2013 Canonical, Ltd
849 *
850- * This file is part of reminders-app
851+ * This file is part of reminders
852 *
853- * reminders-app is free software: you can redistribute it and/or modify
854+ * reminders is free software: you can redistribute it and/or modify
855 * it under the terms of the GNU General Public License as published by
856 * the Free Software Foundation; version 3.
857 *
858- * reminders-app is distributed in the hope that it will be useful,
859+ * reminders is distributed in the hope that it will be useful,
860 * but WITHOUT ANY WARRANTY; without even the implied warranty of
861 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
862 * GNU General Public License for more details.
863
864=== modified file 'src/plugin/Evernote/jobs/notesstorejob.cpp'
865--- src/plugin/Evernote/jobs/notesstorejob.cpp 2013-11-28 00:39:33 +0000
866+++ src/plugin/Evernote/jobs/notesstorejob.cpp 2014-01-27 13:06:11 +0000
867@@ -1,13 +1,13 @@
868 /*
869 * Copyright: 2013 Canonical, Ltd
870 *
871- * This file is part of reminders-app
872+ * This file is part of reminders
873 *
874- * reminders-app is free software: you can redistribute it and/or modify
875+ * reminders is free software: you can redistribute it and/or modify
876 * it under the terms of the GNU General Public License as published by
877 * the Free Software Foundation; version 3.
878 *
879- * reminders-app is distributed in the hope that it will be useful,
880+ * reminders is distributed in the hope that it will be useful,
881 * but WITHOUT ANY WARRANTY; without even the implied warranty of
882 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
883 * GNU General Public License for more details.
884
885=== modified file 'src/plugin/Evernote/jobs/notesstorejob.h'
886--- src/plugin/Evernote/jobs/notesstorejob.h 2013-11-28 00:39:33 +0000
887+++ src/plugin/Evernote/jobs/notesstorejob.h 2014-01-27 13:06:11 +0000
888@@ -1,13 +1,13 @@
889 /*
890 * Copyright: 2013 Canonical, Ltd
891 *
892- * This file is part of reminders-app
893+ * This file is part of reminders
894 *
895- * reminders-app is free software: you can redistribute it and/or modify
896+ * reminders is free software: you can redistribute it and/or modify
897 * it under the terms of the GNU General Public License as published by
898 * the Free Software Foundation; version 3.
899 *
900- * reminders-app is distributed in the hope that it will be useful,
901+ * reminders is distributed in the hope that it will be useful,
902 * but WITHOUT ANY WARRANTY; without even the implied warranty of
903 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
904 * GNU General Public License for more details.
905
906=== modified file 'src/plugin/Evernote/jobs/savenotejob.cpp'
907--- src/plugin/Evernote/jobs/savenotejob.cpp 2014-01-23 09:46:02 +0000
908+++ src/plugin/Evernote/jobs/savenotejob.cpp 2014-01-27 13:06:11 +0000
909@@ -1,13 +1,13 @@
910 /*
911 * Copyright: 2013 Canonical, Ltd
912 *
913- * This file is part of reminders-app
914+ * This file is part of reminders
915 *
916- * reminders-app is free software: you can redistribute it and/or modify
917+ * reminders is free software: you can redistribute it and/or modify
918 * it under the terms of the GNU General Public License as published by
919 * the Free Software Foundation; version 3.
920 *
921- * reminders-app is distributed in the hope that it will be useful,
922+ * reminders is distributed in the hope that it will be useful,
923 * but WITHOUT ANY WARRANTY; without even the implied warranty of
924 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
925 * GNU General Public License for more details.
926
927=== modified file 'src/plugin/Evernote/jobs/savenotejob.h'
928--- src/plugin/Evernote/jobs/savenotejob.h 2013-11-29 20:58:04 +0000
929+++ src/plugin/Evernote/jobs/savenotejob.h 2014-01-27 13:06:11 +0000
930@@ -1,13 +1,13 @@
931 /*
932 * Copyright: 2013 Canonical, Ltd
933 *
934- * This file is part of reminders-app
935+ * This file is part of reminders
936 *
937- * reminders-app is free software: you can redistribute it and/or modify
938+ * reminders is free software: you can redistribute it and/or modify
939 * it under the terms of the GNU General Public License as published by
940 * the Free Software Foundation; version 3.
941 *
942- * reminders-app is distributed in the hope that it will be useful,
943+ * reminders is distributed in the hope that it will be useful,
944 * but WITHOUT ANY WARRANTY; without even the implied warranty of
945 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
946 * GNU General Public License for more details.
947
948=== modified file 'src/plugin/Evernote/jobs/userstorejob.cpp'
949--- src/plugin/Evernote/jobs/userstorejob.cpp 2013-11-28 00:39:33 +0000
950+++ src/plugin/Evernote/jobs/userstorejob.cpp 2014-01-27 13:06:11 +0000
951@@ -1,13 +1,13 @@
952 /*
953 * Copyright: 2013 Canonical, Ltd
954 *
955- * This file is part of reminders-app
956+ * This file is part of reminders
957 *
958- * reminders-app is free software: you can redistribute it and/or modify
959+ * reminders is free software: you can redistribute it and/or modify
960 * it under the terms of the GNU General Public License as published by
961 * the Free Software Foundation; version 3.
962 *
963- * reminders-app is distributed in the hope that it will be useful,
964+ * reminders is distributed in the hope that it will be useful,
965 * but WITHOUT ANY WARRANTY; without even the implied warranty of
966 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
967 * GNU General Public License for more details.
968
969=== modified file 'src/plugin/Evernote/jobs/userstorejob.h'
970--- src/plugin/Evernote/jobs/userstorejob.h 2013-11-28 00:39:33 +0000
971+++ src/plugin/Evernote/jobs/userstorejob.h 2014-01-27 13:06:11 +0000
972@@ -1,13 +1,13 @@
973 /*
974 * Copyright: 2013 Canonical, Ltd
975 *
976- * This file is part of reminders-app
977+ * This file is part of reminders
978 *
979- * reminders-app is free software: you can redistribute it and/or modify
980+ * reminders is free software: you can redistribute it and/or modify
981 * it under the terms of the GNU General Public License as published by
982 * the Free Software Foundation; version 3.
983 *
984- * reminders-app is distributed in the hope that it will be useful,
985+ * reminders is distributed in the hope that it will be useful,
986 * but WITHOUT ANY WARRANTY; without even the implied warranty of
987 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
988 * GNU General Public License for more details.
989
990=== modified file 'src/plugin/Evernote/note.cpp'
991--- src/plugin/Evernote/note.cpp 2014-01-23 09:46:02 +0000
992+++ src/plugin/Evernote/note.cpp 2014-01-27 13:06:11 +0000
993@@ -1,13 +1,13 @@
994 /*
995 * Copyright: 2013 Canonical, Ltd
996 *
997- * This file is part of reminders-app
998+ * This file is part of reminders
999 *
1000- * reminders-app is free software: you can redistribute it and/or modify
1001+ * reminders is free software: you can redistribute it and/or modify
1002 * it under the terms of the GNU General Public License as published by
1003 * the Free Software Foundation; version 3.
1004 *
1005- * reminders-app is distributed in the hope that it will be useful,
1006+ * reminders is distributed in the hope that it will be useful,
1007 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1008 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1009 * GNU General Public License for more details.
1010
1011=== modified file 'src/plugin/Evernote/note.h'
1012--- src/plugin/Evernote/note.h 2014-01-24 18:13:04 +0000
1013+++ src/plugin/Evernote/note.h 2014-01-27 13:06:11 +0000
1014@@ -1,13 +1,13 @@
1015 /*
1016 * Copyright: 2013 Canonical, Ltd
1017 *
1018- * This file is part of reminders-app
1019+ * This file is part of reminders
1020 *
1021- * reminders-app is free software: you can redistribute it and/or modify
1022+ * reminders is free software: you can redistribute it and/or modify
1023 * it under the terms of the GNU General Public License as published by
1024 * the Free Software Foundation; version 3.
1025 *
1026- * reminders-app is distributed in the hope that it will be useful,
1027+ * reminders is distributed in the hope that it will be useful,
1028 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1029 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1030 * GNU General Public License for more details.
1031
1032=== modified file 'src/plugin/Evernote/notebook.cpp'
1033--- src/plugin/Evernote/notebook.cpp 2013-12-15 00:03:29 +0000
1034+++ src/plugin/Evernote/notebook.cpp 2014-01-27 13:06:11 +0000
1035@@ -1,13 +1,13 @@
1036 /*
1037 * Copyright: 2013 Canonical, Ltd
1038 *
1039- * This file is part of reminders-app
1040+ * This file is part of reminders
1041 *
1042- * reminders-app is free software: you can redistribute it and/or modify
1043+ * reminders is free software: you can redistribute it and/or modify
1044 * it under the terms of the GNU General Public License as published by
1045 * the Free Software Foundation; version 3.
1046 *
1047- * reminders-app is distributed in the hope that it will be useful,
1048+ * reminders is distributed in the hope that it will be useful,
1049 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1050 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1051 * GNU General Public License for more details.
1052
1053=== modified file 'src/plugin/Evernote/notebook.h'
1054--- src/plugin/Evernote/notebook.h 2014-01-10 12:00:26 +0000
1055+++ src/plugin/Evernote/notebook.h 2014-01-27 13:06:11 +0000
1056@@ -1,13 +1,13 @@
1057 /*
1058 * Copyright: 2013 Canonical, Ltd
1059 *
1060- * This file is part of reminders-app
1061+ * This file is part of reminders
1062 *
1063- * reminders-app is free software: you can redistribute it and/or modify
1064+ * reminders is free software: you can redistribute it and/or modify
1065 * it under the terms of the GNU General Public License as published by
1066 * the Free Software Foundation; version 3.
1067 *
1068- * reminders-app is distributed in the hope that it will be useful,
1069+ * reminders is distributed in the hope that it will be useful,
1070 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1071 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1072 * GNU General Public License for more details.
1073
1074=== modified file 'src/plugin/Evernote/notebooks.cpp'
1075--- src/plugin/Evernote/notebooks.cpp 2013-12-15 01:57:25 +0000
1076+++ src/plugin/Evernote/notebooks.cpp 2014-01-27 13:06:11 +0000
1077@@ -1,13 +1,13 @@
1078 /*
1079 * Copyright: 2013 Canonical, Ltd
1080 *
1081- * This file is part of reminders-app
1082+ * This file is part of reminders
1083 *
1084- * reminders-app is free software: you can redistribute it and/or modify
1085+ * reminders is free software: you can redistribute it and/or modify
1086 * it under the terms of the GNU General Public License as published by
1087 * the Free Software Foundation; version 3.
1088 *
1089- * reminders-app is distributed in the hope that it will be useful,
1090+ * reminders is distributed in the hope that it will be useful,
1091 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1092 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1093 * GNU General Public License for more details.
1094
1095=== modified file 'src/plugin/Evernote/notebooks.h'
1096--- src/plugin/Evernote/notebooks.h 2014-01-10 12:00:26 +0000
1097+++ src/plugin/Evernote/notebooks.h 2014-01-27 13:06:11 +0000
1098@@ -1,13 +1,13 @@
1099 /*
1100 * Copyright: 2013 Canonical, Ltd
1101 *
1102- * This file is part of reminders-app
1103+ * This file is part of reminders
1104 *
1105- * reminders-app is free software: you can redistribute it and/or modify
1106+ * reminders is free software: you can redistribute it and/or modify
1107 * it under the terms of the GNU General Public License as published by
1108 * the Free Software Foundation; version 3.
1109 *
1110- * reminders-app is distributed in the hope that it will be useful,
1111+ * reminders is distributed in the hope that it will be useful,
1112 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1113 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1114 * GNU General Public License for more details.
1115
1116=== modified file 'src/plugin/Evernote/notes.cpp'
1117--- src/plugin/Evernote/notes.cpp 2013-12-13 00:17:48 +0000
1118+++ src/plugin/Evernote/notes.cpp 2014-01-27 13:06:11 +0000
1119@@ -1,13 +1,13 @@
1120 /*
1121 * Copyright: 2013 Canonical, Ltd
1122 *
1123- * This file is part of reminders-app
1124+ * This file is part of reminders
1125 *
1126- * reminders-app is free software: you can redistribute it and/or modify
1127+ * reminders is free software: you can redistribute it and/or modify
1128 * it under the terms of the GNU General Public License as published by
1129 * the Free Software Foundation; version 3.
1130 *
1131- * reminders-app is distributed in the hope that it will be useful,
1132+ * reminders is distributed in the hope that it will be useful,
1133 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1134 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1135 * GNU General Public License for more details.
1136
1137=== modified file 'src/plugin/Evernote/notes.h'
1138--- src/plugin/Evernote/notes.h 2013-12-18 20:57:07 +0000
1139+++ src/plugin/Evernote/notes.h 2014-01-27 13:06:11 +0000
1140@@ -1,13 +1,13 @@
1141 /*
1142 * Copyright: 2013 Canonical, Ltd
1143 *
1144- * This file is part of reminders-app
1145+ * This file is part of reminders
1146 *
1147- * reminders-app is free software: you can redistribute it and/or modify
1148+ * reminders is free software: you can redistribute it and/or modify
1149 * it under the terms of the GNU General Public License as published by
1150 * the Free Software Foundation; version 3.
1151 *
1152- * reminders-app is distributed in the hope that it will be useful,
1153+ * reminders is distributed in the hope that it will be useful,
1154 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1155 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1156 * GNU General Public License for more details.
1157
1158=== modified file 'src/plugin/Evernote/notesstore.cpp'
1159--- src/plugin/Evernote/notesstore.cpp 2014-01-23 09:39:43 +0000
1160+++ src/plugin/Evernote/notesstore.cpp 2014-01-27 13:06:11 +0000
1161@@ -1,13 +1,13 @@
1162 /*
1163 * Copyright: 2013 Canonical, Ltd
1164 *
1165- * This file is part of reminders-app
1166+ * This file is part of reminders
1167 *
1168- * reminders-app is free software: you can redistribute it and/or modify
1169+ * reminders is free software: you can redistribute it and/or modify
1170 * it under the terms of the GNU General Public License as published by
1171 * the Free Software Foundation; version 3.
1172 *
1173- * reminders-app is distributed in the hope that it will be useful,
1174+ * reminders is distributed in the hope that it will be useful,
1175 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1176 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1177 * GNU General Public License for more details.
1178
1179=== modified file 'src/plugin/Evernote/notesstore.h'
1180--- src/plugin/Evernote/notesstore.h 2014-01-24 18:13:04 +0000
1181+++ src/plugin/Evernote/notesstore.h 2014-01-27 13:06:11 +0000
1182@@ -1,13 +1,13 @@
1183 /*
1184 * Copyright: 2013 Canonical, Ltd
1185 *
1186- * This file is part of reminders-app
1187+ * This file is part of reminders
1188 *
1189- * reminders-app is free software: you can redistribute it and/or modify
1190+ * reminders is free software: you can redistribute it and/or modify
1191 * it under the terms of the GNU General Public License as published by
1192 * the Free Software Foundation; version 3.
1193 *
1194- * reminders-app is distributed in the hope that it will be useful,
1195+ * reminders is distributed in the hope that it will be useful,
1196 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1197 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1198 * GNU General Public License for more details.
1199
1200=== modified file 'src/plugin/Evernote/resource.cpp'
1201--- src/plugin/Evernote/resource.cpp 2014-01-23 09:46:02 +0000
1202+++ src/plugin/Evernote/resource.cpp 2014-01-27 13:06:11 +0000
1203@@ -1,13 +1,13 @@
1204 /*
1205 * Copyright: 2013 Canonical, Ltd
1206 *
1207- * This file is part of reminders-app
1208+ * This file is part of reminders
1209 *
1210- * reminders-app is free software: you can redistribute it and/or modify
1211+ * reminders is free software: you can redistribute it and/or modify
1212 * it under the terms of the GNU General Public License as published by
1213 * the Free Software Foundation; version 3.
1214 *
1215- * reminders-app is distributed in the hope that it will be useful,
1216+ * reminders is distributed in the hope that it will be useful,
1217 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1218 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1219 * GNU General Public License for more details.
1220
1221=== modified file 'src/plugin/Evernote/resource.h'
1222--- src/plugin/Evernote/resource.h 2014-01-23 09:39:43 +0000
1223+++ src/plugin/Evernote/resource.h 2014-01-27 13:06:11 +0000
1224@@ -1,13 +1,13 @@
1225 /*
1226 * Copyright: 2013 Canonical, Ltd
1227 *
1228- * This file is part of reminders-app
1229+ * This file is part of reminders
1230 *
1231- * reminders-app is free software: you can redistribute it and/or modify
1232+ * reminders is free software: you can redistribute it and/or modify
1233 * it under the terms of the GNU General Public License as published by
1234 * the Free Software Foundation; version 3.
1235 *
1236- * reminders-app is distributed in the hope that it will be useful,
1237+ * reminders is distributed in the hope that it will be useful,
1238 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1239 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1240 * GNU General Public License for more details.
1241
1242=== modified file 'src/plugin/Evernote/userstore.cpp'
1243--- src/plugin/Evernote/userstore.cpp 2013-11-28 00:39:33 +0000
1244+++ src/plugin/Evernote/userstore.cpp 2014-01-27 13:06:11 +0000
1245@@ -1,13 +1,13 @@
1246 /*
1247 * Copyright: 2013 Canonical, Ltd
1248 *
1249- * This file is part of reminders-app
1250+ * This file is part of reminders
1251 *
1252- * reminders-app is free software: you can redistribute it and/or modify
1253+ * reminders is free software: you can redistribute it and/or modify
1254 * it under the terms of the GNU General Public License as published by
1255 * the Free Software Foundation; version 3.
1256 *
1257- * reminders-app is distributed in the hope that it will be useful,
1258+ * reminders is distributed in the hope that it will be useful,
1259 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1260 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1261 * GNU General Public License for more details.
1262
1263=== modified file 'src/plugin/Evernote/userstore.h'
1264--- src/plugin/Evernote/userstore.h 2013-11-29 20:58:04 +0000
1265+++ src/plugin/Evernote/userstore.h 2014-01-27 13:06:11 +0000
1266@@ -1,13 +1,13 @@
1267 /*
1268 * Copyright: 2013 Canonical, Ltd
1269 *
1270- * This file is part of reminders-app
1271+ * This file is part of reminders
1272 *
1273- * reminders-app is free software: you can redistribute it and/or modify
1274+ * reminders is free software: you can redistribute it and/or modify
1275 * it under the terms of the GNU General Public License as published by
1276 * the Free Software Foundation; version 3.
1277 *
1278- * reminders-app is distributed in the hope that it will be useful,
1279+ * reminders is distributed in the hope that it will be useful,
1280 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1281 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1282 * GNU General Public License for more details.
1283
1284=== modified file 'src/plugin/Evernote/utils/enmldocument.cpp'
1285--- src/plugin/Evernote/utils/enmldocument.cpp 2014-01-24 18:13:04 +0000
1286+++ src/plugin/Evernote/utils/enmldocument.cpp 2014-01-27 13:06:11 +0000
1287@@ -1,13 +1,13 @@
1288 /*
1289 * Copyright: 2013 Canonical, Ltd
1290 *
1291- * This file is part of reminders-app
1292+ * This file is part of reminders
1293 *
1294- * reminders-app is free software: you can redistribute it and/or modify
1295+ * reminders is free software: you can redistribute it and/or modify
1296 * it under the terms of the GNU General Public License as published by
1297 * the Free Software Foundation; version 3.
1298 *
1299- * reminders-app is distributed in the hope that it will be useful,
1300+ * reminders is distributed in the hope that it will be useful,
1301 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1302 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1303 * GNU General Public License for more details.
1304
1305=== modified file 'src/plugin/Evernote/utils/enmldocument.h'
1306--- src/plugin/Evernote/utils/enmldocument.h 2014-01-24 18:13:04 +0000
1307+++ src/plugin/Evernote/utils/enmldocument.h 2014-01-27 13:06:11 +0000
1308@@ -1,13 +1,13 @@
1309 /*
1310 * Copyright: 2013 Canonical, Ltd
1311 *
1312- * This file is part of reminders-app
1313+ * This file is part of reminders
1314 *
1315- * reminders-app is free software: you can redistribute it and/or modify
1316+ * reminders is free software: you can redistribute it and/or modify
1317 * it under the terms of the GNU General Public License as published by
1318 * the Free Software Foundation; version 3.
1319 *
1320- * reminders-app is distributed in the hope that it will be useful,
1321+ * reminders is distributed in the hope that it will be useful,
1322 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1323 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1324 * GNU General Public License for more details.
1325
1326=== renamed directory 'tests/autopilot/reminders_app' => 'tests/autopilot/reminders'
1327=== modified file 'tests/autopilot/reminders/main/test_main.py'
1328--- tests/autopilot/reminders_app/main/test_main.py 2013-11-22 19:10:05 +0000
1329+++ tests/autopilot/reminders/main/test_main.py 2014-01-27 13:06:11 +0000
1330@@ -14,9 +14,9 @@
1331 """Generic tests for the Hello World"""
1332
1333 if os.path.realpath(__file__).startswith("/usr/"):
1334- test_qml_file = "/usr/share/reminders-app/qml/reminders-app.qml"
1335+ test_qml_file = "/usr/share/reminders/qml/reminders.qml"
1336 else:
1337- test_qml_file = "%s/%s.qml" % (os.path.dirname(os.path.realpath(__file__)),"../../../../src/app/qml/reminders-app")
1338+ test_qml_file = "%s/%s.qml" % (os.path.dirname(os.path.realpath(__file__)),"../../../../src/app/qml/reminders")
1339
1340 def test_0_can_select_mainView(self):
1341 """Must be able to select the mainview."""
1342
1343=== modified file 'tests/autopilot/run'
1344--- tests/autopilot/run 2013-10-23 11:02:37 +0000
1345+++ tests/autopilot/run 2014-01-27 13:06:11 +0000
1346@@ -7,5 +7,5 @@
1347
1348 SCRIPTPATH=`dirname $0`
1349 pushd ${SCRIPTPATH}
1350-autopilot run reminders-app
1351+autopilot run reminders
1352 popd

Subscribers

People subscribed via source and target branches