├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── builds_desktop.yml │ ├── builds_mobile.yml │ ├── flatpak.yml │ └── publish_docs.yml ├── .gitignore ├── .gitmodules ├── .idea └── workspace.xml ├── .npmignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── Theengs.pro ├── assets ├── COPYING ├── android │ ├── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── splashicon.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── splashicon.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── splashicon.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_stat_logo.png │ │ │ └── splashicon.png │ │ ├── drawable │ │ │ └── splash.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── values │ │ │ ├── apptheme.xml │ │ │ └── ic_launcher_background.xml │ │ └── xml │ │ │ └── filepaths.xml │ └── src │ │ └── com │ │ ├── emeric │ │ └── utils │ │ │ ├── QGpsUtils.java │ │ │ ├── QSharePathResolver.java │ │ │ └── QShareUtils.java │ │ └── theengs │ │ └── app │ │ ├── TheengsAndroidNotifier.java │ │ ├── TheengsAndroidService.java │ │ └── TheengsBootServiceBroadcastReceiver.java ├── assets.qrc ├── devices.qrc ├── devices │ └── devices_sensors.json ├── icons_custom │ ├── duotone-date_all-24px.svg │ ├── indicators-24px.svg │ ├── inside-24px.svg │ ├── outside-24px.svg │ ├── pot_empty-24px.svg │ ├── pot_flower-24px.svg │ ├── thermometer-24px.svg │ └── thermometer_big-24px.svg ├── icons_fontawesome │ ├── apple-whole-solid.svg │ ├── burger-solid.svg │ ├── carrot-solid.svg │ ├── cow-solid.svg │ ├── egg-solid.svg │ ├── fish-fins-solid.svg │ ├── kiwi-bird-solid.svg │ ├── lungs-solid.svg │ ├── pepper-hot-solid.svg │ ├── piggy-bank-solid.svg │ ├── question-solid.svg │ └── shrimp-solid.svg ├── icons_material │ ├── baseline-ac_unit-24px.svg │ ├── baseline-add-24px.svg │ ├── baseline-air-24px.svg │ ├── baseline-archive-24px.svg │ ├── baseline-arrow_back-24px.svg │ ├── baseline-autorenew-24px.svg │ ├── baseline-backspace-24px.svg │ ├── baseline-battery_10-24px.svg │ ├── baseline-battery_20-24px.svg │ ├── baseline-battery_30-24px.svg │ ├── baseline-battery_50-24px.svg │ ├── baseline-battery_60-24px.svg │ ├── baseline-battery_80-24px.svg │ ├── baseline-battery_90-24px.svg │ ├── baseline-battery_alert-24px.svg │ ├── baseline-battery_full-24px.svg │ ├── baseline-battery_unknown-24px.svg │ ├── baseline-bluetooth-24px.svg │ ├── baseline-bluetooth_disabled-24px.svg │ ├── baseline-check-24px.svg │ ├── baseline-check_circle-24px.svg │ ├── baseline-chevron_left-24px.svg │ ├── baseline-chevron_right-24px.svg │ ├── baseline-close-24px.svg │ ├── baseline-content_cut-24px.svg │ ├── baseline-crop_16_9-24px.svg │ ├── baseline-crop_square-24px.svg │ ├── baseline-delete-24px.svg │ ├── baseline-filter_list-24px.svg │ ├── baseline-flaky-24px.svg │ ├── baseline-import_contacts-24px.svg │ ├── baseline-info-24px.svg │ ├── baseline-insert_link-24px.svg │ ├── baseline-iso-24px.svg │ ├── baseline-menu-24px.svg │ ├── baseline-monitor_weight-24px.svg │ ├── baseline-more_vert-24px.svg │ ├── baseline-near_me-24px.svg │ ├── baseline-new_releases-24px.svg │ ├── baseline-notifications_none-24px.svg │ ├── baseline-open_with-24px.svg │ ├── baseline-outdoor_grill-24px.svg │ ├── baseline-password-24px.svg │ ├── baseline-pin-24px.svg │ ├── baseline-radar-24px.svg │ ├── baseline-refresh-24px.svg │ ├── baseline-search-24px.svg │ ├── baseline-sensors-24px.svg │ ├── baseline-settings-20px.svg │ ├── baseline-settings_input_component-24px.svg │ ├── baseline-sort-24px.svg │ ├── baseline-stars-24px.svg │ ├── baseline-storage-24px.svg │ ├── baseline-straighten-24px.svg │ ├── baseline-supervised_user_circle-24px.svg │ ├── baseline-support-24px.svg │ ├── baseline-tap_and_play_black-24px.svg │ ├── baseline-timeline-24px.svg │ ├── baseline-tonality-24px.svg │ ├── baseline-trip_origin-24px.svg │ ├── baseline-warning-24px.svg │ ├── duotone-bluetooth_connected-24px.svg │ ├── duotone-bluetooth_searching-24px.svg │ ├── duotone-brightness_4-24px.svg │ ├── duotone-date_clear-24px.svg │ ├── duotone-date_range-24px.svg │ ├── duotone-devices-24px.svg │ ├── duotone-edit-24px.svg │ ├── duotone-emoji_objects-24px.svg │ ├── duotone-exit_to_app-24px.svg │ ├── duotone-format_size-24px.svg │ ├── duotone-insert_chart-24px.svg │ ├── duotone-launch-24px.svg │ ├── duotone-library_copy-24px.svg │ ├── duotone-local_drink-24px.svg │ ├── duotone-manage_accounts-24px.svg │ ├── duotone-memory-24px.svg │ ├── duotone-mic-24px.svg │ ├── duotone-minimize-24px.svg │ ├── duotone-model_training-24px.svg │ ├── duotone-pin_drop-24px.svg │ ├── duotone-restart_alt-24px.svg │ ├── duotone-rotate_90_degrees_ccw-24px.svg │ ├── duotone-schedule-24px.svg │ ├── duotone-settings_bluetooth-24px.svg │ ├── duotone-speed-24px.svg │ ├── duotone-style-24px.svg │ ├── duotone-tap_and_play_black-24px.svg │ ├── duotone-timer-24px.svg │ ├── duotone-touch_app-24px.svg │ ├── duotone-translate-24px.svg │ ├── duotone-tune-24px.svg │ ├── duotone-update-24px.svg │ ├── duotone-water_full-24px.svg │ ├── duotone-water_mid-24px.svg │ ├── duotone-wb_sunny-24px.svg │ ├── outline-add_circle-24px.svg │ ├── outline-camera-24px.svg │ ├── outline-email-24px.svg │ ├── outline-info-24px.svg │ ├── outline-local_florist-24px.svg │ ├── outline-lock-24px.svg │ ├── outline-new_releases-24px.svg │ ├── outline-remove_circle-24px.svg │ ├── outline-settings-24px.svg │ └── outline-settings_remote-24px.svg ├── ios │ ├── AppLaunchScreen.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 50.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ └── AppLogo.imageset │ │ │ ├── AppLogo.png │ │ │ └── Contents.json │ └── Info.plist ├── linux │ ├── theengs.appdata.xml │ ├── theengs.desktop │ └── theengs.svg ├── logos │ ├── github.svg │ ├── gitlab.svg │ ├── logo-greyscale.svg │ ├── logo.png │ ├── logo.svg │ └── mqtt.svg ├── macos │ ├── Info.plist │ ├── theengs.entitlements │ └── theengs.icns ├── menus │ ├── menu_back.svg │ ├── menu_close.svg │ └── menu_infos.svg └── windows │ ├── setup.nsi │ └── theengs.ico ├── contribs └── contribs_builder.py ├── deploy_linux.sh ├── deploy_macos.sh ├── deploy_windows.sh ├── docs ├── .vuepress │ ├── config.js │ ├── public │ │ ├── apple-touch-icon.png │ │ ├── favicon-144x144.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── videos │ │ │ ├── Theengs-App-mqtt-integration.mp4 │ │ │ └── Theengs-app-demo.mp4 │ └── styles │ │ └── index.styl ├── README.md ├── flowercare.svg ├── flowercaremax.svg ├── flowerpower.svg ├── higrow.svg ├── img │ ├── Theengs-app-background-updates.png │ ├── Theengs-app-battery-excluded.png │ ├── Theengs-app-battery-unrestricted.png │ ├── Theengs-app-battery.png │ ├── Theengs-app-home-reduced-1280.png │ ├── Theengs-app-live-monitoring.png │ ├── Theengs-app-live.png │ ├── Theengs-app-location-permission-8.png │ ├── Theengs-app-location-permission.png │ ├── Theengs-app-nearby-permission.png │ ├── Theengs-app-threshold-settings-default.png │ ├── Theengs-app-threshold-settings.png │ ├── Theengs-app-unused-permission.png │ ├── Theengs-set-mac.png │ ├── TheengsGateway_controllers.png │ ├── Theengs_app_auto_discovery_BLE_Sensor_Home_Assistant.gif │ └── logo-Theengs.png ├── install │ └── install.md ├── parrotpot.svg ├── participate │ ├── adding-decoders.md │ ├── build.md │ ├── development.md │ └── support.md ├── prerequisites │ ├── controller.md │ └── devices.md ├── ropot.svg └── use │ ├── privacy.md │ └── use.md ├── package.json ├── qml ├── About.qml ├── DesktopApplication.qml ├── DesktopHeader.qml ├── DeviceBrowser.qml ├── DeviceEnvironmental.qml ├── DeviceGeneric.qml ├── DeviceList.qml ├── DeviceMotionSensor.qml ├── DeviceNearbyWidget.qml ├── DevicePlantSensor.qml ├── DevicePlantSensorData.qml ├── DevicePlantSensorHistory.qml ├── DevicePlantSensorSettings.qml ├── DeviceProbe.qml ├── DeviceScale.qml ├── DeviceThermometer.qml ├── DeviceWidget.qml ├── MobileApplication.qml ├── MobileDrawer.qml ├── MobileHeader.qml ├── MobileMenu.qml ├── MobilePermissions.qml ├── Settings.qml ├── SettingsMqtt.qml ├── TemperaturePreset.qml ├── TemperaturePresetList.qml ├── TemperaturePresetSearchWidget.qml ├── TemperaturePresetWidget.qml ├── TemperatureRangeWidget.qml ├── ThemeEngine.qml ├── Tutorial.qml ├── WindowGeometrySaver.qml ├── components.qrc ├── components │ ├── ActionMenuFixed.qml │ ├── AirQualityIndicator.qml │ ├── ButtonExperimental.qml │ ├── ChartEnvironmentalVoc.qml │ ├── ChartHistory.qml │ ├── ChartPlantDataAio.qml │ ├── ChartProbeDataAio.qml │ ├── ChartProbeRealTime.qml │ ├── ChartScaleDataAio.qml │ ├── ChartThermometerMinMax.qml │ ├── ChartThermometerMinMaxBar.qml │ ├── DebugWidget.qml │ ├── IndicatorsCompact.qml │ ├── IndicatorsSolid.qml │ ├── ItemBannerSync.qml │ ├── ItemEnvBox.qml │ ├── ItemLoadData.qml │ ├── ItemNoBluetooth.qml │ ├── ItemNoData.qml │ ├── ItemNoDevice.qml │ ├── ItemNoDeviceNearby.qml │ ├── ItemNoPermissions.qml │ ├── ItemWeatherBox.qml │ ├── RoundButtonIconShadow.qml │ └── TextInputThemed.qml ├── components_generic │ ├── ActionMenuItem.qml │ ├── ActionMenuSeparator.qml │ ├── ActionMenu_bottom.qml │ ├── ActionMenu_floating.qml │ ├── AndroidButton.qml │ ├── AndroidButtonIcon.qml │ ├── AndroidTextField.qml │ ├── ButtonCompactable.qml │ ├── ButtonImage.qml │ ├── ButtonText.qml │ ├── ButtonWireframe.qml │ ├── ButtonWireframeIcon.qml │ ├── ButtonWireframeIconCentered.qml │ ├── CsdLinux.qml │ ├── CsdMac.qml │ ├── CsdWindows.qml │ ├── DataBarCompact.qml │ ├── DataBarSolid.qml │ ├── DatePicker5.qml │ ├── DatePicker6.qml │ ├── DesktopHeaderItem.qml │ ├── DesktopSidebarItem.qml │ ├── DrawerButton.qml │ ├── DrawerItem.qml │ ├── FpsMonitor.qml │ ├── FrameBox.qml │ ├── IconSvg.qml │ ├── ItemBadge.qml │ ├── ItemTag.qml │ ├── ItemTagButton.qml │ ├── ListItem.qml │ ├── ListItemClickable.qml │ ├── ListSeparator.qml │ ├── ListSeparatorPadded.qml │ ├── ListTitle.qml │ ├── MiddleSliderArrow.qml │ ├── MiddleSliderValueSolid.qml │ ├── MobileMenuItem_horizontal.qml │ ├── MobileMenuItem_vertical.qml │ ├── ProgressArc.qml │ ├── ProgressCircle.qml │ ├── RangeSliderArrow.qml │ ├── RangeSliderValue.qml │ ├── RangeSliderValueSolid.qml │ ├── RoundButtonIcon.qml │ ├── RoundButtonText.qml │ ├── SectionTitle.qml │ ├── SelectorGrid.qml │ ├── SelectorGridItem.qml │ ├── SelectorMenu.qml │ ├── SelectorMenuItem.qml │ ├── SimpleShadow5.qml │ ├── SimpleShadow6.qml │ ├── SliderArrow.qml │ ├── SliderValueSolid.qml │ ├── SwipeArea.qml │ ├── TextField_FileDialog6.qml │ ├── TextField_FolderDialog6.qml │ └── ToolTipFlat.qml ├── components_js │ ├── UtilsDeviceSensors.js │ ├── UtilsDeviceTheengs.js │ ├── UtilsNumber.js │ └── UtilsPresets.js ├── components_themed │ ├── ButtonIconThemed.qml │ ├── ButtonThemed.qml │ ├── CheckBoxThemed.qml │ ├── ComboBoxThemed.qml │ ├── DialThemed.qml │ ├── DrawerThemed.qml │ ├── FrameThemed.qml │ ├── GroupBoxThemed.qml │ ├── ItemDelegateThemed.qml │ ├── MiddleSliderThemed.qml │ ├── PageIndicatorThemed.qml │ ├── PaneThemed.qml │ ├── ProgressBarThemed.qml │ ├── RadioButtonThemed.qml │ ├── RangeSliderThemed.qml │ ├── RippleThemed.qml │ ├── RoundButtonIconThemed.qml │ ├── RoundButtonThemed.qml │ ├── ScrollBarThemed.qml │ ├── SelectorMenuThemed.qml │ ├── SelectorMenuThemedItem.qml │ ├── SliderThemed.qml │ ├── SpinBoxThemed_desktop.qml │ ├── SpinBoxThemed_mobile.qml │ ├── SwitchThemed_desktop.qml │ ├── SwitchThemed_mobile.qml │ ├── TextAreaThemed.qml │ ├── TextEditThemed.qml │ ├── TextFieldThemed.qml │ ├── ToolTipThemed.qml │ └── TumblerThemed.qml ├── popups │ ├── PopupBackgroundUpdates.qml │ ├── PopupBlacklistDevice.qml │ ├── PopupCalibration.qml │ ├── PopupDeleteData.qml │ ├── PopupDeleteDevice.qml │ ├── PopupMacAddress.qml │ ├── PopupPresetAdd.qml │ ├── PopupPresetCopy.qml │ ├── PopupPresetDelete.qml │ ├── PopupPresetRangeAdd.qml │ ├── PopupPresetRangeDelete.qml │ └── PopupPresetSelection.qml └── qml.qrc └── src ├── AndroidService.cpp ├── AndroidService.h ├── DatabaseManager.cpp ├── DatabaseManager.h ├── DeviceFilter.cpp ├── DeviceFilter.h ├── DeviceManager.cpp ├── DeviceManager.h ├── DeviceManager_advertisement.cpp ├── DeviceManager_export.cpp ├── DeviceManager_nearby.cpp ├── DeviceManager_theengs.cpp ├── MenubarManager.cpp ├── MenubarManager.h ├── MqttManager.cpp ├── MqttManager.h ├── NotificationManager.cpp ├── NotificationManager.h ├── SettingsManager.cpp ├── SettingsManager.h ├── SystrayManager.cpp ├── SystrayManager.h ├── TempPreset.cpp ├── TempPreset.h ├── TempPresetManager.cpp ├── TempPresetManager.h ├── device.cpp ├── device.h ├── device_environmental.cpp ├── device_environmental.h ├── device_firmwares.h ├── device_infos.cpp ├── device_infos.h ├── device_plantsensor.cpp ├── device_plantsensor.h ├── device_sensor.cpp ├── device_sensor.h ├── device_theengs.cpp ├── device_theengs.h ├── device_thermometer.cpp ├── device_thermometer.h ├── device_utils.h ├── device_utils_theengs.h ├── devices ├── device_flowercare.cpp ├── device_flowercare.h ├── device_flowercare_tuya.cpp ├── device_flowercare_tuya.h ├── device_hygrotemp_cgd1.cpp ├── device_hygrotemp_cgd1.h ├── device_hygrotemp_cgdk2.cpp ├── device_hygrotemp_cgdk2.h ├── device_hygrotemp_cgg1.cpp ├── device_hygrotemp_cgg1.h ├── device_hygrotemp_cgp1w.cpp ├── device_hygrotemp_cgp1w.h ├── device_hygrotemp_clock.cpp ├── device_hygrotemp_clock.h ├── device_hygrotemp_lywsdcgq.cpp ├── device_hygrotemp_lywsdcgq.h ├── device_hygrotemp_square.cpp ├── device_hygrotemp_square.h ├── device_jqjcy01ym.cpp ├── device_jqjcy01ym.h ├── device_ropot.cpp ├── device_ropot.h ├── device_theengs_beacons.cpp ├── device_theengs_beacons.h ├── device_theengs_generic.cpp ├── device_theengs_generic.h ├── device_theengs_motionsensors.cpp ├── device_theengs_motionsensors.h ├── device_theengs_probes.cpp ├── device_theengs_probes.h ├── device_theengs_scales.cpp ├── device_theengs_scales.h ├── device_theengs_thermometers.cpp ├── device_theengs_thermometers.h ├── device_thermobeacon.cpp └── device_thermobeacon.h ├── main.cpp └── thirdparty ├── AppUtils ├── AppUtils.pri ├── CMakeLists.txt ├── LICENSE ├── README.md ├── utils_app.cpp ├── utils_app.h ├── utils_bits.cpp ├── utils_bits.h ├── utils_clipboard.cpp ├── utils_clipboard.h ├── utils_fpsmonitor.cpp ├── utils_fpsmonitor.h ├── utils_language.cpp ├── utils_language.h ├── utils_log.cpp ├── utils_log.h ├── utils_maths.cpp ├── utils_maths.h ├── utils_os_android.h ├── utils_os_android_qt5.cpp ├── utils_os_android_qt6.cpp ├── utils_os_ios.h ├── utils_os_ios.mm ├── utils_os_ios_notif.h ├── utils_os_ios_notif.mm ├── utils_os_ios_wifi.h ├── utils_os_ios_wifi.mm ├── utils_os_linux.cpp ├── utils_os_linux.h ├── utils_os_macos.h ├── utils_os_macos.mm ├── utils_os_macos_dock.h ├── utils_os_macos_dock.mm ├── utils_os_windows.cpp ├── utils_os_windows.h ├── utils_screen.cpp ├── utils_screen.h ├── utils_sysinfo.cpp ├── utils_sysinfo.h ├── utils_versionchecker.h ├── utils_wifi.cpp └── utils_wifi.h ├── MobileSharing ├── CMakeLists.txt ├── LICENSE ├── MobileSharing ├── MobileSharing.h ├── MobileSharing.pri ├── QShareActivity.java ├── SharingApplication.cpp ├── SharingApplication.h ├── SharingUtils.cpp ├── SharingUtils.h ├── SharingUtils_android.h ├── SharingUtils_android_qt5.cpp ├── SharingUtils_android_qt6.cpp ├── SharingUtils_ios.h ├── SharingUtils_ios.mm ├── docviewcontroller_ios.h └── docviewcontroller_ios.mm ├── MobileUI ├── CMakeLists.txt ├── LICENSE ├── MobileUI ├── MobileUI.cpp ├── MobileUI.h ├── MobileUI.pri ├── MobileUI_android_qt5.cpp ├── MobileUI_android_qt6.cpp ├── MobileUI_dummy.cpp ├── MobileUI_ios.mm ├── MobileUI_private.h ├── README.md └── qmldir ├── RC4 ├── rc4.cpp └── rc4.h └── SingleApplication ├── CMakeLists.txt ├── LICENSE ├── README.md ├── SingleApplication ├── SingleApplication.cpp ├── SingleApplication.h ├── SingleApplication.pri ├── SingleApplication_private.cpp └── SingleApplication_private.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/builds_desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.github/workflows/builds_desktop.yml -------------------------------------------------------------------------------- /.github/workflows/builds_mobile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.github/workflows/builds_mobile.yml -------------------------------------------------------------------------------- /.github/workflows/flatpak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.github/workflows/flatpak.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.github/workflows/publish_docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/.npmignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/README.md -------------------------------------------------------------------------------- /Theengs.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/Theengs.pro -------------------------------------------------------------------------------- /assets/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/COPYING -------------------------------------------------------------------------------- /assets/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/AndroidManifest.xml -------------------------------------------------------------------------------- /assets/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/build.gradle -------------------------------------------------------------------------------- /assets/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/gradle.properties -------------------------------------------------------------------------------- /assets/android/res/drawable-hdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-hdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /assets/android/res/drawable-hdpi/splashicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-hdpi/splashicon.png -------------------------------------------------------------------------------- /assets/android/res/drawable-xhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-xhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /assets/android/res/drawable-xhdpi/splashicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-xhdpi/splashicon.png -------------------------------------------------------------------------------- /assets/android/res/drawable-xxhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-xxhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /assets/android/res/drawable-xxhdpi/splashicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-xxhdpi/splashicon.png -------------------------------------------------------------------------------- /assets/android/res/drawable-xxxhdpi/ic_stat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-xxxhdpi/ic_stat_logo.png -------------------------------------------------------------------------------- /assets/android/res/drawable-xxxhdpi/splashicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable-xxxhdpi/splashicon.png -------------------------------------------------------------------------------- /assets/android/res/drawable/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/drawable/splash.xml -------------------------------------------------------------------------------- /assets/android/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /assets/android/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /assets/android/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /assets/android/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /assets/android/res/values/apptheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/values/apptheme.xml -------------------------------------------------------------------------------- /assets/android/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /assets/android/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/res/xml/filepaths.xml -------------------------------------------------------------------------------- /assets/android/src/com/emeric/utils/QGpsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/src/com/emeric/utils/QGpsUtils.java -------------------------------------------------------------------------------- /assets/android/src/com/emeric/utils/QSharePathResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/src/com/emeric/utils/QSharePathResolver.java -------------------------------------------------------------------------------- /assets/android/src/com/emeric/utils/QShareUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/src/com/emeric/utils/QShareUtils.java -------------------------------------------------------------------------------- /assets/android/src/com/theengs/app/TheengsAndroidNotifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/src/com/theengs/app/TheengsAndroidNotifier.java -------------------------------------------------------------------------------- /assets/android/src/com/theengs/app/TheengsAndroidService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/src/com/theengs/app/TheengsAndroidService.java -------------------------------------------------------------------------------- /assets/android/src/com/theengs/app/TheengsBootServiceBroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/android/src/com/theengs/app/TheengsBootServiceBroadcastReceiver.java -------------------------------------------------------------------------------- /assets/assets.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/assets.qrc -------------------------------------------------------------------------------- /assets/devices.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/devices.qrc -------------------------------------------------------------------------------- /assets/devices/devices_sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/devices/devices_sensors.json -------------------------------------------------------------------------------- /assets/icons_custom/duotone-date_all-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/duotone-date_all-24px.svg -------------------------------------------------------------------------------- /assets/icons_custom/indicators-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/indicators-24px.svg -------------------------------------------------------------------------------- /assets/icons_custom/inside-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/inside-24px.svg -------------------------------------------------------------------------------- /assets/icons_custom/outside-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/outside-24px.svg -------------------------------------------------------------------------------- /assets/icons_custom/pot_empty-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/pot_empty-24px.svg -------------------------------------------------------------------------------- /assets/icons_custom/pot_flower-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/pot_flower-24px.svg -------------------------------------------------------------------------------- /assets/icons_custom/thermometer-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/thermometer-24px.svg -------------------------------------------------------------------------------- /assets/icons_custom/thermometer_big-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_custom/thermometer_big-24px.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/apple-whole-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/apple-whole-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/burger-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/burger-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/carrot-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/carrot-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/cow-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/cow-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/egg-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/egg-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/fish-fins-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/fish-fins-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/kiwi-bird-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/kiwi-bird-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/lungs-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/lungs-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/pepper-hot-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/pepper-hot-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/piggy-bank-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/piggy-bank-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/question-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/question-solid.svg -------------------------------------------------------------------------------- /assets/icons_fontawesome/shrimp-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_fontawesome/shrimp-solid.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-ac_unit-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-ac_unit-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-add-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-add-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-air-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-air-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-archive-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-archive-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-arrow_back-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-arrow_back-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-autorenew-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-autorenew-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-backspace-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-backspace-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_10-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_10-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_20-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_20-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_30-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_30-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_50-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_50-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_60-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_60-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_80-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_80-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_90-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_90-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_alert-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_alert-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_full-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_full-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-battery_unknown-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-battery_unknown-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-bluetooth-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-bluetooth-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-bluetooth_disabled-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-bluetooth_disabled-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-check-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-check-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-check_circle-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-check_circle-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-chevron_left-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-chevron_left-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-chevron_right-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-chevron_right-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-close-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-close-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-content_cut-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-content_cut-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-crop_16_9-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-crop_16_9-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-crop_square-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-crop_square-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-delete-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-delete-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-filter_list-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-filter_list-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-flaky-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-flaky-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-import_contacts-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-import_contacts-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-info-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-info-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-insert_link-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-insert_link-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-iso-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-iso-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-menu-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-menu-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-monitor_weight-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-monitor_weight-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-more_vert-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-more_vert-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-near_me-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-near_me-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-new_releases-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-new_releases-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-notifications_none-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-notifications_none-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-open_with-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-open_with-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-outdoor_grill-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-outdoor_grill-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-password-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-password-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-pin-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-pin-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-radar-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-radar-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-refresh-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-refresh-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-search-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-search-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-sensors-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-sensors-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-settings-20px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-settings-20px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-settings_input_component-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-settings_input_component-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-sort-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-sort-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-stars-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-stars-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-storage-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-storage-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-straighten-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-straighten-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-supervised_user_circle-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-supervised_user_circle-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-support-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-support-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-tap_and_play_black-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-tap_and_play_black-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-timeline-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-timeline-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-tonality-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-tonality-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-trip_origin-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-trip_origin-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/baseline-warning-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/baseline-warning-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-bluetooth_connected-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-bluetooth_connected-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-bluetooth_searching-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-bluetooth_searching-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-brightness_4-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-brightness_4-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-date_clear-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-date_clear-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-date_range-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-date_range-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-devices-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-devices-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-edit-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-edit-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-emoji_objects-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-emoji_objects-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-exit_to_app-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-exit_to_app-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-format_size-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-format_size-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-insert_chart-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-insert_chart-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-launch-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-launch-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-library_copy-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-library_copy-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-local_drink-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-local_drink-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-manage_accounts-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-manage_accounts-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-memory-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-memory-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-mic-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-mic-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-minimize-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-minimize-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-model_training-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-model_training-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-pin_drop-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-pin_drop-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-restart_alt-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-restart_alt-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-rotate_90_degrees_ccw-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-rotate_90_degrees_ccw-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-schedule-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-schedule-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-settings_bluetooth-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-settings_bluetooth-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-speed-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-speed-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-style-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-style-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-tap_and_play_black-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-tap_and_play_black-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-timer-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-timer-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-touch_app-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-touch_app-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-translate-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-translate-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-tune-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-tune-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-update-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-update-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-water_full-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-water_full-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-water_mid-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-water_mid-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/duotone-wb_sunny-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/duotone-wb_sunny-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-add_circle-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-add_circle-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-camera-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-camera-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-email-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-email-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-info-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-info-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-local_florist-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-local_florist-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-lock-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-lock-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-new_releases-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-new_releases-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-remove_circle-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-remove_circle-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-settings-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-settings-24px.svg -------------------------------------------------------------------------------- /assets/icons_material/outline-settings_remote-24px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/icons_material/outline-settings_remote-24px.svg -------------------------------------------------------------------------------- /assets/ios/AppLaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/AppLaunchScreen.storyboard -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppLogo.imageset/AppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppLogo.imageset/AppLogo.png -------------------------------------------------------------------------------- /assets/ios/Images.xcassets/AppLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Images.xcassets/AppLogo.imageset/Contents.json -------------------------------------------------------------------------------- /assets/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/ios/Info.plist -------------------------------------------------------------------------------- /assets/linux/theengs.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/linux/theengs.appdata.xml -------------------------------------------------------------------------------- /assets/linux/theengs.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/linux/theengs.desktop -------------------------------------------------------------------------------- /assets/linux/theengs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/linux/theengs.svg -------------------------------------------------------------------------------- /assets/logos/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/logos/github.svg -------------------------------------------------------------------------------- /assets/logos/gitlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/logos/gitlab.svg -------------------------------------------------------------------------------- /assets/logos/logo-greyscale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/logos/logo-greyscale.svg -------------------------------------------------------------------------------- /assets/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/logos/logo.png -------------------------------------------------------------------------------- /assets/logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/logos/logo.svg -------------------------------------------------------------------------------- /assets/logos/mqtt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/logos/mqtt.svg -------------------------------------------------------------------------------- /assets/macos/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/macos/Info.plist -------------------------------------------------------------------------------- /assets/macos/theengs.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/macos/theengs.entitlements -------------------------------------------------------------------------------- /assets/macos/theengs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/macos/theengs.icns -------------------------------------------------------------------------------- /assets/menus/menu_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/menus/menu_back.svg -------------------------------------------------------------------------------- /assets/menus/menu_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/menus/menu_close.svg -------------------------------------------------------------------------------- /assets/menus/menu_infos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/menus/menu_infos.svg -------------------------------------------------------------------------------- /assets/windows/setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/windows/setup.nsi -------------------------------------------------------------------------------- /assets/windows/theengs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/assets/windows/theengs.ico -------------------------------------------------------------------------------- /contribs/contribs_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/contribs/contribs_builder.py -------------------------------------------------------------------------------- /deploy_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/deploy_linux.sh -------------------------------------------------------------------------------- /deploy_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/deploy_macos.sh -------------------------------------------------------------------------------- /deploy_windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/deploy_windows.sh -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/public/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/public/favicon-144x144.png -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/public/favicon-16x16.png -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/public/favicon-32x32.png -------------------------------------------------------------------------------- /docs/.vuepress/public/videos/Theengs-App-mqtt-integration.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/public/videos/Theengs-App-mqtt-integration.mp4 -------------------------------------------------------------------------------- /docs/.vuepress/public/videos/Theengs-app-demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/public/videos/Theengs-app-demo.mp4 -------------------------------------------------------------------------------- /docs/.vuepress/styles/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/.vuepress/styles/index.styl -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/flowercare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/flowercare.svg -------------------------------------------------------------------------------- /docs/flowercaremax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/flowercaremax.svg -------------------------------------------------------------------------------- /docs/flowerpower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/flowerpower.svg -------------------------------------------------------------------------------- /docs/higrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/higrow.svg -------------------------------------------------------------------------------- /docs/img/Theengs-app-background-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-background-updates.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-battery-excluded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-battery-excluded.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-battery-unrestricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-battery-unrestricted.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-battery.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-home-reduced-1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-home-reduced-1280.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-live-monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-live-monitoring.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-live.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-location-permission-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-location-permission-8.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-location-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-location-permission.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-nearby-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-nearby-permission.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-threshold-settings-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-threshold-settings-default.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-threshold-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-threshold-settings.png -------------------------------------------------------------------------------- /docs/img/Theengs-app-unused-permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-app-unused-permission.png -------------------------------------------------------------------------------- /docs/img/Theengs-set-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs-set-mac.png -------------------------------------------------------------------------------- /docs/img/TheengsGateway_controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/TheengsGateway_controllers.png -------------------------------------------------------------------------------- /docs/img/Theengs_app_auto_discovery_BLE_Sensor_Home_Assistant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/Theengs_app_auto_discovery_BLE_Sensor_Home_Assistant.gif -------------------------------------------------------------------------------- /docs/img/logo-Theengs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/img/logo-Theengs.png -------------------------------------------------------------------------------- /docs/install/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/install/install.md -------------------------------------------------------------------------------- /docs/parrotpot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/parrotpot.svg -------------------------------------------------------------------------------- /docs/participate/adding-decoders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/participate/adding-decoders.md -------------------------------------------------------------------------------- /docs/participate/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/participate/build.md -------------------------------------------------------------------------------- /docs/participate/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/participate/development.md -------------------------------------------------------------------------------- /docs/participate/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/participate/support.md -------------------------------------------------------------------------------- /docs/prerequisites/controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/prerequisites/controller.md -------------------------------------------------------------------------------- /docs/prerequisites/devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/prerequisites/devices.md -------------------------------------------------------------------------------- /docs/ropot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/ropot.svg -------------------------------------------------------------------------------- /docs/use/privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/use/privacy.md -------------------------------------------------------------------------------- /docs/use/use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/docs/use/use.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/package.json -------------------------------------------------------------------------------- /qml/About.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/About.qml -------------------------------------------------------------------------------- /qml/DesktopApplication.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DesktopApplication.qml -------------------------------------------------------------------------------- /qml/DesktopHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DesktopHeader.qml -------------------------------------------------------------------------------- /qml/DeviceBrowser.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceBrowser.qml -------------------------------------------------------------------------------- /qml/DeviceEnvironmental.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceEnvironmental.qml -------------------------------------------------------------------------------- /qml/DeviceGeneric.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceGeneric.qml -------------------------------------------------------------------------------- /qml/DeviceList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceList.qml -------------------------------------------------------------------------------- /qml/DeviceMotionSensor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceMotionSensor.qml -------------------------------------------------------------------------------- /qml/DeviceNearbyWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceNearbyWidget.qml -------------------------------------------------------------------------------- /qml/DevicePlantSensor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DevicePlantSensor.qml -------------------------------------------------------------------------------- /qml/DevicePlantSensorData.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DevicePlantSensorData.qml -------------------------------------------------------------------------------- /qml/DevicePlantSensorHistory.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DevicePlantSensorHistory.qml -------------------------------------------------------------------------------- /qml/DevicePlantSensorSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DevicePlantSensorSettings.qml -------------------------------------------------------------------------------- /qml/DeviceProbe.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceProbe.qml -------------------------------------------------------------------------------- /qml/DeviceScale.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceScale.qml -------------------------------------------------------------------------------- /qml/DeviceThermometer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceThermometer.qml -------------------------------------------------------------------------------- /qml/DeviceWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/DeviceWidget.qml -------------------------------------------------------------------------------- /qml/MobileApplication.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/MobileApplication.qml -------------------------------------------------------------------------------- /qml/MobileDrawer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/MobileDrawer.qml -------------------------------------------------------------------------------- /qml/MobileHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/MobileHeader.qml -------------------------------------------------------------------------------- /qml/MobileMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/MobileMenu.qml -------------------------------------------------------------------------------- /qml/MobilePermissions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/MobilePermissions.qml -------------------------------------------------------------------------------- /qml/Settings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/Settings.qml -------------------------------------------------------------------------------- /qml/SettingsMqtt.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/SettingsMqtt.qml -------------------------------------------------------------------------------- /qml/TemperaturePreset.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/TemperaturePreset.qml -------------------------------------------------------------------------------- /qml/TemperaturePresetList.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/TemperaturePresetList.qml -------------------------------------------------------------------------------- /qml/TemperaturePresetSearchWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/TemperaturePresetSearchWidget.qml -------------------------------------------------------------------------------- /qml/TemperaturePresetWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/TemperaturePresetWidget.qml -------------------------------------------------------------------------------- /qml/TemperatureRangeWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/TemperatureRangeWidget.qml -------------------------------------------------------------------------------- /qml/ThemeEngine.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/ThemeEngine.qml -------------------------------------------------------------------------------- /qml/Tutorial.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/Tutorial.qml -------------------------------------------------------------------------------- /qml/WindowGeometrySaver.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/WindowGeometrySaver.qml -------------------------------------------------------------------------------- /qml/components.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components.qrc -------------------------------------------------------------------------------- /qml/components/ActionMenuFixed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ActionMenuFixed.qml -------------------------------------------------------------------------------- /qml/components/AirQualityIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/AirQualityIndicator.qml -------------------------------------------------------------------------------- /qml/components/ButtonExperimental.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ButtonExperimental.qml -------------------------------------------------------------------------------- /qml/components/ChartEnvironmentalVoc.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartEnvironmentalVoc.qml -------------------------------------------------------------------------------- /qml/components/ChartHistory.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartHistory.qml -------------------------------------------------------------------------------- /qml/components/ChartPlantDataAio.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartPlantDataAio.qml -------------------------------------------------------------------------------- /qml/components/ChartProbeDataAio.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartProbeDataAio.qml -------------------------------------------------------------------------------- /qml/components/ChartProbeRealTime.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartProbeRealTime.qml -------------------------------------------------------------------------------- /qml/components/ChartScaleDataAio.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartScaleDataAio.qml -------------------------------------------------------------------------------- /qml/components/ChartThermometerMinMax.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartThermometerMinMax.qml -------------------------------------------------------------------------------- /qml/components/ChartThermometerMinMaxBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ChartThermometerMinMaxBar.qml -------------------------------------------------------------------------------- /qml/components/DebugWidget.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/DebugWidget.qml -------------------------------------------------------------------------------- /qml/components/IndicatorsCompact.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/IndicatorsCompact.qml -------------------------------------------------------------------------------- /qml/components/IndicatorsSolid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/IndicatorsSolid.qml -------------------------------------------------------------------------------- /qml/components/ItemBannerSync.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemBannerSync.qml -------------------------------------------------------------------------------- /qml/components/ItemEnvBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemEnvBox.qml -------------------------------------------------------------------------------- /qml/components/ItemLoadData.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemLoadData.qml -------------------------------------------------------------------------------- /qml/components/ItemNoBluetooth.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemNoBluetooth.qml -------------------------------------------------------------------------------- /qml/components/ItemNoData.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemNoData.qml -------------------------------------------------------------------------------- /qml/components/ItemNoDevice.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemNoDevice.qml -------------------------------------------------------------------------------- /qml/components/ItemNoDeviceNearby.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemNoDeviceNearby.qml -------------------------------------------------------------------------------- /qml/components/ItemNoPermissions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemNoPermissions.qml -------------------------------------------------------------------------------- /qml/components/ItemWeatherBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/ItemWeatherBox.qml -------------------------------------------------------------------------------- /qml/components/RoundButtonIconShadow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/RoundButtonIconShadow.qml -------------------------------------------------------------------------------- /qml/components/TextInputThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components/TextInputThemed.qml -------------------------------------------------------------------------------- /qml/components_generic/ActionMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ActionMenuItem.qml -------------------------------------------------------------------------------- /qml/components_generic/ActionMenuSeparator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ActionMenuSeparator.qml -------------------------------------------------------------------------------- /qml/components_generic/ActionMenu_bottom.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ActionMenu_bottom.qml -------------------------------------------------------------------------------- /qml/components_generic/ActionMenu_floating.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ActionMenu_floating.qml -------------------------------------------------------------------------------- /qml/components_generic/AndroidButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/AndroidButton.qml -------------------------------------------------------------------------------- /qml/components_generic/AndroidButtonIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/AndroidButtonIcon.qml -------------------------------------------------------------------------------- /qml/components_generic/AndroidTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/AndroidTextField.qml -------------------------------------------------------------------------------- /qml/components_generic/ButtonCompactable.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ButtonCompactable.qml -------------------------------------------------------------------------------- /qml/components_generic/ButtonImage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ButtonImage.qml -------------------------------------------------------------------------------- /qml/components_generic/ButtonText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ButtonText.qml -------------------------------------------------------------------------------- /qml/components_generic/ButtonWireframe.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ButtonWireframe.qml -------------------------------------------------------------------------------- /qml/components_generic/ButtonWireframeIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ButtonWireframeIcon.qml -------------------------------------------------------------------------------- /qml/components_generic/ButtonWireframeIconCentered.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ButtonWireframeIconCentered.qml -------------------------------------------------------------------------------- /qml/components_generic/CsdLinux.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/CsdLinux.qml -------------------------------------------------------------------------------- /qml/components_generic/CsdMac.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/CsdMac.qml -------------------------------------------------------------------------------- /qml/components_generic/CsdWindows.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/CsdWindows.qml -------------------------------------------------------------------------------- /qml/components_generic/DataBarCompact.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DataBarCompact.qml -------------------------------------------------------------------------------- /qml/components_generic/DataBarSolid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DataBarSolid.qml -------------------------------------------------------------------------------- /qml/components_generic/DatePicker5.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DatePicker5.qml -------------------------------------------------------------------------------- /qml/components_generic/DatePicker6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DatePicker6.qml -------------------------------------------------------------------------------- /qml/components_generic/DesktopHeaderItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DesktopHeaderItem.qml -------------------------------------------------------------------------------- /qml/components_generic/DesktopSidebarItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DesktopSidebarItem.qml -------------------------------------------------------------------------------- /qml/components_generic/DrawerButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DrawerButton.qml -------------------------------------------------------------------------------- /qml/components_generic/DrawerItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/DrawerItem.qml -------------------------------------------------------------------------------- /qml/components_generic/FpsMonitor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/FpsMonitor.qml -------------------------------------------------------------------------------- /qml/components_generic/FrameBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/FrameBox.qml -------------------------------------------------------------------------------- /qml/components_generic/IconSvg.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/IconSvg.qml -------------------------------------------------------------------------------- /qml/components_generic/ItemBadge.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ItemBadge.qml -------------------------------------------------------------------------------- /qml/components_generic/ItemTag.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ItemTag.qml -------------------------------------------------------------------------------- /qml/components_generic/ItemTagButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ItemTagButton.qml -------------------------------------------------------------------------------- /qml/components_generic/ListItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ListItem.qml -------------------------------------------------------------------------------- /qml/components_generic/ListItemClickable.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ListItemClickable.qml -------------------------------------------------------------------------------- /qml/components_generic/ListSeparator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ListSeparator.qml -------------------------------------------------------------------------------- /qml/components_generic/ListSeparatorPadded.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ListSeparatorPadded.qml -------------------------------------------------------------------------------- /qml/components_generic/ListTitle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ListTitle.qml -------------------------------------------------------------------------------- /qml/components_generic/MiddleSliderArrow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/MiddleSliderArrow.qml -------------------------------------------------------------------------------- /qml/components_generic/MiddleSliderValueSolid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/MiddleSliderValueSolid.qml -------------------------------------------------------------------------------- /qml/components_generic/MobileMenuItem_horizontal.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/MobileMenuItem_horizontal.qml -------------------------------------------------------------------------------- /qml/components_generic/MobileMenuItem_vertical.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/MobileMenuItem_vertical.qml -------------------------------------------------------------------------------- /qml/components_generic/ProgressArc.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ProgressArc.qml -------------------------------------------------------------------------------- /qml/components_generic/ProgressCircle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ProgressCircle.qml -------------------------------------------------------------------------------- /qml/components_generic/RangeSliderArrow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/RangeSliderArrow.qml -------------------------------------------------------------------------------- /qml/components_generic/RangeSliderValue.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/RangeSliderValue.qml -------------------------------------------------------------------------------- /qml/components_generic/RangeSliderValueSolid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/RangeSliderValueSolid.qml -------------------------------------------------------------------------------- /qml/components_generic/RoundButtonIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/RoundButtonIcon.qml -------------------------------------------------------------------------------- /qml/components_generic/RoundButtonText.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/RoundButtonText.qml -------------------------------------------------------------------------------- /qml/components_generic/SectionTitle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SectionTitle.qml -------------------------------------------------------------------------------- /qml/components_generic/SelectorGrid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SelectorGrid.qml -------------------------------------------------------------------------------- /qml/components_generic/SelectorGridItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SelectorGridItem.qml -------------------------------------------------------------------------------- /qml/components_generic/SelectorMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SelectorMenu.qml -------------------------------------------------------------------------------- /qml/components_generic/SelectorMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SelectorMenuItem.qml -------------------------------------------------------------------------------- /qml/components_generic/SimpleShadow5.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SimpleShadow5.qml -------------------------------------------------------------------------------- /qml/components_generic/SimpleShadow6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SimpleShadow6.qml -------------------------------------------------------------------------------- /qml/components_generic/SliderArrow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SliderArrow.qml -------------------------------------------------------------------------------- /qml/components_generic/SliderValueSolid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SliderValueSolid.qml -------------------------------------------------------------------------------- /qml/components_generic/SwipeArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/SwipeArea.qml -------------------------------------------------------------------------------- /qml/components_generic/TextField_FileDialog6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/TextField_FileDialog6.qml -------------------------------------------------------------------------------- /qml/components_generic/TextField_FolderDialog6.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/TextField_FolderDialog6.qml -------------------------------------------------------------------------------- /qml/components_generic/ToolTipFlat.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_generic/ToolTipFlat.qml -------------------------------------------------------------------------------- /qml/components_js/UtilsDeviceSensors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_js/UtilsDeviceSensors.js -------------------------------------------------------------------------------- /qml/components_js/UtilsDeviceTheengs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_js/UtilsDeviceTheengs.js -------------------------------------------------------------------------------- /qml/components_js/UtilsNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_js/UtilsNumber.js -------------------------------------------------------------------------------- /qml/components_js/UtilsPresets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_js/UtilsPresets.js -------------------------------------------------------------------------------- /qml/components_themed/ButtonIconThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/ButtonIconThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/ButtonThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/ButtonThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/CheckBoxThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/CheckBoxThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/ComboBoxThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/ComboBoxThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/DialThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/DialThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/DrawerThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/DrawerThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/FrameThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/FrameThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/GroupBoxThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/GroupBoxThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/ItemDelegateThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/ItemDelegateThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/MiddleSliderThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/MiddleSliderThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/PageIndicatorThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/PageIndicatorThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/PaneThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/PaneThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/ProgressBarThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/ProgressBarThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/RadioButtonThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/RadioButtonThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/RangeSliderThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/RangeSliderThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/RippleThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/RippleThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/RoundButtonIconThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/RoundButtonIconThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/RoundButtonThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/RoundButtonThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/ScrollBarThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/ScrollBarThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/SelectorMenuThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/SelectorMenuThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/SelectorMenuThemedItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/SelectorMenuThemedItem.qml -------------------------------------------------------------------------------- /qml/components_themed/SliderThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/SliderThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/SpinBoxThemed_desktop.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/SpinBoxThemed_desktop.qml -------------------------------------------------------------------------------- /qml/components_themed/SpinBoxThemed_mobile.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/SpinBoxThemed_mobile.qml -------------------------------------------------------------------------------- /qml/components_themed/SwitchThemed_desktop.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/SwitchThemed_desktop.qml -------------------------------------------------------------------------------- /qml/components_themed/SwitchThemed_mobile.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/SwitchThemed_mobile.qml -------------------------------------------------------------------------------- /qml/components_themed/TextAreaThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/TextAreaThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/TextEditThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/TextEditThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/TextFieldThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/TextFieldThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/ToolTipThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/ToolTipThemed.qml -------------------------------------------------------------------------------- /qml/components_themed/TumblerThemed.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/components_themed/TumblerThemed.qml -------------------------------------------------------------------------------- /qml/popups/PopupBackgroundUpdates.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupBackgroundUpdates.qml -------------------------------------------------------------------------------- /qml/popups/PopupBlacklistDevice.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupBlacklistDevice.qml -------------------------------------------------------------------------------- /qml/popups/PopupCalibration.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupCalibration.qml -------------------------------------------------------------------------------- /qml/popups/PopupDeleteData.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupDeleteData.qml -------------------------------------------------------------------------------- /qml/popups/PopupDeleteDevice.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupDeleteDevice.qml -------------------------------------------------------------------------------- /qml/popups/PopupMacAddress.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupMacAddress.qml -------------------------------------------------------------------------------- /qml/popups/PopupPresetAdd.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupPresetAdd.qml -------------------------------------------------------------------------------- /qml/popups/PopupPresetCopy.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupPresetCopy.qml -------------------------------------------------------------------------------- /qml/popups/PopupPresetDelete.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupPresetDelete.qml -------------------------------------------------------------------------------- /qml/popups/PopupPresetRangeAdd.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupPresetRangeAdd.qml -------------------------------------------------------------------------------- /qml/popups/PopupPresetRangeDelete.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupPresetRangeDelete.qml -------------------------------------------------------------------------------- /qml/popups/PopupPresetSelection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/popups/PopupPresetSelection.qml -------------------------------------------------------------------------------- /qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/qml/qml.qrc -------------------------------------------------------------------------------- /src/AndroidService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/AndroidService.cpp -------------------------------------------------------------------------------- /src/AndroidService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/AndroidService.h -------------------------------------------------------------------------------- /src/DatabaseManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DatabaseManager.cpp -------------------------------------------------------------------------------- /src/DatabaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DatabaseManager.h -------------------------------------------------------------------------------- /src/DeviceFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceFilter.cpp -------------------------------------------------------------------------------- /src/DeviceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceFilter.h -------------------------------------------------------------------------------- /src/DeviceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceManager.cpp -------------------------------------------------------------------------------- /src/DeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceManager.h -------------------------------------------------------------------------------- /src/DeviceManager_advertisement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceManager_advertisement.cpp -------------------------------------------------------------------------------- /src/DeviceManager_export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceManager_export.cpp -------------------------------------------------------------------------------- /src/DeviceManager_nearby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceManager_nearby.cpp -------------------------------------------------------------------------------- /src/DeviceManager_theengs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/DeviceManager_theengs.cpp -------------------------------------------------------------------------------- /src/MenubarManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/MenubarManager.cpp -------------------------------------------------------------------------------- /src/MenubarManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/MenubarManager.h -------------------------------------------------------------------------------- /src/MqttManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/MqttManager.cpp -------------------------------------------------------------------------------- /src/MqttManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/MqttManager.h -------------------------------------------------------------------------------- /src/NotificationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/NotificationManager.cpp -------------------------------------------------------------------------------- /src/NotificationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/NotificationManager.h -------------------------------------------------------------------------------- /src/SettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/SettingsManager.cpp -------------------------------------------------------------------------------- /src/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/SettingsManager.h -------------------------------------------------------------------------------- /src/SystrayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/SystrayManager.cpp -------------------------------------------------------------------------------- /src/SystrayManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/SystrayManager.h -------------------------------------------------------------------------------- /src/TempPreset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/TempPreset.cpp -------------------------------------------------------------------------------- /src/TempPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/TempPreset.h -------------------------------------------------------------------------------- /src/TempPresetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/TempPresetManager.cpp -------------------------------------------------------------------------------- /src/TempPresetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/TempPresetManager.h -------------------------------------------------------------------------------- /src/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device.cpp -------------------------------------------------------------------------------- /src/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device.h -------------------------------------------------------------------------------- /src/device_environmental.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_environmental.cpp -------------------------------------------------------------------------------- /src/device_environmental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_environmental.h -------------------------------------------------------------------------------- /src/device_firmwares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_firmwares.h -------------------------------------------------------------------------------- /src/device_infos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_infos.cpp -------------------------------------------------------------------------------- /src/device_infos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_infos.h -------------------------------------------------------------------------------- /src/device_plantsensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_plantsensor.cpp -------------------------------------------------------------------------------- /src/device_plantsensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_plantsensor.h -------------------------------------------------------------------------------- /src/device_sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_sensor.cpp -------------------------------------------------------------------------------- /src/device_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_sensor.h -------------------------------------------------------------------------------- /src/device_theengs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_theengs.cpp -------------------------------------------------------------------------------- /src/device_theengs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_theengs.h -------------------------------------------------------------------------------- /src/device_thermometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_thermometer.cpp -------------------------------------------------------------------------------- /src/device_thermometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_thermometer.h -------------------------------------------------------------------------------- /src/device_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_utils.h -------------------------------------------------------------------------------- /src/device_utils_theengs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/device_utils_theengs.h -------------------------------------------------------------------------------- /src/devices/device_flowercare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_flowercare.cpp -------------------------------------------------------------------------------- /src/devices/device_flowercare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_flowercare.h -------------------------------------------------------------------------------- /src/devices/device_flowercare_tuya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_flowercare_tuya.cpp -------------------------------------------------------------------------------- /src/devices/device_flowercare_tuya.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_flowercare_tuya.h -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgd1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgd1.cpp -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgd1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgd1.h -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgdk2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgdk2.cpp -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgdk2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgdk2.h -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgg1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgg1.cpp -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgg1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgg1.h -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgp1w.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgp1w.cpp -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_cgp1w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_cgp1w.h -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_clock.cpp -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_clock.h -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_lywsdcgq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_lywsdcgq.cpp -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_lywsdcgq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_lywsdcgq.h -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_square.cpp -------------------------------------------------------------------------------- /src/devices/device_hygrotemp_square.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_hygrotemp_square.h -------------------------------------------------------------------------------- /src/devices/device_jqjcy01ym.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_jqjcy01ym.cpp -------------------------------------------------------------------------------- /src/devices/device_jqjcy01ym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_jqjcy01ym.h -------------------------------------------------------------------------------- /src/devices/device_ropot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_ropot.cpp -------------------------------------------------------------------------------- /src/devices/device_ropot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_ropot.h -------------------------------------------------------------------------------- /src/devices/device_theengs_beacons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_beacons.cpp -------------------------------------------------------------------------------- /src/devices/device_theengs_beacons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_beacons.h -------------------------------------------------------------------------------- /src/devices/device_theengs_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_generic.cpp -------------------------------------------------------------------------------- /src/devices/device_theengs_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_generic.h -------------------------------------------------------------------------------- /src/devices/device_theengs_motionsensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_motionsensors.cpp -------------------------------------------------------------------------------- /src/devices/device_theengs_motionsensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_motionsensors.h -------------------------------------------------------------------------------- /src/devices/device_theengs_probes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_probes.cpp -------------------------------------------------------------------------------- /src/devices/device_theengs_probes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_probes.h -------------------------------------------------------------------------------- /src/devices/device_theengs_scales.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_scales.cpp -------------------------------------------------------------------------------- /src/devices/device_theengs_scales.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_scales.h -------------------------------------------------------------------------------- /src/devices/device_theengs_thermometers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_thermometers.cpp -------------------------------------------------------------------------------- /src/devices/device_theengs_thermometers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_theengs_thermometers.h -------------------------------------------------------------------------------- /src/devices/device_thermobeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_thermobeacon.cpp -------------------------------------------------------------------------------- /src/devices/device_thermobeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/devices/device_thermobeacon.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/AppUtils.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/AppUtils.pri -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/CMakeLists.txt -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/LICENSE -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/README.md -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_app.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_app.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_bits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_bits.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_bits.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_clipboard.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_clipboard.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_fpsmonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_fpsmonitor.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_fpsmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_fpsmonitor.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_language.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_language.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_log.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_log.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_maths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_maths.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_maths.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_android.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_android_qt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_android_qt5.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_android_qt6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_android_qt6.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_ios.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_ios.mm -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_ios_notif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_ios_notif.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_ios_notif.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_ios_notif.mm -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_ios_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_ios_wifi.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_ios_wifi.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_ios_wifi.mm -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_linux.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_linux.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_macos.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_macos.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_macos.mm -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_macos_dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_macos_dock.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_macos_dock.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_macos_dock.mm -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_windows.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_os_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_os_windows.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_screen.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_screen.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_sysinfo.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_sysinfo.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_versionchecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_versionchecker.h -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_wifi.cpp -------------------------------------------------------------------------------- /src/thirdparty/AppUtils/utils_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/AppUtils/utils_wifi.h -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/CMakeLists.txt -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/LICENSE -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/MobileSharing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/MobileSharing -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/MobileSharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/MobileSharing.h -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/MobileSharing.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/MobileSharing.pri -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/QShareActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/QShareActivity.java -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingApplication.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingApplication.h -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingUtils.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingUtils.h -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingUtils_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingUtils_android.h -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingUtils_android_qt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingUtils_android_qt5.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingUtils_android_qt6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingUtils_android_qt6.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingUtils_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingUtils_ios.h -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/SharingUtils_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/SharingUtils_ios.mm -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/docviewcontroller_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/docviewcontroller_ios.h -------------------------------------------------------------------------------- /src/thirdparty/MobileSharing/docviewcontroller_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileSharing/docviewcontroller_ios.mm -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/CMakeLists.txt -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/LICENSE -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI: -------------------------------------------------------------------------------- 1 | #include "MobileUI.h" 2 | -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI.h -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI.pri -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI_android_qt5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI_android_qt5.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI_android_qt6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI_android_qt6.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI_dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI_dummy.cpp -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI_ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI_ios.mm -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/MobileUI_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/MobileUI_private.h -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/MobileUI/README.md -------------------------------------------------------------------------------- /src/thirdparty/MobileUI/qmldir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/thirdparty/RC4/rc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/RC4/rc4.cpp -------------------------------------------------------------------------------- /src/thirdparty/RC4/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/RC4/rc4.h -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/CMakeLists.txt -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/LICENSE -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/README.md -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/SingleApplication: -------------------------------------------------------------------------------- 1 | #include "SingleApplication.h" 2 | -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/SingleApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/SingleApplication.cpp -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/SingleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/SingleApplication.h -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/SingleApplication.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/SingleApplication.pri -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/SingleApplication_private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/SingleApplication_private.cpp -------------------------------------------------------------------------------- /src/thirdparty/SingleApplication/SingleApplication_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theengs/app/HEAD/src/thirdparty/SingleApplication/SingleApplication_private.h --------------------------------------------------------------------------------