From 7c50feaf0e7f4cba93c9d54da7f7b5403384a4f2 Mon Sep 17 00:00:00 2001 From: handsome-feng Date: Mon, 23 Mar 2020 14:56:44 +0800 Subject: [PATCH] Update the changelog and copyright --- debian/changelog | 8 ++++++++ debian/copyright | 6 ++++++ src/ukws_fake_desktop.cpp | 19 +++++++++++++++++++ src/ukws_fake_desktop.h | 19 +++++++++++++++++++ src/ukws_window_info.cpp | 19 +++++++++++++++++++ src/ukws_window_info.h | 19 +++++++++++++++++++ src/ukws_workspace_multiview.cpp | 19 +++++++++++++++++++ src/ukws_workspace_multiview.h | 19 +++++++++++++++++++ 8 files changed, 128 insertions(+) diff --git a/debian/changelog b/debian/changelog index 1a282c9..e302d71 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ukui-window-switch (2.0.1-1) unstable; urgency=medium + + * New upstream release. + * debian/copyright: + - Update the copyright. + + -- handsome_feng Sat, 21 Mar 2020 15:00:59 +0800 + ukui-window-switch (2.0.0-1) unstable; urgency=medium * New upstream release. diff --git a/debian/copyright b/debian/copyright index 32a6637..8ec198e 100644 --- a/debian/copyright +++ b/debian/copyright @@ -16,6 +16,8 @@ Files: AUTHORS src/ukws_config.h src/ukws_dbus.cpp src/ukws_dbus.h + src/ukws_fake_desktop.h + src/ukws_fake_desktop.cpp src/ukws_helper.cpp src/ukws_helper.h src/ukws_indicator.cpp @@ -28,6 +30,8 @@ Files: AUTHORS src/ukws_window_extra_label.h src/ukws_window_icon.cpp src/ukws_window_icon.h + src/ukws_window_info.cpp + src/ukws_window_info.h src/ukws_wnck_operator.cpp src/ukws_wnck_operator.h src/ukws_worker.cpp @@ -36,6 +40,8 @@ Files: AUTHORS src/ukws_workspace_box.h src/ukws_workspace_manager.cpp src/ukws_workspace_manager.h + src/ukws_workspace_multiview.cpp + src/ukws_workspace_multiview.h theme/default.qss Copyright: 2020, Tianjin KYLIN Information Technology Co., Ltd. License: GPL-2+ diff --git a/src/ukws_fake_desktop.cpp b/src/ukws_fake_desktop.cpp index d3991ad..42af877 100644 --- a/src/ukws_fake_desktop.cpp +++ b/src/ukws_fake_desktop.cpp @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2020 Tianjin KYLIN Information Technology Co., Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + #include "ukws_fake_desktop.h" #include diff --git a/src/ukws_fake_desktop.h b/src/ukws_fake_desktop.h index 40a1c1f..fe2cd22 100644 --- a/src/ukws_fake_desktop.h +++ b/src/ukws_fake_desktop.h @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2020 Tianjin KYLIN Information Technology Co., Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + #ifndef UKWS_FAKE_DESKTOP_H #define UKWS_FAKE_DESKTOP_H diff --git a/src/ukws_window_info.cpp b/src/ukws_window_info.cpp index a16282b..fde66e6 100644 --- a/src/ukws_window_info.cpp +++ b/src/ukws_window_info.cpp @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2020 Tianjin KYLIN Information Technology Co., Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + #include "ukws_window_info.h" #include "ukws_common.h" diff --git a/src/ukws_window_info.h b/src/ukws_window_info.h index 70ed3d0..2c6d4e6 100644 --- a/src/ukws_window_info.h +++ b/src/ukws_window_info.h @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2020 Tianjin KYLIN Information Technology Co., Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + #ifndef UKWS_WINDOW_INFO_H #define UKWS_WINDOW_INFO_H diff --git a/src/ukws_workspace_multiview.cpp b/src/ukws_workspace_multiview.cpp index f42f2f5..539001b 100644 --- a/src/ukws_workspace_multiview.cpp +++ b/src/ukws_workspace_multiview.cpp @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2020 Tianjin KYLIN Information Technology Co., Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + #include "ukws_workspace_multiview.h" #include diff --git a/src/ukws_workspace_multiview.h b/src/ukws_workspace_multiview.h index efb12ba..b75f37e 100644 --- a/src/ukws_workspace_multiview.h +++ b/src/ukws_workspace_multiview.h @@ -1,3 +1,22 @@ +/* + * Copyright (C) 2020 Tianjin KYLIN Information Technology Co., Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + #ifndef UKWS_WORKSPACE_MULTIVIEW_H #define UKWS_WORKSPACE_MULTIVIEW_H