This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gowswrapper. from efda141 COPYING: Add file (GPL-2(+)). new e8d661a debian/copyright: Typo fix for Alex's mail address. new a9ddf41 {*.cpp,*.pro}: Add license headers. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/copyright | 4 ++-- main.cpp | 19 +++++++++++++++++++ x2gowswrapper.cpp | 19 +++++++++++++++++++ x2gowswrapper.h | 19 +++++++++++++++++++ x2gowswrapper.pro | 19 +++++++++++++++++++ 5 files changed, 78 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gowswrapper.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gowswrapper. commit e8d661a81b32411bfd18711060ac13f575c4e6bd Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Jun 16 13:02:08 2021 +0200 debian/copyright: Typo fix for Alex's mail address. --- debian/copyright | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/copyright b/debian/copyright index d639e53..742c5a6 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,10 +1,10 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: X2Go Websocket Wrapper -Upstream-Contact: Oleksandr Shneyder <o.schneydr@phoca-gmbh.de> +Upstream-Contact: Oleksandr Shneyder <o.schneyder@phoca-gmbh.de> Source: https://code.x2go.org/releases/source/x2gowswrapper/ Files: * -Copyright: 2021, Oleksandr Shneyder <o.schneydr@phoca-gmbh.de> +Copyright: 2021, Oleksandr Shneyder <o.schneyder@phoca-gmbh.de> License: GPL-2+ Files: debian/* -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gowswrapper.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gowswrapper. commit a9ddf41a2ee099a084c9726755fe93bb28f48f17 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Jun 16 13:04:30 2021 +0200 {*.cpp,*.pro}: Add license headers. --- main.cpp | 19 +++++++++++++++++++ x2gowswrapper.cpp | 19 +++++++++++++++++++ x2gowswrapper.h | 19 +++++++++++++++++++ x2gowswrapper.pro | 19 +++++++++++++++++++ 4 files changed, 76 insertions(+) diff --git a/main.cpp b/main.cpp index 067d60e..0ef2c51 100644 --- a/main.cpp +++ b/main.cpp @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> + * + * 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 <QCoreApplication> #include "x2gowswrapper.h" diff --git a/x2gowswrapper.cpp b/x2gowswrapper.cpp index 0806d51..91922e7 100644 --- a/x2gowswrapper.cpp +++ b/x2gowswrapper.cpp @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> + * + * 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 "x2gowswrapper.h" #include <QCoreApplication> #include <QDebug> diff --git a/x2gowswrapper.h b/x2gowswrapper.h index 594ed66..a8a3f86 100644 --- a/x2gowswrapper.h +++ b/x2gowswrapper.h @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> + * + * 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 <QObject> #include <QTextStream> #include <QProcess> diff --git a/x2gowswrapper.pro b/x2gowswrapper.pro index f5aaf60..fc5c9ef 100644 --- a/x2gowswrapper.pro +++ b/x2gowswrapper.pro @@ -1,3 +1,22 @@ +/* + * Copyright © 2021 Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> + * + * 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. + */ + ###################################################################### # Automatically generated by qmake (2.01a) Di. Feb 9 15:24:41 2021 ###################################################################### -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gowswrapper.git