From 0980d500e84ad948343dcdf435acbd61f95f42b8 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Tue, 26 Jun 2018 12:55:49 +0200 Subject: [PATCH] move style overrides to a separate repository --- README.md | 42 +++ nymea-app.pro | 11 +- nymea-app/nymea-app.pro | 9 +- nymea-app/resources.qrc | 8 - nymea-app/stylecontroller.cpp | 9 +- nymea-app/styles.qrc | 10 + nymea-app/styles/maveo/ApplicationWindow.qml | 13 - nymea-app/styles/maveo/logo.svg | 353 ------------------ packaging/windows_maveo/config/config.xml | 9 - .../io.guh.maveo/meta/installscript.qs | 22 -- .../io.guh.maveo/meta/license-gpl.txt | 317 ---------------- .../io.guh.maveo/meta/license-maveo.txt | 68 ---- .../packages/io.guh.maveo/meta/logo.ico | Bin 29211 -> 0 bytes .../packages/io.guh.maveo/meta/package.xml | 13 - 14 files changed, 76 insertions(+), 808 deletions(-) create mode 100644 nymea-app/styles.qrc delete mode 100644 nymea-app/styles/maveo/ApplicationWindow.qml delete mode 100644 nymea-app/styles/maveo/logo.svg delete mode 100644 packaging/windows_maveo/config/config.xml delete mode 100644 packaging/windows_maveo/packages/io.guh.maveo/meta/installscript.qs delete mode 100644 packaging/windows_maveo/packages/io.guh.maveo/meta/license-gpl.txt delete mode 100644 packaging/windows_maveo/packages/io.guh.maveo/meta/license-maveo.txt delete mode 100644 packaging/windows_maveo/packages/io.guh.maveo/meta/logo.ico delete mode 100644 packaging/windows_maveo/packages/io.guh.maveo/meta/package.xml diff --git a/README.md b/README.md index 2649da50..e804bcae 100644 --- a/README.md +++ b/README.md @@ -46,3 +46,45 @@ Required Packages: - `qtdeclarative5-test-plugin` - `nymead` +# Custom styles and branding: + +## Overriding styles available in the app + +nymea-app can be built with custom styles by passing STYLES_PATH to qmake. +Example: + $ qmake STYLES_PATH=/home/user/my-styles/ + +The path must point to a directory containing the following file structure: + +- styles.qrc +- styles//logo.svg + +styles.qrc should be a Qt qrc file listing all the files inside styles/ +providing an logo.svg is the minimum required for a style. In addition to +that, any QtQuick.Controls 2 component can be override. See the styles/ +directory in this repository fo examples. + + +## Branding + +In addition to overriding the available app styles, the app can be branded. +That means, the style selection will be hidden and the app is locked down to +the style given by the BRANDING argument passed to qmake. + +Example locking down the app to the "dark" style: + $ qmake BRANDING=dark + +Brandings will also affect the installer packages. If you use branding in combination +with style overrides, you also need to provide a installer package in +packages/_ in your styles directory. See the packaging directory +in this repository for examples for isntaller packages. + +Example: + $ qmake STYLES_PATH="C:\path\to\my\styles" BRANDING=mycoolstyle + +This would the following minimum files in C:\path\to\my\styles\ : +- styles.qrc +- styles\mycoolstyle\logo.svg +- packaging\windows_mycoolstyle\ + + diff --git a/nymea-app.pro b/nymea-app.pro index 4edfbaf8..6e856a2c 100644 --- a/nymea-app.pro +++ b/nymea-app.pro @@ -16,16 +16,21 @@ withtests: { # Add QT_INSTALL_DIR/bin, QT_IFW_INSTALL_DIR/bin and MINGW_INSTALL_DIR/bin to PATH # run "make wininstaller" wininstaller.depends = nymea-app +!equals(STYLES_PATH, ""):!equals(BRANDING, "") { + PACKAGE_BASE_DIR = $${STYLES_PATH}\packaging +} else { + PACKAGE_BASE_DIR = $$shell_path($$PWD)\packaging +} equals(BRANDING, "") { APP_NAME = nymea-app PACKAGE_URN = io.guh.nymeaapp - PACKAGE_DIR = $$shell_path($$PWD)\packaging\windows PACKAGE_NAME = nymea-app-win-installer + PACKAGE_DIR = $${PACKAGE_BASE_DIR}\windows } else { APP_NAME = $${BRANDING} PACKAGE_URN = io.guh.$${APP_NAME} PACKAGE_NAME = $${BRANDING}-win-installer - PACKAGE_DIR = $$shell_path($$PWD)\packaging\windows_$${APP_NAME} + PACKAGE_DIR = $${PACKAGE_BASE_DIR}\windows_$${APP_NAME} } OLDSTRING=".*" NEWSTRING="$${APP_VERSION}" @@ -41,9 +46,11 @@ wininstaller.commands += copy $${SSL_LIBS}\ssleay32.dll $${PACKAGE_DIR}\packages } wininstaller.commands += windeployqt --compiler-runtime --qmldir \"$${top_srcdir}\"\nymea-app\ui $${PACKAGE_DIR}\packages\\$${PACKAGE_URN}\data\ && wininstaller.commands += binarycreator -c $${PACKAGE_DIR}\config\config.xml -p $${PACKAGE_DIR}\packages\ $${PACKAGE_NAME}-$${APP_VERSION} +win32:message("Windows installer package directory: $${PACKAGE_DIR}") QMAKE_EXTRA_TARGETS += wininstaller + # OS X installer bundle # Install XCode and Qt clang64, add qmake directory to PATH # run "make osxbundle" diff --git a/nymea-app/nymea-app.pro b/nymea-app/nymea-app.pro index 62b64be4..e54d4615 100644 --- a/nymea-app/nymea-app.pro +++ b/nymea-app/nymea-app.pro @@ -21,8 +21,13 @@ SOURCES += main.cpp \ stylecontroller.cpp -RESOURCES += \ - resources.qrc +RESOURCES += resources.qrc +equals(STYLES_PATH, "") { + RESOURCES += styles.qrc +} else { + message("Style override enabled. Will be using styles from $${STYLES_PATH}") + RESOURCES += $${STYLES_PATH}/styles.qrc +} contains(ANDROID_TARGET_ARCH,armeabi-v7a) { ANDROID_EXTRA_LIBS = \ diff --git a/nymea-app/resources.qrc b/nymea-app/resources.qrc index 7a4a337f..243d8c16 100644 --- a/nymea-app/resources.qrc +++ b/nymea-app/resources.qrc @@ -136,11 +136,6 @@ ui/devicepages/StateLogPage.qml ui/customviews/GenericTypeLogView.qml qtquickcontrols2.conf - styles/dark/ApplicationWindow.qml - styles/light/ApplicationWindow.qml - styles/light/Page.qml - styles/dark/Page.qml - styles/maveo/ApplicationWindow.qml ui/BluetoothDiscoveryPage.qml ui/images/bluetooth.svg ui/images/refresh.svg @@ -208,8 +203,5 @@ ui/images/rpi-setup.svg ui/images/eye.svg ui/images/private-browsing.svg - styles/dark/logo.svg - styles/light/logo.svg - styles/maveo/logo.svg diff --git a/nymea-app/stylecontroller.cpp b/nymea-app/stylecontroller.cpp index ff765fd9..84fa4672 100644 --- a/nymea-app/stylecontroller.cpp +++ b/nymea-app/stylecontroller.cpp @@ -1,6 +1,7 @@ #include #include #include +#include #include "stylecontroller.h" @@ -19,7 +20,12 @@ QString StyleController::currentStyle() const return BRANDING; #endif QSettings settings; - return settings.value("style", "light").toString(); + QString currentSetting = settings.value("style", "light").toString(); + // ensure style is available + if (allStyles().contains(currentSetting)) { + return currentSetting; + } + return allStyles().first(); } void StyleController::setCurrentStyle(const QString ¤tStyle) @@ -34,5 +40,6 @@ void StyleController::setCurrentStyle(const QString ¤tStyle) QStringList StyleController::allStyles() const { QDir dir(":/styles/"); + qDebug() << "styles:" << dir.entryList(); return dir.entryList(QDir::Dirs); } diff --git a/nymea-app/styles.qrc b/nymea-app/styles.qrc new file mode 100644 index 00000000..f45da24f --- /dev/null +++ b/nymea-app/styles.qrc @@ -0,0 +1,10 @@ + + + styles/light/ApplicationWindow.qml + styles/light/Page.qml + styles/light/logo.svg + styles/dark/ApplicationWindow.qml + styles/dark/Page.qml + styles/dark/logo.svg + + diff --git a/nymea-app/styles/maveo/ApplicationWindow.qml b/nymea-app/styles/maveo/ApplicationWindow.qml deleted file mode 100644 index 49ed0de4..00000000 --- a/nymea-app/styles/maveo/ApplicationWindow.qml +++ /dev/null @@ -1,13 +0,0 @@ -import QtQuick 2.0 -import QtQuick.Templates 2.2 -import QtQuick.Controls.Material 2.2 - -ApplicationWindow { - property color guhAccent: "#ffcc00" - property string systemName: "maveo" - property string appName: qsTr("Maveo Pro Box Dashboard") - - Material.theme: Material.Light - Material.accent: guhAccent - Material.primary: Material.Grey -} diff --git a/nymea-app/styles/maveo/logo.svg b/nymea-app/styles/maveo/logo.svg deleted file mode 100644 index 9fec2008..00000000 --- a/nymea-app/styles/maveo/logo.svg +++ /dev/null @@ -1,353 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/packaging/windows_maveo/config/config.xml b/packaging/windows_maveo/config/config.xml deleted file mode 100644 index fe82cb8d..00000000 --- a/packaging/windows_maveo/config/config.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - Maveo Pro Box Dashboard - 1.0.0 - Maveo Pro Box Dashboard Windows Installer - guh GmbH - Maveo - @ApplicationsDir@/Maveo - diff --git a/packaging/windows_maveo/packages/io.guh.maveo/meta/installscript.qs b/packaging/windows_maveo/packages/io.guh.maveo/meta/installscript.qs deleted file mode 100644 index 87cbdfa6..00000000 --- a/packaging/windows_maveo/packages/io.guh.maveo/meta/installscript.qs +++ /dev/null @@ -1,22 +0,0 @@ -function Component() -{ - gui.pageWidgetByObjectName("LicenseAgreementPage").entered.connect(changeLicenseLabels); -} - -changeLicenseLabels = function() -{ - page = gui.pageWidgetByObjectName("LicenseAgreementPage"); - page.AcceptLicenseLabel.setText("Yes, I agree"); - page.RejectLicenseLabel.setText("No, I disagree"); -} - -Component.prototype.createOperations = function() -{ - component.createOperations(); - - if (systemInfo.productType === "windows") { - component.addOperation("CreateShortcut", "@TargetDir@/maveo.exe", "@StartMenuDir@/Maveo Pro Box Dashboard.lnk", - "workingDirectory=@TargetDir@", "iconPath=@TargetDir@/logo.ico", - "description=Maveo Pro Box Dashboard"); - } -} diff --git a/packaging/windows_maveo/packages/io.guh.maveo/meta/license-gpl.txt b/packaging/windows_maveo/packages/io.guh.maveo/meta/license-gpl.txt deleted file mode 100644 index 78ed70df..00000000 --- a/packaging/windows_maveo/packages/io.guh.maveo/meta/license-gpl.txt +++ /dev/null @@ -1,317 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must give the recipients all the rights that -you have. You must make sure that they, too, receive or can get the -source code. And you must show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 1 and 2 above provided that you also do one of the following: - - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision will be guided by the two goals -of preserving the free status of all derivatives of our free software and -of promoting the sharing and reuse of software generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED -OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS -TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - Copyright (C) 2013-2016 guh GmbH. - - This file is part of nymea. - - 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/packaging/windows_maveo/packages/io.guh.maveo/meta/license-maveo.txt b/packaging/windows_maveo/packages/io.guh.maveo/meta/license-maveo.txt deleted file mode 100644 index 438b7c1a..00000000 --- a/packaging/windows_maveo/packages/io.guh.maveo/meta/license-maveo.txt +++ /dev/null @@ -1,68 +0,0 @@ - -

