Merge lp:~themuso/ubuntu-terminal-app/yakkety-packaging-updates into lp:~ubuntu-terminal-dev/ubuntu-terminal-app/reboot

Proposed by Luke Yelavich
Status: Merged
Approved by: Alan Pope 🍺🐧🐱 πŸ¦„
Approved revision: 218
Merged at revision: 209
Proposed branch: lp:~themuso/ubuntu-terminal-app/yakkety-packaging-updates
Merge into: lp:~ubuntu-terminal-dev/ubuntu-terminal-app/reboot
Diff against target: 772 lines (+532/-7)
26 files modified
CMakeLists.txt (+1/-0)
debian/changelog (+11/-0)
debian/control (+3/-3)
debian/copyright (+96/-4)
src/app/fileio.cpp (+21/-0)
src/app/fileio.h (+21/-0)
src/app/qml/AlternateActionPopover.qml (+17/-0)
src/app/qml/CircularTransparentButton.qml (+17/-0)
src/app/qml/ExpandableButton.qml (+17/-0)
src/app/qml/KeyboardBar.qml (+17/-0)
src/app/qml/KeyboardRows/ExpandableKeyboardButton.qml (+17/-0)
src/app/qml/KeyboardRows/JsonTranslator.qml (+17/-0)
src/app/qml/KeyboardRows/KeyModel.qml (+17/-0)
src/app/qml/KeyboardRows/KeyboardButton.qml (+17/-0)
src/app/qml/KeyboardRows/KeyboardLayout.qml (+17/-0)
src/app/qml/KeyboardRows/KeyboardRow.qml (+17/-0)
src/app/qml/PressFeedback.qml (+17/-0)
src/app/qml/TabsModel.qml (+17/-0)
src/app/qml/TabsPage.qml (+17/-0)
src/app/qml/TerminalComponent.qml (+17/-0)
src/app/qml/TerminalInputArea.qml (+17/-0)
src/app/qml/TerminalKeyboardShortcutHandler.qml (+17/-0)
src/app/qml/TerminalPage.qml (+17/-0)
src/app/qml/TerminalSettings.qml (+17/-0)
src/app/qml/ubuntu-terminal-app.qml (+17/-0)
terminal.1 (+56/-0)
To merge this branch: bzr merge lp:~themuso/ubuntu-terminal-app/yakkety-packaging-updates
Reviewer Review Type Date Requested Status
Jenkins Bot continuous-integration Approve
Alan Pope 🍺🐧🐱 πŸ¦„ (community) Approve
Review via email: mp+306050@code.launchpad.net

Commit message

Packaging fixes in preparation for yakkety:
* Added copyright headers to src/app/qml files that didn't have it.
* Added a manpage to satisfy lintian.
* Updated debian/copyright.

Description of the change

Packaging fixes in preparation for yakkety:
* Added copyright headers to src/app/qml files that didn't have it.
* Added a manpage to satisfy lintian.
* Updated debian/copyright.

To post a comment you must log in.
Revision history for this message
Alan Pope 🍺🐧🐱 πŸ¦„ (popey) wrote :

Many thanks Luke!

