Skip to content

Commit

Permalink
Update the changelog and copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
handsome-feng committed Mar 23, 2020
1 parent 06056d5 commit 7c50fea
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 0 deletions.
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
ukui-window-switch (2.0.1-1) unstable; urgency=medium

* New upstream release.
* debian/copyright:
- Update the copyright.

-- handsome_feng <jianfengli@ubuntukylin.com> Sat, 21 Mar 2020 15:00:59 +0800

ukui-window-switch (2.0.0-1) unstable; urgency=medium

* New upstream release.
Expand Down
6 changes: 6 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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+
Expand Down
19 changes: 19 additions & 0 deletions src/ukws_fake_desktop.cpp
Original file line number Diff line number Diff line change
@@ -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 <QCoreApplication>
Expand Down
19 changes: 19 additions & 0 deletions src/ukws_fake_desktop.h
Original file line number Diff line number Diff line change
@@ -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

Expand Down
19 changes: 19 additions & 0 deletions src/ukws_window_info.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
19 changes: 19 additions & 0 deletions src/ukws_window_info.h
Original file line number Diff line number Diff line change
@@ -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

Expand Down
19 changes: 19 additions & 0 deletions src/ukws_workspace_multiview.cpp
Original file line number Diff line number Diff line change
@@ -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 <QDebug>
Expand Down
19 changes: 19 additions & 0 deletions src/ukws_workspace_multiview.h
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 7c50fea

Please sign in to comment.