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
=== modified file '.bzrignore'
--- .bzrignore 2013-11-21 23:30:15 +0000
+++ .bzrignore 2014-01-27 13:06:11 +0000
@@ -1,2 +1,2 @@
1reminders-app.qmlproject.user1CMakeLists.txt.user
2reminders-app.pro.user2builddir
33
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2014-01-19 13:59:12 +0000
+++ CMakeLists.txt 2014-01-27 13:06:11 +0000
@@ -20,8 +20,8 @@
20set(APP_NAME reminders)20set(APP_NAME reminders)
21set(DESKTOP_FILE "${PROJECT_NAME}_${APP_NAME}.desktop")21set(DESKTOP_FILE "${PROJECT_NAME}_${APP_NAME}.desktop")
22set(ICON ${APP_NAME}.png)22set(ICON ${APP_NAME}.png)
23set(AUTOPILOT_DIR reminders_app)23set(AUTOPILOT_DIR reminders)
24set(APP_HARDCODE reminders-app)24set(APP_HARDCODE reminders)
25set(MAIN_QML ${APP_HARDCODE}.qml)25set(MAIN_QML ${APP_HARDCODE}.qml)
2626
27if(CLICK_MODE)27if(CLICK_MODE)
@@ -37,10 +37,6 @@
37 set(DESKTOP_DIR ${DATA_DIR})37 set(DESKTOP_DIR ${DATA_DIR})
38else(CLICK_MODE)38else(CLICK_MODE)
39 set(DATA_DIR ${CMAKE_INSTALL_DATADIR}/${APP_HARDCODE})39 set(DATA_DIR ${CMAKE_INSTALL_DATADIR}/${APP_HARDCODE})
40 configure_file(${APP_HARDCODE}.in
41 ${CMAKE_CURRENT_BINARY_DIR}/${APP_HARDCODE})
42 install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/${APP_HARDCODE}
43 DESTINATION ${CMAKE_INSTALL_BINDIR})
44 set(EXEC "qmlscene $@ ${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/qml/${MAIN_QML}")40 set(EXEC "qmlscene $@ ${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/qml/${MAIN_QML}")
45 set(ICON "${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/${ICON}")41 set(ICON "${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/${ICON}")
46 set(DESKTOP_DIR ${CMAKE_INSTALL_DATADIR}/applications)42 set(DESKTOP_DIR ${CMAKE_INSTALL_DATADIR}/applications)
4743
=== removed file 'deployment.pri'
--- deployment.pri 2013-11-21 23:30:15 +0000
+++ deployment.pri 1970-01-01 00:00:00 +0000
@@ -1,25 +0,0 @@
1copyCommand =
2for(deploymentfolder, DEPLOYMENTFOLDERS) {
3 source = $$PWD/$$eval($${deploymentfolder}.source)
4message(source: $$eval($${deploymentfolder}.source))
5 source = $$replace(source, \\\\, /)
6 target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
7 target = $$replace(target, \\\\, /)
8 sourcePathSegments = $$split(source, /)
9 targetFullPath = $$target/$$last(sourcePathSegments)
10 targetFullPath ~= s,/\\.?/,/,
11 !isEqual(source,$$targetFullPath) {
12 !isEmpty(copyCommand):copyCommand += &&
13 copyCommand += $(MKDIR) \"$$target\"
14 copyCommand += && $(COPY_DIR) \"$$source\" \"$$target\"
15 }
16}
17!isEmpty(copyCommand) {
18 copyCommand = @echo Copying application data... && $$copyCommand
19 copydeploymentfolders.commands = $$copyCommand
20 first.depends = $(first) copydeploymentfolders
21 export(first.depends)
22 export(copydeploymentfolders.commands)
23 QMAKE_EXTRA_TARGETS += first copydeploymentfolders
24}
25
260
=== removed file 'reminders-app.in'
--- reminders-app.in 2014-01-19 13:59:12 +0000
+++ reminders-app.in 1970-01-01 00:00:00 +0000
@@ -1,3 +0,0 @@
1#!/bin/sh
2export QT_SELECT=qt5
3qmlscene @CMAKE_INSTALL_PREFIX@/@DATA_DIR@/@MAIN_QML@
40
=== modified file 'run_on_ubuntu_touch.sh'
--- run_on_ubuntu_touch.sh 2014-01-24 18:18:26 +0000
+++ run_on_ubuntu_touch.sh 2014-01-27 13:06:11 +0000
@@ -1,11 +1,11 @@
1#!/bin/sh1#!/bin/sh
2CODE_DIR=reminders-app2CODE_DIR=reminders
3BUILD_DIR=builddir3BUILD_DIR=builddir
4USER=phablet4USER=phablet
5USER_ID=320115USER_ID=32011
6PASSWORD=phablet6PASSWORD=phablet
7PACKAGE=reminders-app7PACKAGE=reminders
8BINARY=reminders-app8BINARY=reminders
9TARGET_IP=${TARGET_IP-127.0.0.1}9TARGET_IP=${TARGET_IP-127.0.0.1}
10TARGET_SSH_PORT=${TARGET_SSH_PORT-2222}10TARGET_SSH_PORT=${TARGET_SSH_PORT-2222}
11TARGET_DEBUG_PORT=376811TARGET_DEBUG_PORT=3768
@@ -61,20 +61,14 @@
6161
62build() {62build() {
63 exec_with_ssh mkdir -p $CODE_DIR/$BUILD_DIR63 exec_with_ssh mkdir -p $CODE_DIR/$BUILD_DIR
64 exec_with_ssh PATH=/usr/lib/ccache:$PATH "cd $CODE_DIR/$BUILD_DIR && PATH=/usr/lib/ccache:$PATH QT_SELECT=qt5 cmake .."64 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"
65 exec_with_ssh PATH=/usr/lib/ccache:$PATH "cd $CODE_DIR/$BUILD_DIR && PATH=/usr/lib/ccache:$PATH make -j2"65 exec_with_ssh PATH=/usr/lib/ccache:$PATH "cd $CODE_DIR/$BUILD_DIR && PATH=/usr/lib/ccache:$PATH make -j2"
66}66}
6767
68build_click_package() {68build_click_package() {
69 exec_with_ssh mkdir -p $CODE_DIR/$BUILD_DIR/install69 exec_with_ssh "cd $CODE_DIR/$BUILD_DIR/ && make install DESTDIR=install"
70 exec_with_ssh rm -rf $CODE_DIR/$BUILD_DIR/install/*
71 exec_with_ssh cp -r $CODE_DIR/src/app/qml $CODE_DIR/$BUILD_DIR/install
72 exec_with_ssh cp $CODE_DIR/*.json $CODE_DIR/$BUILD_DIR/install
73 exec_with_ssh cp $CODE_DIR/apparmor/*.json $CODE_DIR/$BUILD_DIR/install
74 exec_with_ssh cp $CODE_DIR/$PACKAGE.desktop $CODE_DIR/$BUILD_DIR/install
75 exec_with_ssh cp $CODE_DIR/$PACKAGE.png $CODE_DIR/$BUILD_DIR/install
76 exec_with_ssh cp -r $CODE_DIR/$BUILD_DIR/src/plugin/Evernote $CODE_DIR/$BUILD_DIR/install/
77 exec_with_ssh click build $CODE_DIR/$BUILD_DIR/install70 exec_with_ssh click build $CODE_DIR/$BUILD_DIR/install
71
78 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -P $TARGET_SSH_PORT $USER@$TARGET_IP:/home/phablet/com.ubuntu*$PACKAGE*.click .72 scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -P $TARGET_SSH_PORT $USER@$TARGET_IP:/home/phablet/com.ubuntu*$PACKAGE*.click .
79}73}
8074
8175
=== modified file 'src/app/CMakeLists.txt'
--- src/app/CMakeLists.txt 2014-01-19 13:59:12 +0000
+++ src/app/CMakeLists.txt 2014-01-27 13:06:11 +0000
@@ -1,15 +1,15 @@
1file(GLOB_RECURSE QML_SRCS *.qml *.js)1file(GLOB_RECURSE QML_SRCS *.qml *.js)
22
3set(reminders-app_SRCS3set(reminders_SRCS
4 main.cpp4 main.cpp
5 ${QML_SRCS}5 ${QML_SRCS}
6)6)
77
8add_executable(reminders-app ${reminders-app_SRCS})8add_executable(reminders ${reminders_SRCS})
99
10qt5_use_modules(reminders-app Gui Qml Quick)10qt5_use_modules(reminders Gui Qml Quick)
1111
12add_custom_target(reminders-app-qmlfiles ALL12add_custom_target(reminders-qmlfiles ALL
13 COMMAND cp -r ${CMAKE_CURRENT_SOURCE_DIR}/qml ${CMAKE_CURRENT_BINARY_DIR}13 COMMAND cp -r ${CMAKE_CURRENT_SOURCE_DIR}/qml ${CMAKE_CURRENT_BINARY_DIR}
14 DEPENDS ${QMLFILES}14 DEPENDS ${QMLFILES}
15)15)
1616
=== modified file 'src/app/main.cpp'
--- src/app/main.cpp 2013-11-26 17:18:33 +0000
+++ src/app/main.cpp 2014-01-27 13:06:11 +0000
@@ -1,14 +1,14 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.9 * (at your option) any later version.
10 *10 *
11 * reminders-app is distributed in the hope that it will be useful,11 * reminders is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.14 * GNU General Public License for more details.
@@ -30,7 +30,7 @@
30 * import path for the plugin preconfigured. This is just used for easier30 * import path for the plugin preconfigured. This is just used for easier
31 * development and while we can ship this, we could also run the app ourselves31 * development and while we can ship this, we could also run the app ourselves
32 * with:32 * with:
33 * qmlscene -I /path/to/plugin/ reminders-app.qml33 * qmlscene -I /path/to/plugin/ reminders.qml
34 */34 */
3535
36int main(int argc, char *argv[])36int main(int argc, char *argv[])
@@ -47,7 +47,7 @@
47 view.engine()->setImportPathList(importPathList);47 view.engine()->setImportPathList(importPathList);
4848
49 // and directly load the qml file49 // and directly load the qml file
50 view.setSource(QUrl::fromLocalFile("qml/reminders-app.qml"));50 view.setSource(QUrl::fromLocalFile("qml/reminders.qml"));
5151
52 view.show();52 view.show();
5353
5454
=== modified file 'src/app/qml/components/NotebooksDelegate.qml'
--- src/app/qml/components/NotebooksDelegate.qml 2013-12-14 23:59:04 +0000
+++ src/app/qml/components/NotebooksDelegate.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/components/NotesDelegate.qml'
--- src/app/qml/components/NotesDelegate.qml 2013-12-14 23:59:04 +0000
+++ src/app/qml/components/NotesDelegate.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/components/ToolbarSpacer.qml'
--- src/app/qml/components/ToolbarSpacer.qml 2013-12-14 00:04:11 +0000
+++ src/app/qml/components/ToolbarSpacer.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== renamed file 'src/app/qml/reminders-app.qml' => 'src/app/qml/reminders.qml'
--- src/app/qml/reminders-app.qml 2014-01-23 09:39:43 +0000
+++ src/app/qml/reminders.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
@@ -31,7 +31,7 @@
31 objectName: "mainView"31 objectName: "mainView"
3232
33 // Note! applicationName needs to match the "name" field of the click manifest33 // Note! applicationName needs to match the "name" field of the click manifest
34 applicationName: "com.ubuntu.reminders-app"34 applicationName: "com.ubuntu.reminders"
3535
36 /*36 /*
37 This property enables the application to change orientation37 This property enables the application to change orientation
3838
=== modified file 'src/app/qml/ui/AccountSelectorPage.qml'
--- src/app/qml/ui/AccountSelectorPage.qml 2013-11-28 00:39:33 +0000
+++ src/app/qml/ui/AccountSelectorPage.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/ui/EditNotePage.qml'
--- src/app/qml/ui/EditNotePage.qml 2014-01-27 11:59:15 +0000
+++ src/app/qml/ui/EditNotePage.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/ui/NotePage.qml'
--- src/app/qml/ui/NotePage.qml 2013-12-18 20:56:34 +0000
+++ src/app/qml/ui/NotePage.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/ui/NotebooksPage.qml'
--- src/app/qml/ui/NotebooksPage.qml 2013-12-15 02:48:04 +0000
+++ src/app/qml/ui/NotebooksPage.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/ui/NotesPage.qml'
--- src/app/qml/ui/NotesPage.qml 2014-01-23 09:39:43 +0000
+++ src/app/qml/ui/NotesPage.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/ui/RemindersPage.qml'
--- src/app/qml/ui/RemindersPage.qml 2013-12-15 02:48:04 +0000
+++ src/app/qml/ui/RemindersPage.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/app/qml/ui/SearchNotesPage.qml'
--- src/app/qml/ui/SearchNotesPage.qml 2013-12-14 22:38:57 +0000
+++ src/app/qml/ui/SearchNotesPage.qml 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/evernoteconnection.cpp'
--- src/plugin/Evernote/evernoteconnection.cpp 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/evernoteconnection.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/evernoteconnection.h'
--- src/plugin/Evernote/evernoteconnection.h 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/evernoteconnection.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/evernoteplugin.cpp'
--- src/plugin/Evernote/evernoteplugin.cpp 2014-01-23 09:39:43 +0000
+++ src/plugin/Evernote/evernoteplugin.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/createnotebookjob.cpp'
--- src/plugin/Evernote/jobs/createnotebookjob.cpp 2013-12-12 22:45:59 +0000
+++ src/plugin/Evernote/jobs/createnotebookjob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/createnotebookjob.h'
--- src/plugin/Evernote/jobs/createnotebookjob.h 2013-12-12 22:45:59 +0000
+++ src/plugin/Evernote/jobs/createnotebookjob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/createnotejob.cpp'
--- src/plugin/Evernote/jobs/createnotejob.cpp 2014-01-23 09:46:02 +0000
+++ src/plugin/Evernote/jobs/createnotejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/createnotejob.h'
--- src/plugin/Evernote/jobs/createnotejob.h 2014-01-23 09:39:43 +0000
+++ src/plugin/Evernote/jobs/createnotejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/deletenotejob.cpp'
--- src/plugin/Evernote/jobs/deletenotejob.cpp 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/deletenotejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/deletenotejob.h'
--- src/plugin/Evernote/jobs/deletenotejob.h 2013-11-29 20:58:04 +0000
+++ src/plugin/Evernote/jobs/deletenotejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/evernotejob.cpp'
--- src/plugin/Evernote/jobs/evernotejob.cpp 2013-12-15 02:48:04 +0000
+++ src/plugin/Evernote/jobs/evernotejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/evernotejob.h'
--- src/plugin/Evernote/jobs/evernotejob.h 2013-11-29 20:58:04 +0000
+++ src/plugin/Evernote/jobs/evernotejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/expungenotebookjob.cpp'
--- src/plugin/Evernote/jobs/expungenotebookjob.cpp 2013-12-12 22:45:59 +0000
+++ src/plugin/Evernote/jobs/expungenotebookjob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/expungenotebookjob.h'
--- src/plugin/Evernote/jobs/expungenotebookjob.h 2013-12-12 22:45:59 +0000
+++ src/plugin/Evernote/jobs/expungenotebookjob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchnotebooksjob.cpp'
--- src/plugin/Evernote/jobs/fetchnotebooksjob.cpp 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/fetchnotebooksjob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchnotebooksjob.h'
--- src/plugin/Evernote/jobs/fetchnotebooksjob.h 2013-11-29 20:58:04 +0000
+++ src/plugin/Evernote/jobs/fetchnotebooksjob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchnotejob.cpp'
--- src/plugin/Evernote/jobs/fetchnotejob.cpp 2013-12-14 22:38:57 +0000
+++ src/plugin/Evernote/jobs/fetchnotejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchnotejob.h'
--- src/plugin/Evernote/jobs/fetchnotejob.h 2013-11-29 20:58:04 +0000
+++ src/plugin/Evernote/jobs/fetchnotejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchnotesjob.cpp'
--- src/plugin/Evernote/jobs/fetchnotesjob.cpp 2013-12-13 00:17:48 +0000
+++ src/plugin/Evernote/jobs/fetchnotesjob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchnotesjob.h'
--- src/plugin/Evernote/jobs/fetchnotesjob.h 2013-12-18 20:57:07 +0000
+++ src/plugin/Evernote/jobs/fetchnotesjob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchusernamejob.cpp'
--- src/plugin/Evernote/jobs/fetchusernamejob.cpp 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/fetchusernamejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/fetchusernamejob.h'
--- src/plugin/Evernote/jobs/fetchusernamejob.h 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/fetchusernamejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/notesstorejob.cpp'
--- src/plugin/Evernote/jobs/notesstorejob.cpp 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/notesstorejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/notesstorejob.h'
--- src/plugin/Evernote/jobs/notesstorejob.h 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/notesstorejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/savenotejob.cpp'
--- src/plugin/Evernote/jobs/savenotejob.cpp 2014-01-23 09:46:02 +0000
+++ src/plugin/Evernote/jobs/savenotejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/savenotejob.h'
--- src/plugin/Evernote/jobs/savenotejob.h 2013-11-29 20:58:04 +0000
+++ src/plugin/Evernote/jobs/savenotejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/userstorejob.cpp'
--- src/plugin/Evernote/jobs/userstorejob.cpp 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/userstorejob.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/jobs/userstorejob.h'
--- src/plugin/Evernote/jobs/userstorejob.h 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/jobs/userstorejob.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/note.cpp'
--- src/plugin/Evernote/note.cpp 2014-01-23 09:46:02 +0000
+++ src/plugin/Evernote/note.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/note.h'
--- src/plugin/Evernote/note.h 2014-01-24 18:13:04 +0000
+++ src/plugin/Evernote/note.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notebook.cpp'
--- src/plugin/Evernote/notebook.cpp 2013-12-15 00:03:29 +0000
+++ src/plugin/Evernote/notebook.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notebook.h'
--- src/plugin/Evernote/notebook.h 2014-01-10 12:00:26 +0000
+++ src/plugin/Evernote/notebook.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notebooks.cpp'
--- src/plugin/Evernote/notebooks.cpp 2013-12-15 01:57:25 +0000
+++ src/plugin/Evernote/notebooks.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notebooks.h'
--- src/plugin/Evernote/notebooks.h 2014-01-10 12:00:26 +0000
+++ src/plugin/Evernote/notebooks.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notes.cpp'
--- src/plugin/Evernote/notes.cpp 2013-12-13 00:17:48 +0000
+++ src/plugin/Evernote/notes.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notes.h'
--- src/plugin/Evernote/notes.h 2013-12-18 20:57:07 +0000
+++ src/plugin/Evernote/notes.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notesstore.cpp'
--- src/plugin/Evernote/notesstore.cpp 2014-01-23 09:39:43 +0000
+++ src/plugin/Evernote/notesstore.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/notesstore.h'
--- src/plugin/Evernote/notesstore.h 2014-01-24 18:13:04 +0000
+++ src/plugin/Evernote/notesstore.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/resource.cpp'
--- src/plugin/Evernote/resource.cpp 2014-01-23 09:46:02 +0000
+++ src/plugin/Evernote/resource.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/resource.h'
--- src/plugin/Evernote/resource.h 2014-01-23 09:39:43 +0000
+++ src/plugin/Evernote/resource.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/userstore.cpp'
--- src/plugin/Evernote/userstore.cpp 2013-11-28 00:39:33 +0000
+++ src/plugin/Evernote/userstore.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/userstore.h'
--- src/plugin/Evernote/userstore.h 2013-11-29 20:58:04 +0000
+++ src/plugin/Evernote/userstore.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/utils/enmldocument.cpp'
--- src/plugin/Evernote/utils/enmldocument.cpp 2014-01-24 18:13:04 +0000
+++ src/plugin/Evernote/utils/enmldocument.cpp 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== modified file 'src/plugin/Evernote/utils/enmldocument.h'
--- src/plugin/Evernote/utils/enmldocument.h 2014-01-24 18:13:04 +0000
+++ src/plugin/Evernote/utils/enmldocument.h 2014-01-27 13:06:11 +0000
@@ -1,13 +1,13 @@
1/*1/*
2 * Copyright: 2013 Canonical, Ltd2 * Copyright: 2013 Canonical, Ltd
3 *3 *
4 * This file is part of reminders-app4 * This file is part of reminders
5 *5 *
6 * reminders-app is free software: you can redistribute it and/or modify6 * reminders is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 3.8 * the Free Software Foundation; version 3.
9 *9 *
10 * reminders-app is distributed in the hope that it will be useful,10 * reminders is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.13 * GNU General Public License for more details.
1414
=== renamed directory 'tests/autopilot/reminders_app' => 'tests/autopilot/reminders'
=== modified file 'tests/autopilot/reminders/main/test_main.py'
--- tests/autopilot/reminders_app/main/test_main.py 2013-11-22 19:10:05 +0000
+++ tests/autopilot/reminders/main/test_main.py 2014-01-27 13:06:11 +0000
@@ -14,9 +14,9 @@
14 """Generic tests for the Hello World"""14 """Generic tests for the Hello World"""
1515
16 if os.path.realpath(__file__).startswith("/usr/"):16 if os.path.realpath(__file__).startswith("/usr/"):
17 test_qml_file = "/usr/share/reminders-app/qml/reminders-app.qml"17 test_qml_file = "/usr/share/reminders/qml/reminders.qml"
18 else:18 else:
19 test_qml_file = "%s/%s.qml" % (os.path.dirname(os.path.realpath(__file__)),"../../../../src/app/qml/reminders-app")19 test_qml_file = "%s/%s.qml" % (os.path.dirname(os.path.realpath(__file__)),"../../../../src/app/qml/reminders")
2020
21 def test_0_can_select_mainView(self):21 def test_0_can_select_mainView(self):
22 """Must be able to select the mainview."""22 """Must be able to select the mainview."""
2323
=== modified file 'tests/autopilot/run'
--- tests/autopilot/run 2013-10-23 11:02:37 +0000
+++ tests/autopilot/run 2014-01-27 13:06:11 +0000
@@ -7,5 +7,5 @@
77
8SCRIPTPATH=`dirname $0`8SCRIPTPATH=`dirname $0`
9pushd ${SCRIPTPATH}9pushd ${SCRIPTPATH}
10autopilot run reminders-app10autopilot run reminders
11popd11popd

Subscribers

People subscribed via source and target branches