review: Approve
Revision history for this message
Jenkins Bot (ubuntu-core-apps-jenkins-bot) :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2015-02-03 10:24:54 +0000
+++ CMakeLists.txt 2016-09-19 00:47:22 +0000
@@ -72,6 +72,7 @@
72 set(DATA_DIR ${CMAKE_INSTALL_DATADIR}/${APP_NAME})72 set(DATA_DIR ${CMAKE_INSTALL_DATADIR}/${APP_NAME})
73 set(ICON ${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/${ICON_FILE})73 set(ICON ${CMAKE_INSTALL_PREFIX}/${DATA_DIR}/${ICON_FILE})
74 set(DESKTOP_DIR ${CMAKE_INSTALL_DATADIR}/applications)74 set(DESKTOP_DIR ${CMAKE_INSTALL_DATADIR}/applications)
75 install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/terminal.1 DESTINATION ${CMAKE_INSTALL_DATADIR}/man/man1)
75endif(CLICK_MODE)76endif(CLICK_MODE)
7677
77file(GLOB_RECURSE I18N_SRC_FILES78file(GLOB_RECURSE I18N_SRC_FILES
7879
=== modified file 'debian/changelog'
--- debian/changelog 2015-07-04 08:41:27 +0000
+++ debian/changelog 2016-09-19 00:47:22 +0000
@@ -1,3 +1,14 @@
1ubuntu-terminal-app (0.7ubuntu1) UNRELEASED; urgency=medium
2
3 * Get packaging ready for inclusion in yakkety (LP: #1623845)
4 * Update standards version
5 * Fix up build dependency formatting
6 * Added manpage
7 * Update copyright
8 * Update Vcs-bzr field
9
10 -- Luke Yelavich <themuso@ubuntu.com> Fri, 16 Sep 2016 09:04:28 +1000
11
1ubuntu-terminal-app (0.7) wily; urgency=medium12ubuntu-terminal-app (0.7) wily; urgency=medium
213
3 * Bumped changelog version (LP: #1468385)14 * Bumped changelog version (LP: #1468385)
415
=== modified file 'debian/control'
--- debian/control 2016-03-15 14:20:16 +0000
+++ debian/control 2016-09-19 00:47:22 +0000
@@ -9,11 +9,11 @@
9 libpam0g-dev,9 libpam0g-dev,
10 qtbase5-dev,10 qtbase5-dev,
11 qtdeclarative5-dev,11 qtdeclarative5-dev,
12 qt5-default,12 qt5-default
13Standards-Version: 3.9.613Standards-Version: 3.9.8
14Section: misc14Section: misc
15Homepage: https://launchpad.net/ubuntu-terminal-app15Homepage: https://launchpad.net/ubuntu-terminal-app
16Vcs-Bzr: https://code.launchpad.net/~ubuntu-terminal-dev/ubuntu-terminal-app/trunk16Vcs-Bzr: https://code.launchpad.net/~ubuntu-terminal-dev/ubuntu-terminal-app/reboot
1717
18Package: ubuntu-terminal-app18Package: ubuntu-terminal-app
19Section: misc19Section: misc
2020
=== modified file 'debian/copyright'
--- debian/copyright 2014-10-25 04:42:31 +0000
+++ debian/copyright 2016-09-19 00:47:22 +0000
@@ -11,6 +11,49 @@
11 2013 Sam Hewitt <snwh@ubuntu.com>11 2013 Sam Hewitt <snwh@ubuntu.com>
12License: GPL-312License: GPL-3
1313
14Files: src/app/*
15Copyright: 2013-2014 Canonical Ltd.
16License: GPL-3+
17
18Files: src/app/qml/*
19Copyright: 2013-2014 Canonical Ltd.
20 2014 Canonical Ltd.
21 2013, 2014, 2016 Canonical Ltd.
22 2013, 2014 Canonical Ltd.
23License: GPL-3
24
25Files: src/app/plugin/konsole/*
26 src/plugin/qmltermwidget/lib/*
27Copyright: 2000 Stephan Kulow <coolo@kde.org>
28 2008 e_k <e_k@users.sourceforge.net>
29 2007-2008 Robert Knight <robertknight@gmail.com>
30 1997-1998 Lars Doelle <lars.doelle@on-line.de>
31 1996 Matthias Ettrich <ettrich@kde.org>
32 2007 Oswald Buddenhagen <ossi@kde.org>
33 2002 Waldo Bastian <bastian@kde.org>
34 2002-2003, 2007 Oswald Buddenhagen <ossi@kde.org>
35 2010 KDE e.V. <kde-ev-board@kde.org>
36 2013 Dmitry Zagnoyko <hiroshidi@gmail.com>
37 2007 Robert Knight <robertknight@gmail.com>
38 2006-2007 Robert Knight <robertknight@gmail.com>
39 2006-2008 Robert Knight <robertknight@gmail.com>
40License: GPL-2+
41
42Files: src/app/plugin/konsole/konsole_wcwidth.*
43 src/plugin/qmltermwidget/lib/konsole_wcwidth.*
44Copyright: no copyright claimed
45License: public-domain
46 No copyright claimed by author.
47
48Files: src/plugin/pamauthentication/*
49Copyright: 2014 Canonical Ltd.
50License: GPL-3
51
52Files: tests/autopilot/ubuntu_terminal_app/*
53 tests/autopilot/ubuntu_terminal_app/tests/*
54Copyright: 2013 Canonical Ltd.
55License: GPL-3
56
14Files: debian/*57Files: debian/*
15Copyright: 2013 Canonical Ltd.58Copyright: 2013 Canonical Ltd.
16License: LGPL-359License: LGPL-3
@@ -18,8 +61,24 @@
18License: GPL-361License: GPL-3
19 This package is free software; you can redistribute it and/or62 This package is free software; you can redistribute it and/or
20 modify it under the terms of the GNU General Public63 modify it under the terms of the GNU General Public
21 License as published by the Free Software Foundation; either64 License version 3 as published by the Free Software Foundation.
22 version 3 of the License.65 .
66 This package is distributed in the hope that it will be useful,
67 but WITHOUT ANY WARRANTY; without even the implied warranty of
68 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
69 General Public License for more details.
70 .
71 You should have received a copy of the GNU General Public License
72 along with this program. If not, see <http://www.gnu.org/licenses/>.
73 .
74 On Debian systems, the complete text of the GNU General
75 Public License can be found in "/usr/share/common-licenses/GPL-3".
76
77License: GPL-3+
78 This package is free software; you can redistribute it and/or
79 modify it under the terms of the GNU General Public
80 License as published by the Free Software Foundation; either version
81 3 of the License, or (at your option) any later version.
23 .82 .
24 This package is distributed in the hope that it will be useful,83 This package is distributed in the hope that it will be useful,
25 but WITHOUT ANY WARRANTY; without even the implied warranty of84 but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -35,8 +94,7 @@
35License: LGPL-394License: LGPL-3
36 This package is free software; you can redistribute it and/or95 This package is free software; you can redistribute it and/or
37 modify it under the terms of the GNU Lesser General Public96 modify it under the terms of the GNU Lesser General Public
38 License as published by the Free Software Foundation; either97 License version 3 as published by the Free Software Foundation.
39 version 3 of the License.
40 .98 .
41 This package is distributed in the hope that it will be useful,99 This package is distributed in the hope that it will be useful,
42 but WITHOUT ANY WARRANTY; without even the implied warranty of100 but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -48,3 +106,37 @@
48 .106 .
49 On Debian systems, the complete text of the GNU Lesser General107 On Debian systems, the complete text of the GNU Lesser General
50 Public License can be found in "/usr/share/common-licenses/LGPL-3".108 Public License can be found in "/usr/share/common-licenses/LGPL-3".
109
110License: GPL-2
111 This package is free software; you can redistribute it and/or modify
112 it under the terms of the GNU General Public License as published by
113 the Free Software Foundation; either version 2 of the License, or
114 (at your option) any later version.
115 .
116 This package is distributed in the hope that it will be useful,
117 but WITHOUT ANY WARRANTY; without even the implied warranty of
118 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
119 GNU General Public License for more details.
120 .
121 You should have received a copy of the GNU General Public License
122 along with this program. If not, see <http://www.gnu.org/licenses/>.
123 .
124 On Debian systems, the complete text of the GNU General
125 Public License can be found in "/usr/share/common-licenses/GPL-2".
126
127License: GPL-2+
128 This package is free software; you can redistribute it and/or
129 modify it under the terms of the GNU General Public
130 License as published by the Free Software Foundation; either version
131 2 of the License, or (at your option) any later version.
132 .
133 This package is distributed in the hope that it will be useful,
134 but WITHOUT ANY WARRANTY; without even the implied warranty of
135 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
136 General Public License for more details.
137 .
138 You should have received a copy of the GNU General Public License
139 along with this program. If not, see <http://www.gnu.org/licenses/>.
140 .
141 On Debian systems, the complete text of the GNU General
142 Public License can be found in "/usr/share/common-licenses/GPL-2".
51143
=== modified file 'src/app/fileio.cpp'
--- src/app/fileio.cpp 2015-04-01 22:01:44 +0000
+++ src/app/fileio.cpp 2016-09-19 00:47:22 +0000
@@ -1,3 +1,24 @@
1/*
2 * Copyright: 2015 Canonical Ltd.
3 *
4 * This file is part of ubuntu-terminal-app
5 *
6 * ubuntu-terminal-app is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * ubuntu-terminal-app is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Filippo Scognamiglio <flscogna@gmail.com>
20 */
21
1#include "fileio.h"22#include "fileio.h"
223
3FileIO::FileIO()24FileIO::FileIO()
425
=== modified file 'src/app/fileio.h'
--- src/app/fileio.h 2015-02-03 21:43:38 +0000
+++ src/app/fileio.h 2016-09-19 00:47:22 +0000
@@ -1,3 +1,24 @@
1/*
2 * Copyright: 2015 Canonical Ltd.
3 *
4 * This file is part of ubuntu-terminal-app
5 *
6 * ubuntu-terminal-app is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * ubuntu-terminal-app is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Filippo Scognamiglio <flscogna@gmail.com>
20 */
21
1#ifndef FILEIO_H22#ifndef FILEIO_H
2#define FILEIO_H23#define FILEIO_H
324
425
=== modified file 'src/app/qml/AlternateActionPopover.qml'
--- src/app/qml/AlternateActionPopover.qml 2016-02-08 22:27:08 +0000
+++ src/app/qml/AlternateActionPopover.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
3import Ubuntu.Components.Popups 1.320import Ubuntu.Components.Popups 1.3
421
=== modified file 'src/app/qml/CircularTransparentButton.qml'
--- src/app/qml/CircularTransparentButton.qml 2016-03-15 14:39:25 +0000
+++ src/app/qml/CircularTransparentButton.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/ExpandableButton.qml'
--- src/app/qml/ExpandableButton.qml 2016-03-15 14:39:25 +0000
+++ src/app/qml/ExpandableButton.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/KeyboardBar.qml'
--- src/app/qml/KeyboardBar.qml 2016-01-09 01:47:56 +0000
+++ src/app/qml/KeyboardBar.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
3import "KeyboardRows"20import "KeyboardRows"
421
=== modified file 'src/app/qml/KeyboardRows/ExpandableKeyboardButton.qml'
--- src/app/qml/KeyboardRows/ExpandableKeyboardButton.qml 2016-03-15 14:39:25 +0000
+++ src/app/qml/KeyboardRows/ExpandableKeyboardButton.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Author: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/KeyboardRows/JsonTranslator.qml'
--- src/app/qml/KeyboardRows/JsonTranslator.qml 2016-01-09 01:47:56 +0000
+++ src/app/qml/KeyboardRows/JsonTranslator.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2015 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Author: Niklas Wenzel <nikwen.developer@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/KeyboardRows/KeyModel.qml'
--- src/app/qml/KeyboardRows/KeyModel.qml 2016-01-09 01:47:56 +0000
+++ src/app/qml/KeyboardRows/KeyModel.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Author: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/KeyboardRows/KeyboardButton.qml'
--- src/app/qml/KeyboardRows/KeyboardButton.qml 2016-03-15 14:39:25 +0000
+++ src/app/qml/KeyboardRows/KeyboardButton.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Author: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/KeyboardRows/KeyboardLayout.qml'
--- src/app/qml/KeyboardRows/KeyboardLayout.qml 2016-01-09 01:47:56 +0000
+++ src/app/qml/KeyboardRows/KeyboardLayout.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2015 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Author: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/KeyboardRows/KeyboardRow.qml'
--- src/app/qml/KeyboardRows/KeyboardRow.qml 2016-01-09 01:47:56 +0000
+++ src/app/qml/KeyboardRows/KeyboardRow.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Author: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/PressFeedback.qml'
--- src/app/qml/PressFeedback.qml 2015-07-13 20:25:21 +0000
+++ src/app/qml/PressFeedback.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import QtFeedback 5.019import QtFeedback 5.0
320
421
=== modified file 'src/app/qml/TabsModel.qml'
--- src/app/qml/TabsModel.qml 2015-07-13 20:25:21 +0000
+++ src/app/qml/TabsModel.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
219
3ListModel {20ListModel {
421
=== modified file 'src/app/qml/TabsPage.qml'
--- src/app/qml/TabsPage.qml 2016-05-16 21:17:25 +0000
+++ src/app/qml/TabsPage.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
320
421
=== modified file 'src/app/qml/TerminalComponent.qml'
--- src/app/qml/TerminalComponent.qml 2016-03-24 12:23:19 +0000
+++ src/app/qml/TerminalComponent.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
3import QMLTermWidget 1.020import QMLTermWidget 1.0
421
=== modified file 'src/app/qml/TerminalInputArea.qml'
--- src/app/qml/TerminalInputArea.qml 2015-07-13 20:25:21 +0000
+++ src/app/qml/TerminalInputArea.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
219
3Item{20Item{
421
=== modified file 'src/app/qml/TerminalKeyboardShortcutHandler.qml'
--- src/app/qml/TerminalKeyboardShortcutHandler.qml 2015-07-13 20:25:21 +0000
+++ src/app/qml/TerminalKeyboardShortcutHandler.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2015 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Niklas Wenzel <nikwen.developer@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
219
3Item {20Item {
421
=== modified file 'src/app/qml/TerminalPage.qml'
--- src/app/qml/TerminalPage.qml 2016-04-23 12:26:21 +0000
+++ src/app/qml/TerminalPage.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Ubuntu.Components 1.319import Ubuntu.Components 1.3
3import Ubuntu.Components.Popups 1.320import Ubuntu.Components.Popups 1.3
421
=== modified file 'src/app/qml/TerminalSettings.qml'
--- src/app/qml/TerminalSettings.qml 2016-04-05 13:26:03 +0000
+++ src/app/qml/TerminalSettings.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import Qt.labs.settings 1.019import Qt.labs.settings 1.0
320
421
=== modified file 'src/app/qml/ubuntu-terminal-app.qml'
--- src/app/qml/ubuntu-terminal-app.qml 2016-03-15 14:18:34 +0000
+++ src/app/qml/ubuntu-terminal-app.qml 2016-09-19 00:47:22 +0000
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2014 Canonical Ltd
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 3 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Authored-by: Filippo Scognamiglio <flscogna@gmail.com>
17 */
1import QtQuick 2.418import QtQuick 2.4
2import QtGraphicalEffects 1.019import QtGraphicalEffects 1.0
3import Ubuntu.Components 1.320import Ubuntu.Components 1.3
421
=== added file 'terminal.1'
--- terminal.1 1970-01-01 00:00:00 +0000
+++ terminal.1 2016-09-19 00:47:22 +0000
@@ -0,0 +1,56 @@
1.\" Hey, EMACS: -*- nroff -*-
2.\" First parameter, NAME, should be all caps
3.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
4.\" other parameters are allowed: see man(7), man(1)
5.TH TERMINAL 1 "September 16, 2016"
6.\" Please adjust this date whenever revising the manpage.
7.\"
8.\" Some roff macros, for reference:
9.\" .nh disable hyphenation
10.\" .hy enable hyphenation
11.\" .ad l left justify
12.\" .ad b justify to both left and right margins
13.\" .nf disable filling
14.\" .fi enable filling
15.\" .br insert line break
16.\" .sp <n> insert n+1 empty lines
17.\" for manpage-specific macros, see man(7)
18.SH NAME
19terminal \- is a terminal emulation application.
20.SH SYNOPSIS
21.sp
22.nf
23\fIterminal\fR [\-p|\-\-phone] [\-\-workdir <dir>]
24 [\-\-forceAuth <true/false>] [\-t|\-\-tablet] [\-h|\-\-help] [\-I <path>]
25.nf
26.sp
27.SH DESCRIPTION
28.B terminal
29is a terminal emulation application that you can use to access a unix shell.
30.SH OPTIONS
31.TP
32.B \-h, \-\-help
33Show summary of options.
34.TP
35.B \-p, \-\-phone
36If running on Desktop, start in a phone sized window.
37.TP
38.B \-t, \-\-tablet
39If running on Desktop, start in a tablet sized window.
40.TP
41.B \-\-forceAuth <true/false>
42Force authentication on or off.
43.TP
44.B \-I <path>
45Give a path for an additional QML import directory. May be used multiple times.
46.TP
47.B \-q <qmlfile>
48Give an alternative location for the main qml file.
49.TP
50.B \-\-workdir <dir>
51Change working directory to 'dir'
52.SH AUTHOR
53Terminal was written by Filippo Scognamiglio <flscogna@gmail.com>. The webpage for this package can be found at
54http://launchpad.net/ubuntu-terminal-app
55.PP
56This manual page was written by Luke Yelavich <themuso@ubuntu.com>, for the Ubuntu project (but may be used by others).

Subscribers

People subscribed via source and target branches