Data Privacy Statement

-

“maveo”
Products & Services

-

1. Data processed by “maveo”

-

The “maveo” box, “maveo” stick, “maveo” app, and if applicable other devices interacting with the “maveo” box process the following information and exchange it among them:

-
    -
  • Personal data and configuration data provided by you, including:
  • -
      -
    • WiFi access data
    • -
    • Access data for a Netatmo server infrastructure
    • -
    • Access data for external server infrastructures added by you, for example:
    • -
        -
      • Netatmo account
      • -
      • Pushbullet token
      • -
      • Google account
      • -
      • Yahoo account
      • -
      -
    • Location data
    • -
    -
  • Bluetooth pairing information and other control data to establish connections between devices
  • -
  • Your IP address
  • -
  • Temperature and humidity data, battery charge level
  • -
  • Technical device data
  • -
  • Usage data regarding:
  • -
      -
    • Door cycles
    • -
    • Garage door type
    • -
    • Forces in the garage door
    • -
    • Opening/closing times
    • -
    • Temperature & relative humidity
    • -
    -
-

2. Interaction with products from other providers

-

The “maveo” products are designed for interaction and integration with products of other providers. This applies in particular to products based on the ZigBee specification (Philips Hue for example). When a connection is established with such products, “maveo” only provides the access data required to establish the connection.

