diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..f2361b3 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +Current developers: +Evgeniy Alekseev aka arcanis diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..94d5b64 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,12 @@ +Ver.1.0.3: ++ [plasmoid] edited russian translation +* [all] refactoring + +Ver.1.0.2: +* [plasmoid] fix layout margins + +Ver.1.0.1: +- [all] removed scripts + +Ver.1.0: +First release diff --git a/LICENSE b/COPYING similarity index 99% rename from LICENSE rename to COPYING index b09a390..8958eeb 100644 --- a/LICENSE +++ b/COPYING @@ -631,7 +631,7 @@ to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - netctl-plasmoid + netctl-gui Copyright (C) 2014 Evgeniy Alekseev This program is free software: you can redistribute it and/or modify @@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: - netctl-plasmoid Copyright (C) 2014 Evgeniy Alekseev + netctl-gui Copyright (C) 2014 Evgeniy Alekseev This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. diff --git a/PKGBUILD b/PKGBUILD index 8cbc2e4..9185567 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ #_build_plasmoid=0 pkgname=netctl-gui -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="Qt4 GUI for netctl. Provides a plasmoid for KDE4" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ optdepends=('kdebase-runtime: sudo support' 'wpa_supplicant: wifi support') source=("https://github.com/arcan1s/netctlplasmoid/releases/download/V.${pkgver}/${pkgname}-${pkgver}-src.tar.xz") install="${pkgname}.install" -md5sums=('9bbdf2bc3dfbbde0ff63e04d7d081c0d') +md5sums=('9d52df62a7bb642bb86adc8020177fb8') # flags _cmakekeys="-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release" diff --git a/README.md b/README.md index c7f3a82..845ff78 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ Information ----------- Graphical interface for netctl. Now it may work with profiles and may create new profiles. Also it may create a connection to WiFi. Moreover, it provides a widget and DataEngine for KDE. +**NOTE** LOOKING FOR TRANSLATORS! + Configuration ------------- It is recommended to use graphical interface for widget configuration. DataEngine settings are stored in `/usr/share/config/netctl.conf`: @@ -55,6 +57,14 @@ Installation make sudo make install + If you want install it without GUI run: + + cd /path/to/extracted/archive + mkdir build && cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_GUI:BOOL=0 ../ + make + sudo make install + Additional information ====================== diff --git a/create_archive.sh b/create_archive.sh index 0280d7c..9cc9d93 100755 --- a/create_archive.sh +++ b/create_archive.sh @@ -2,7 +2,7 @@ ARCHIVE="netctl-gui" SRCDIR="sources" -FILES="LICENSE README.md" +FILES="AUTHORS CHANGELOG COPYING README.md" IGNORELIST="gui/resources/translations/english.qm gui/resources/translations/russian.qm" VERSION=$(grep -m1 PROJECT_VERSION_MAJOR sources/CMakeLists.txt | awk '{print $3}' | cut -c 1).\ $(grep -m1 PROJECT_VERSION_MINOR sources/CMakeLists.txt | awk '{print $3}' | cut -c 1).\ @@ -12,7 +12,7 @@ $(grep -m1 PROJECT_VERSION_PATCH sources/CMakeLists.txt | awk '{print $3}' | cut [[ -e ${ARCHIVE}-${VERSION}-src.tar.xz ]] && rm -f "${ARCHIVE}-${VERSION}-src.tar.xz" [[ -d ${ARCHIVE} ]] && rm -rf "${ARCHIVE}" cp -r "${SRCDIR}" "${ARCHIVE}" -for FILE in ${FILES[*]}; do cp "$FILE" "${ARCHIVE}"; done +for FILE in ${FILES[*]}; do cp -r "$FILE" "${ARCHIVE}"; done for FILE in ${IGNORELIST[*]}; do rm -f "${ARCHIVE}/${FILE}"; done tar cvJf "${ARCHIVE}-${VERSION}-src.tar.xz" "${ARCHIVE}" > /dev/null rm -rf "${ARCHIVE}" diff --git a/sources/CMakeLists.txt b/sources/CMakeLists.txt index cb4ef58..986790a 100644 --- a/sources/CMakeLists.txt +++ b/sources/CMakeLists.txt @@ -5,7 +5,7 @@ cmake_policy (SET CMP0002 OLD) cmake_policy (SET CMP0011 NEW) cmake_policy (SET CMP0015 NEW) -project (netctl-plasmoid) +project (netctl-gui) set (PROJECT_VERSION_MAJOR 1) set (PROJECT_VERSION_MINOR 0) set (PROJECT_VERSION_PATCH 3) diff --git a/sources/dataengine/netctl.cpp b/sources/dataengine/netctl.cpp index e4609e3..fc1f32f 100644 --- a/sources/dataengine/netctl.cpp +++ b/sources/dataengine/netctl.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "netctl.h" diff --git a/sources/dataengine/netctl.h b/sources/dataengine/netctl.h index 4d0b203..e1900d0 100644 --- a/sources/dataengine/netctl.h +++ b/sources/dataengine/netctl.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef NETCTL_DE_H diff --git a/sources/gui/src/bridgewidget.cpp b/sources/gui/src/bridgewidget.cpp index 25a85f0..2669d2a 100644 --- a/sources/gui/src/bridgewidget.cpp +++ b/sources/gui/src/bridgewidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "bridgewidget.h" diff --git a/sources/gui/src/bridgewidget.h b/sources/gui/src/bridgewidget.h index 56d6eef..4b445ed 100644 --- a/sources/gui/src/bridgewidget.h +++ b/sources/gui/src/bridgewidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef BRIDGEWIDGET_H diff --git a/sources/gui/src/errorwindow.cpp b/sources/gui/src/errorwindow.cpp index b73709a..a49609d 100644 --- a/sources/gui/src/errorwindow.cpp +++ b/sources/gui/src/errorwindow.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "errorwindow.h" diff --git a/sources/gui/src/errorwindow.h b/sources/gui/src/errorwindow.h index 25dab46..9a52b78 100644 --- a/sources/gui/src/errorwindow.h +++ b/sources/gui/src/errorwindow.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef ERRORWINDOW_H diff --git a/sources/gui/src/ethernetwidget.cpp b/sources/gui/src/ethernetwidget.cpp index ee7ac15..3251845 100644 --- a/sources/gui/src/ethernetwidget.cpp +++ b/sources/gui/src/ethernetwidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "ethernetwidget.h" diff --git a/sources/gui/src/ethernetwidget.h b/sources/gui/src/ethernetwidget.h index a97c843..522e85c 100644 --- a/sources/gui/src/ethernetwidget.h +++ b/sources/gui/src/ethernetwidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef ETHERNETWIDGET_H diff --git a/sources/gui/src/generalwidget.cpp b/sources/gui/src/generalwidget.cpp index aa4d47c..e751213 100644 --- a/sources/gui/src/generalwidget.cpp +++ b/sources/gui/src/generalwidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "generalwidget.h" diff --git a/sources/gui/src/generalwidget.h b/sources/gui/src/generalwidget.h index 9c6231c..b0ac669 100644 --- a/sources/gui/src/generalwidget.h +++ b/sources/gui/src/generalwidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef GENERALWIDGET_H diff --git a/sources/gui/src/ipwidget.cpp b/sources/gui/src/ipwidget.cpp index 3136efa..a6c9a14 100644 --- a/sources/gui/src/ipwidget.cpp +++ b/sources/gui/src/ipwidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "ipwidget.h" diff --git a/sources/gui/src/ipwidget.h b/sources/gui/src/ipwidget.h index ca97e76..568bb21 100644 --- a/sources/gui/src/ipwidget.h +++ b/sources/gui/src/ipwidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef IPWIDGET_H diff --git a/sources/gui/src/main.cpp b/sources/gui/src/main.cpp index adb1f0b..4741d92 100644 --- a/sources/gui/src/main.cpp +++ b/sources/gui/src/main.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ diff --git a/sources/gui/src/mainwindow.cpp b/sources/gui/src/mainwindow.cpp index c992832..815757b 100644 --- a/sources/gui/src/mainwindow.cpp +++ b/sources/gui/src/mainwindow.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "mainwindow.h" diff --git a/sources/gui/src/mainwindow.h b/sources/gui/src/mainwindow.h index db74f59..4d8b0cc 100644 --- a/sources/gui/src/mainwindow.h +++ b/sources/gui/src/mainwindow.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef MAINWINDOW_H @@ -47,7 +47,7 @@ class MainWindow; class MainWindow : public QMainWindow { Q_OBJECT - + public: explicit MainWindow(QWidget *parent = 0, const bool defaultSettings = false, @@ -61,7 +61,7 @@ public slots: void updateTabs(const int tab); // wifi tab slots void connectToUnknownEssid(const QString passwd); - + private slots: void updateMainTab(); void updateProfileTab(); diff --git a/sources/gui/src/mobilewidget.cpp b/sources/gui/src/mobilewidget.cpp index b91d51d..8434152 100644 --- a/sources/gui/src/mobilewidget.cpp +++ b/sources/gui/src/mobilewidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "mobilewidget.h" diff --git a/sources/gui/src/mobilewidget.h b/sources/gui/src/mobilewidget.h index b77b117..db7b38a 100644 --- a/sources/gui/src/mobilewidget.h +++ b/sources/gui/src/mobilewidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef MOBILEWIDGET_H diff --git a/sources/gui/src/netctlinteract.cpp b/sources/gui/src/netctlinteract.cpp index 560cb70..b12212c 100644 --- a/sources/gui/src/netctlinteract.cpp +++ b/sources/gui/src/netctlinteract.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "netctlinteract.h" diff --git a/sources/gui/src/netctlinteract.h b/sources/gui/src/netctlinteract.h index 76879b0..0262ec0 100644 --- a/sources/gui/src/netctlinteract.h +++ b/sources/gui/src/netctlinteract.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef NETCTLINTERACT_H diff --git a/sources/gui/src/netctlprofile.cpp b/sources/gui/src/netctlprofile.cpp index bc3ada6..04e5968 100644 --- a/sources/gui/src/netctlprofile.cpp +++ b/sources/gui/src/netctlprofile.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "netctlprofile.h" diff --git a/sources/gui/src/netctlprofile.h b/sources/gui/src/netctlprofile.h index 393de25..b95c7ef 100644 --- a/sources/gui/src/netctlprofile.h +++ b/sources/gui/src/netctlprofile.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef NETCTLPROFILE_H diff --git a/sources/gui/src/passwdwidget.cpp b/sources/gui/src/passwdwidget.cpp index 3fe8511..cbcccc5 100644 --- a/sources/gui/src/passwdwidget.cpp +++ b/sources/gui/src/passwdwidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "passwdwidget.h" diff --git a/sources/gui/src/passwdwidget.h b/sources/gui/src/passwdwidget.h index 35f46aa..b9e5fbc 100644 --- a/sources/gui/src/passwdwidget.h +++ b/sources/gui/src/passwdwidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef PASSWDWIDGET_H diff --git a/sources/gui/src/pppoewidget.cpp b/sources/gui/src/pppoewidget.cpp index 4e0b666..9e8ca5f 100644 --- a/sources/gui/src/pppoewidget.cpp +++ b/sources/gui/src/pppoewidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "pppoewidget.h" diff --git a/sources/gui/src/pppoewidget.h b/sources/gui/src/pppoewidget.h index 8c03f07..c56f692 100644 --- a/sources/gui/src/pppoewidget.h +++ b/sources/gui/src/pppoewidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef PPPOEWIDGET_H diff --git a/sources/gui/src/settingswindow.cpp b/sources/gui/src/settingswindow.cpp index e37f2f1..edca15a 100644 --- a/sources/gui/src/settingswindow.cpp +++ b/sources/gui/src/settingswindow.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "settingswindow.h" diff --git a/sources/gui/src/settingswindow.h b/sources/gui/src/settingswindow.h index faf26fd..c1cfe9e 100644 --- a/sources/gui/src/settingswindow.h +++ b/sources/gui/src/settingswindow.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef SETTINGSWINDOW_H diff --git a/sources/gui/src/sleepthread.h b/sources/gui/src/sleepthread.h index fc22c6b..3e98fa0 100644 --- a/sources/gui/src/sleepthread.h +++ b/sources/gui/src/sleepthread.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef SLEEPTHREAD_H diff --git a/sources/gui/src/tunnelwidget.cpp b/sources/gui/src/tunnelwidget.cpp index b164ff0..0c22459 100644 --- a/sources/gui/src/tunnelwidget.cpp +++ b/sources/gui/src/tunnelwidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "tunnelwidget.h" diff --git a/sources/gui/src/tunnelwidget.h b/sources/gui/src/tunnelwidget.h index 6ed578e..4f7b1ac 100644 --- a/sources/gui/src/tunnelwidget.h +++ b/sources/gui/src/tunnelwidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef TUNNELWIDGET_H diff --git a/sources/gui/src/tuntapwidget.cpp b/sources/gui/src/tuntapwidget.cpp index 92d486a..610084f 100644 --- a/sources/gui/src/tuntapwidget.cpp +++ b/sources/gui/src/tuntapwidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "tuntapwidget.h" diff --git a/sources/gui/src/tuntapwidget.h b/sources/gui/src/tuntapwidget.h index d05043e..dd96ceb 100644 --- a/sources/gui/src/tuntapwidget.h +++ b/sources/gui/src/tuntapwidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef TUNTAPWIDGET_H diff --git a/sources/gui/src/vlanwidget.cpp b/sources/gui/src/vlanwidget.cpp index 689b475..8f1f740 100644 --- a/sources/gui/src/vlanwidget.cpp +++ b/sources/gui/src/vlanwidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "vlanwidget.h" diff --git a/sources/gui/src/vlanwidget.h b/sources/gui/src/vlanwidget.h index 6ade7b2..845fd1c 100644 --- a/sources/gui/src/vlanwidget.h +++ b/sources/gui/src/vlanwidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef VLANWIDGET_H diff --git a/sources/gui/src/wirelesswidget.cpp b/sources/gui/src/wirelesswidget.cpp index da943d4..3750068 100644 --- a/sources/gui/src/wirelesswidget.cpp +++ b/sources/gui/src/wirelesswidget.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "wirelesswidget.h" diff --git a/sources/gui/src/wirelesswidget.h b/sources/gui/src/wirelesswidget.h index 8bb557a..3b7ee3c 100644 --- a/sources/gui/src/wirelesswidget.h +++ b/sources/gui/src/wirelesswidget.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef WIRELESSWIDGET_H diff --git a/sources/gui/src/wpasupinteract.cpp b/sources/gui/src/wpasupinteract.cpp index 926bec6..ea5e349 100644 --- a/sources/gui/src/wpasupinteract.cpp +++ b/sources/gui/src/wpasupinteract.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "wpasupinteract.h" diff --git a/sources/gui/src/wpasupinteract.h b/sources/gui/src/wpasupinteract.h index 6562a16..7940627 100644 --- a/sources/gui/src/wpasupinteract.h +++ b/sources/gui/src/wpasupinteract.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef WPASUPINTERACT_H diff --git a/sources/plasmoid/netctl.cpp b/sources/plasmoid/netctl.cpp index b7d3337..f847430 100644 --- a/sources/plasmoid/netctl.cpp +++ b/sources/plasmoid/netctl.cpp @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #include "netctl.h" diff --git a/sources/plasmoid/netctl.h b/sources/plasmoid/netctl.h index 74ca6b7..57e2bef 100644 --- a/sources/plasmoid/netctl.h +++ b/sources/plasmoid/netctl.h @@ -1,18 +1,18 @@ /*************************************************************************** - * This file is part of netctl-plasmoid * + * This file is part of netctl-gui * * * - * netctl-plasmoid is free software: you can redistribute it and/or * + * netctl-gui 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 3 of the * * License, or (at your option) any later version. * * * - * netctl-plasmoid is distributed in the hope that it will be useful, * + * netctl-gui 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 netctl-plasmoid. If not, see http://www.gnu.org/licenses/ * + * along with netctl-gui. If not, see http://www.gnu.org/licenses/ * ***************************************************************************/ #ifndef NETCTL_PLASMOID_H