-

We have no influence on the processing of personal data by third-party providers of such products. Please consult the data protection guideline of the respective third party in this regard.

-

3. Use and dissemination of data

-

Personal data are used and disseminated exclusively for the purpose of operating and maintaining the “maveo” products.

-

3.1. Operation of the “maveo” products

-

The personal data listed below are used as follows for the operation of the “maveo” products:

-

WiFi access data:
WiFi access data are recorded for the integration of the “maveo” box in a WLAN and stored in the “maveo” box.

-

E-mail address/password:
A user has to be set up to use the “maveo” box. This requires the user to enter his or her e-mail address one time as well as a password chosen by the user. Both are stored in the device and in the control app.

-

Bluetooth pairing information:
To establish connections between the mobile unit and “maveo” box, and between the “maveo” stick/“maveo” sensor and the “maveo” box, pairing information is exchanged and stored in the “maveo” box for subsequent connections.

-

ZigBee control data:
To establish and maintain a connection with ZigBee devices (Philips Hue for example), control data are exchanged and stored in the “maveo” box.
-

SnapStore:
There is no use of personal data.

-

Certificate/CPU serial number:
To connect to the guh-cloud, a certificate preconfigured in the “maveo” box and the CPU serial number are transmitted. The guh-cloud is required for remote access, push notifications, and other services that have not been implemented yet. Possible services include paid weather services, camera streams, and SMS services.

-

Device information:
To assist with problems, “maveo” can grant the user the option to connect his or her device with a help desk server, thereby giving help desk personnel full access to the device and the data stored on it for a predefined period of time; the connection is severed automatically. Passwords are not transmitted or displayed.

-

Crash information:
The “maveo” box and the “maveo” app can provide functionality that, in case of a crash, automatically generates and sends a report describing when and why the crash occurred. No personal data are involved here.

-

3.2. Other processing of data

-

We use the personal data to optimize the delivery of services, including remote diagnosis of malfunctions and fault elimination if applicable. Data stored for this purpose are located on servers in the EU and are protected against unauthorized access using state-of-the-art, established security measures.

-

We also used state-of-the-art, established methods to protect the transmission of information from your home network over the Internet to our servers and from our servers to your home network.

-

There is no dissemination of personal data for promotional or marketing purposes. Personal data are only disseminated in the following cases:

-
    -
  • To the suppliers and service providers used by us in order to provide services contractually agreed with you, and/or to provide services requested by you
  • -
  • Upon transferring the company or “maveo” business area to a third party, wherein the third party is obligated to handle the data exclusively according to the data privacy statement applicable for you
  • -
  • In case of a legal obligation, in particular due to an official or court order for the purpose of criminal prosecution
  • -
-

There is no transmission of personal data to countries outside the EU/EEA.

-

Data that are not personal, in particular anonymized data, are not subject to the provisions of the Federal Data Protection Act (BDSG) and the General Data Protection Regulation. We are not restricted in regards to the handling of such data, in particular regarding the use of such data for product development and improvement. In any case, we ensure in the use of non-personal data that relating them to a specific person is excluded.

-

4. Deletion of personal data

-

We store your personal data as long as we need them to provide our services for you. You can demand the deletion of your personal data at any time. Please note that we are obligated to verify your legitimization prior to deletion. Your deletion request should therefore be accompanied by a photocopy of a valid identification document.

-

The storage of data for the purpose of concluding a contractual relationship is reserved, as is the case where the blocking of data takes the place of deletion as an exception pursuant to Section 35, Paragraph 3 of the Federal Data Protection Act (BDSG).

-

5. Amendment of the data privacy statement

-

We reserve the right to update or amend this data privacy statement. This is not associated with a restriction of your rights. If adjustments associated with your rights become necessary for technical, organizational, or legal reasons, we will obtain your consent.

-

6. Information according to Section 34 BDSG

-

To obtain information about your personal data that is stored, please get in touch with:

-

Marantec Antriebs- und Steuerungstechnik GmbH & Co. KG
Remser Brook 11, 33428 Marienfeld, Deutschland
T +49 5247 705-0

-

Please note that we are obligated to verify your legitimization before providing information. We therefore need a photocopy of a valid identification document to respond to your request for information.

- diff --git a/packaging/windows_maveo/packages/io.guh.maveo/meta/logo.ico b/packaging/windows_maveo/packages/io.guh.maveo/meta/logo.ico deleted file mode 100644 index 0d8399684514d384e8477b53a60731f42d9b0bfe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 29211 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ΝO>812xFSG(wIGsyeu>+4cIY^yOldc0NAmYLUF7t=1g z_i`)O2yoA2}GhLJ% zhV=GEO;RbS&a$wvNlr-cfjX6EicFqmzAI*-Xzi$uO#W_ zl{eyu!wKukLCZnCN^`!;Itbp5!w#g`usI2~?KTxQ+1V2t;Xg#Nv#|I^Mjil^E6KRR5mMlCrlz!c&O0{Cuhyk+g$5YXM4dU}cm28=c?)bM*UP#HJp<*m{UAR<5ya(qIweT4~DLR8c;S$RTFD<6}E_U=ATvvf2Wjq yMO~N-)DhEjWt6TgSY5eVno8MZY{&M`7=aKAGyl~UMY~a*x3avtT$+s0>Hh=tDy{4Q diff --git a/packaging/windows_maveo/packages/io.guh.maveo/meta/package.xml b/packaging/windows_maveo/packages/io.guh.maveo/meta/package.xml deleted file mode 100644 index 48d3a0a7..00000000 --- a/packaging/windows_maveo/packages/io.guh.maveo/meta/package.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - Maveo Pro Box Dashboard - Install the Maveo Pro Box Dashboard application. - 0.1.0-1 - 2018-05-16 - - - - - true - -