neoagent 2.3.1-beta.0 → 2.3.1-beta.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (406) hide show
  1. package/.env.example +63 -5
  2. package/README.md +16 -5
  3. package/com.neoagent.plist +1 -1
  4. package/docs/automation.md +82 -41
  5. package/docs/capabilities.md +85 -89
  6. package/docs/configuration.md +89 -87
  7. package/docs/getting-started.md +46 -27
  8. package/docs/hardware.md +1 -1
  9. package/docs/index.md +24 -30
  10. package/docs/integrations.md +46 -60
  11. package/docs/migration.md +41 -146
  12. package/docs/operations.md +23 -20
  13. package/docs/skills.md +20 -20
  14. package/docs/why-neoagent.md +15 -13
  15. package/extensions/chrome-browser/background.mjs +10 -2
  16. package/flutter_app/.metadata +42 -0
  17. package/flutter_app/DESIGN_SYSTEM.md +166 -0
  18. package/flutter_app/README.md +21 -0
  19. package/flutter_app/analysis_options.yaml +32 -0
  20. package/flutter_app/android/app/build.gradle.kts +111 -0
  21. package/flutter_app/android/app/src/debug/AndroidManifest.xml +7 -0
  22. package/flutter_app/android/app/src/main/AndroidManifest.xml +185 -0
  23. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/MainActivity.kt +888 -0
  24. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/auto/NeoAgentCarAppService.kt +114 -0
  25. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthConnectGateway.kt +280 -0
  26. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncNotifications.kt +113 -0
  27. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncPayload.kt +57 -0
  28. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncScheduler.kt +78 -0
  29. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncWorker.kt +253 -0
  30. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/PermissionsRationaleActivity.kt +46 -0
  31. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingBootReceiver.kt +21 -0
  32. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingForegroundService.kt +586 -0
  33. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingStateStore.kt +78 -0
  34. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingUploadClient.kt +104 -0
  35. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/telecom/NeoAgentConnection.kt +118 -0
  36. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/telecom/NeoAgentConnectionService.kt +86 -0
  37. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/AiHomeWidgetProvider.kt +457 -0
  38. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/AiWidgetStore.kt +194 -0
  39. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/VoiceLaunchWidgetProvider.kt +67 -0
  40. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetConfigActivity.kt +228 -0
  41. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetSyncScheduler.kt +72 -0
  42. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetSyncWorker.kt +186 -0
  43. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetTaskRunWorker.kt +210 -0
  44. package/flutter_app/android/app/src/main/res/drawable/launch_background.xml +12 -0
  45. package/flutter_app/android/app/src/main/res/drawable/neoagent_ai_widget_bg.xml +11 -0
  46. package/flutter_app/android/app/src/main/res/drawable/neoagent_ai_widget_task_bg.xml +8 -0
  47. package/flutter_app/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  48. package/flutter_app/android/app/src/main/res/layout/neoagent_ai_widget.xml +138 -0
  49. package/flutter_app/android/app/src/main/res/layout/neoagent_ai_widget_task_row.xml +52 -0
  50. package/flutter_app/android/app/src/main/res/layout/neoagent_voice_widget.xml +49 -0
  51. package/flutter_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  52. package/flutter_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  53. package/flutter_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  54. package/flutter_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  55. package/flutter_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  56. package/flutter_app/android/app/src/main/res/values/arrays.xml +8 -0
  57. package/flutter_app/android/app/src/main/res/values/strings.xml +12 -0
  58. package/flutter_app/android/app/src/main/res/values/styles.xml +18 -0
  59. package/flutter_app/android/app/src/main/res/values-night/styles.xml +18 -0
  60. package/flutter_app/android/app/src/main/res/xml/automotive_app_desc.xml +4 -0
  61. package/flutter_app/android/app/src/main/res/xml/file_paths.xml +6 -0
  62. package/flutter_app/android/app/src/main/res/xml/neoagent_ai_widget_info.xml +12 -0
  63. package/flutter_app/android/app/src/main/res/xml/neoagent_voice_widget_info.xml +12 -0
  64. package/flutter_app/android/app/src/profile/AndroidManifest.xml +7 -0
  65. package/flutter_app/android/build.gradle.kts +24 -0
  66. package/flutter_app/android/ci-release.keystore +0 -0
  67. package/flutter_app/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  68. package/flutter_app/android/gradle.properties +3 -0
  69. package/flutter_app/android/key.properties +4 -0
  70. package/flutter_app/android/settings.gradle.kts +26 -0
  71. package/flutter_app/assets/branding/app_icon_1024.png +0 -0
  72. package/flutter_app/assets/branding/app_icon_128.png +0 -0
  73. package/flutter_app/assets/branding/app_icon_192.png +0 -0
  74. package/flutter_app/assets/branding/app_icon_256.png +0 -0
  75. package/flutter_app/assets/branding/app_icon_32.png +0 -0
  76. package/flutter_app/assets/branding/app_icon_512.png +0 -0
  77. package/flutter_app/assets/branding/app_icon_64.png +0 -0
  78. package/flutter_app/assets/branding/onboarding_intro.mp4 +0 -0
  79. package/flutter_app/assets/branding/tray_icon_template.png +0 -0
  80. package/flutter_app/lib/features/location/location_service.dart +117 -0
  81. package/flutter_app/lib/features/notifications/notification_interceptor.dart +73 -0
  82. package/flutter_app/lib/features/onboarding/onboarding_chrome.dart +571 -0
  83. package/flutter_app/lib/features/onboarding/onboarding_messaging_step.dart +275 -0
  84. package/flutter_app/lib/features/onboarding/onboarding_model_step.dart +366 -0
  85. package/flutter_app/lib/features/onboarding/onboarding_shell.dart +57 -0
  86. package/flutter_app/lib/features/onboarding/onboarding_video_step.dart +218 -0
  87. package/flutter_app/lib/features/onboarding/onboarding_welcome_step.dart +46 -0
  88. package/flutter_app/lib/main.dart +107 -0
  89. package/flutter_app/lib/main_account_settings.dart +1340 -0
  90. package/flutter_app/lib/main_admin.dart +900 -0
  91. package/flutter_app/lib/main_app_shell.dart +2162 -0
  92. package/flutter_app/lib/main_chat.dart +3902 -0
  93. package/flutter_app/lib/main_controller.dart +7229 -0
  94. package/flutter_app/lib/main_devices.dart +1738 -0
  95. package/flutter_app/lib/main_integrations.dart +917 -0
  96. package/flutter_app/lib/main_launcher.dart +959 -0
  97. package/flutter_app/lib/main_launcher_entry.dart +5 -0
  98. package/flutter_app/lib/main_models.dart +3807 -0
  99. package/flutter_app/lib/main_navigation.dart +206 -0
  100. package/flutter_app/lib/main_operations.dart +5249 -0
  101. package/flutter_app/lib/main_recordings.dart +920 -0
  102. package/flutter_app/lib/main_runtime.dart +869 -0
  103. package/flutter_app/lib/main_settings.dart +2288 -0
  104. package/flutter_app/lib/main_shared.dart +3393 -0
  105. package/flutter_app/lib/main_spacing.dart +33 -0
  106. package/flutter_app/lib/main_theme.dart +276 -0
  107. package/flutter_app/lib/main_unified.dart +388 -0
  108. package/flutter_app/lib/main_voice_assistant.dart +957 -0
  109. package/flutter_app/lib/src/analytics_service.dart +294 -0
  110. package/flutter_app/lib/src/android_apk_drop_zone.dart +32 -0
  111. package/flutter_app/lib/src/android_apk_drop_zone_stub.dart +16 -0
  112. package/flutter_app/lib/src/android_apk_drop_zone_web.dart +348 -0
  113. package/flutter_app/lib/src/android_app_installer.dart +22 -0
  114. package/flutter_app/lib/src/android_app_installer_io.dart +122 -0
  115. package/flutter_app/lib/src/android_app_installer_stub.dart +21 -0
  116. package/flutter_app/lib/src/android_auto_bridge.dart +59 -0
  117. package/flutter_app/lib/src/android_launcher_bridge.dart +239 -0
  118. package/flutter_app/lib/src/app_launch_bridge.dart +58 -0
  119. package/flutter_app/lib/src/app_release_updater.dart +511 -0
  120. package/flutter_app/lib/src/backend_client.dart +1870 -0
  121. package/flutter_app/lib/src/desktop_companion.dart +2 -0
  122. package/flutter_app/lib/src/desktop_companion_actions.dart +586 -0
  123. package/flutter_app/lib/src/desktop_companion_io.dart +538 -0
  124. package/flutter_app/lib/src/desktop_companion_stub.dart +59 -0
  125. package/flutter_app/lib/src/desktop_native_bridge.dart +91 -0
  126. package/flutter_app/lib/src/desktop_screen_capture.dart +21 -0
  127. package/flutter_app/lib/src/desktop_screen_capture_io.dart +142 -0
  128. package/flutter_app/lib/src/desktop_screen_capture_stub.dart +12 -0
  129. package/flutter_app/lib/src/diagnostics_logger.dart +119 -0
  130. package/flutter_app/lib/src/health_bridge.dart +136 -0
  131. package/flutter_app/lib/src/live_voice_capture.dart +85 -0
  132. package/flutter_app/lib/src/messaging_access_summary.dart +46 -0
  133. package/flutter_app/lib/src/network/app_http_client.dart +53 -0
  134. package/flutter_app/lib/src/network/app_http_client_factory.dart +6 -0
  135. package/flutter_app/lib/src/network/app_http_client_io.dart +138 -0
  136. package/flutter_app/lib/src/network/app_http_client_stub.dart +3 -0
  137. package/flutter_app/lib/src/network/app_http_client_web.dart +94 -0
  138. package/flutter_app/lib/src/oauth_launcher.dart +33 -0
  139. package/flutter_app/lib/src/oauth_launcher_io.dart +95 -0
  140. package/flutter_app/lib/src/oauth_launcher_stub.dart +33 -0
  141. package/flutter_app/lib/src/oauth_launcher_web.dart +107 -0
  142. package/flutter_app/lib/src/recording_bridge.dart +232 -0
  143. package/flutter_app/lib/src/recording_bridge_io.dart +1019 -0
  144. package/flutter_app/lib/src/recording_bridge_stub.dart +120 -0
  145. package/flutter_app/lib/src/recording_bridge_web.dart +689 -0
  146. package/flutter_app/lib/src/recording_payloads.dart +86 -0
  147. package/flutter_app/lib/src/theme/palette.dart +81 -0
  148. package/flutter_app/lib/src/web_app_update_monitor.dart +17 -0
  149. package/flutter_app/lib/src/web_app_update_monitor_stub.dart +24 -0
  150. package/flutter_app/lib/src/web_app_update_monitor_web.dart +123 -0
  151. package/flutter_app/lib/src/widget_bridge.dart +49 -0
  152. package/flutter_app/linux/CMakeLists.txt +128 -0
  153. package/flutter_app/linux/flutter/CMakeLists.txt +88 -0
  154. package/flutter_app/linux/flutter/generated_plugin_registrant.cc +47 -0
  155. package/flutter_app/linux/flutter/generated_plugin_registrant.h +15 -0
  156. package/flutter_app/linux/flutter/generated_plugins.cmake +32 -0
  157. package/flutter_app/linux/runner/CMakeLists.txt +26 -0
  158. package/flutter_app/linux/runner/main.cc +6 -0
  159. package/flutter_app/linux/runner/my_application.cc +144 -0
  160. package/flutter_app/linux/runner/my_application.h +18 -0
  161. package/flutter_app/linux/runner/resources/app_icon.png +0 -0
  162. package/flutter_app/macos/Flutter/Flutter-Debug.xcconfig +2 -0
  163. package/flutter_app/macos/Flutter/Flutter-Release.xcconfig +2 -0
  164. package/flutter_app/macos/Flutter/GeneratedPluginRegistrant.swift +48 -0
  165. package/flutter_app/macos/Podfile +42 -0
  166. package/flutter_app/macos/Podfile.lock +87 -0
  167. package/flutter_app/macos/Runner/AppDelegate.swift +576 -0
  168. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  169. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  170. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  171. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  172. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  173. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  174. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  175. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  176. package/flutter_app/macos/Runner/Base.lproj/MainMenu.xib +342 -0
  177. package/flutter_app/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  178. package/flutter_app/macos/Runner/Configs/Debug.xcconfig +2 -0
  179. package/flutter_app/macos/Runner/Configs/Release.xcconfig +2 -0
  180. package/flutter_app/macos/Runner/Configs/Warnings.xcconfig +13 -0
  181. package/flutter_app/macos/Runner/DebugProfile.entitlements +16 -0
  182. package/flutter_app/macos/Runner/Info.plist +36 -0
  183. package/flutter_app/macos/Runner/MainFlutterWindow.swift +19 -0
  184. package/flutter_app/macos/Runner/Release.entitlements +12 -0
  185. package/flutter_app/macos/Runner.xcodeproj/project.pbxproj +801 -0
  186. package/flutter_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  187. package/flutter_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
  188. package/flutter_app/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  189. package/flutter_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  190. package/flutter_app/macos/RunnerTests/RunnerTests.swift +12 -0
  191. package/flutter_app/patch_strings.py +12 -0
  192. package/flutter_app/pubspec.lock +1256 -0
  193. package/flutter_app/pubspec.yaml +59 -0
  194. package/flutter_app/third_party/desktop_audio_capture/LICENSE +21 -0
  195. package/flutter_app/third_party/desktop_audio_capture/README.md +262 -0
  196. package/flutter_app/third_party/desktop_audio_capture/lib/audio_capture.dart +65 -0
  197. package/flutter_app/third_party/desktop_audio_capture/lib/config/mic_audio_config.dart +153 -0
  198. package/flutter_app/third_party/desktop_audio_capture/lib/config/system_adudio_config.dart +110 -0
  199. package/flutter_app/third_party/desktop_audio_capture/lib/mic/mic_audio_capture.dart +461 -0
  200. package/flutter_app/third_party/desktop_audio_capture/lib/model/audio_status.dart +91 -0
  201. package/flutter_app/third_party/desktop_audio_capture/lib/model/decibel_data.dart +106 -0
  202. package/flutter_app/third_party/desktop_audio_capture/lib/model/input_device_type.dart +219 -0
  203. package/flutter_app/third_party/desktop_audio_capture/lib/system/system_audio_capture.dart +336 -0
  204. package/flutter_app/third_party/desktop_audio_capture/linux/CMakeLists.txt +101 -0
  205. package/flutter_app/third_party/desktop_audio_capture/linux/audio_capture_plugin.cc +692 -0
  206. package/flutter_app/third_party/desktop_audio_capture/linux/include/audio_capture/audio_capture_plugin.h +35 -0
  207. package/flutter_app/third_party/desktop_audio_capture/linux/include/audio_capture/mic_capture_plugin.h +36 -0
  208. package/flutter_app/third_party/desktop_audio_capture/linux/include/desktop_audio_capture/audio_capture_plugin.h +32 -0
  209. package/flutter_app/third_party/desktop_audio_capture/linux/include/desktop_audio_capture/mic_capture_plugin.h +32 -0
  210. package/flutter_app/third_party/desktop_audio_capture/linux/mic_capture_plugin.cc +878 -0
  211. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/AudioCapturePlugin.swift +27 -0
  212. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/MicCapturePlugin.swift +1172 -0
  213. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/SystemCapturePlugin.swift +655 -0
  214. package/flutter_app/third_party/desktop_audio_capture/macos/Resources/PrivacyInfo.xcprivacy +12 -0
  215. package/flutter_app/third_party/desktop_audio_capture/macos/desktop_audio_capture.podspec +30 -0
  216. package/flutter_app/third_party/desktop_audio_capture/pubspec.yaml +87 -0
  217. package/flutter_app/third_party/desktop_audio_capture/windows/CMakeLists.txt +105 -0
  218. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin.cpp +80 -0
  219. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin.h +31 -0
  220. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin_c_api.cpp +12 -0
  221. package/flutter_app/third_party/desktop_audio_capture/windows/include/audio_capture/audio_capture_plugin_c_api.h +23 -0
  222. package/flutter_app/third_party/desktop_audio_capture/windows/include/desktop_audio_capture/audio_capture_plugin.h +25 -0
  223. package/flutter_app/third_party/desktop_audio_capture/windows/mic_capture_plugin.cpp +1117 -0
  224. package/flutter_app/third_party/desktop_audio_capture/windows/mic_capture_plugin.h +115 -0
  225. package/flutter_app/third_party/desktop_audio_capture/windows/system_audio_capture_plugin.cpp +777 -0
  226. package/flutter_app/third_party/desktop_audio_capture/windows/system_audio_capture_plugin.h +87 -0
  227. package/flutter_app/third_party/flutter_secure_storage_linux/linux/CMakeLists.txt +30 -0
  228. package/flutter_app/third_party/flutter_secure_storage_linux/linux/flutter_secure_storage_linux_plugin.cc +215 -0
  229. package/flutter_app/third_party/flutter_secure_storage_linux/linux/include/flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h +27 -0
  230. package/flutter_app/third_party/flutter_secure_storage_linux/pubspec.yaml +20 -0
  231. package/flutter_app/tool/generate_desktop_branding.py +219 -0
  232. package/flutter_app/web/favicon.png +0 -0
  233. package/flutter_app/web/favicon.svg +12 -0
  234. package/flutter_app/web/icons/Icon-192.png +0 -0
  235. package/flutter_app/web/icons/Icon-512.png +0 -0
  236. package/flutter_app/web/icons/Icon-maskable-192.png +0 -0
  237. package/flutter_app/web/icons/Icon-maskable-512.png +0 -0
  238. package/flutter_app/web/index.html +39 -0
  239. package/flutter_app/web/manifest.json +35 -0
  240. package/flutter_app/windows/CMakeLists.txt +108 -0
  241. package/flutter_app/windows/flutter/CMakeLists.txt +109 -0
  242. package/flutter_app/windows/flutter/generated_plugin_registrant.cc +50 -0
  243. package/flutter_app/windows/flutter/generated_plugin_registrant.h +15 -0
  244. package/flutter_app/windows/flutter/generated_plugins.cmake +36 -0
  245. package/flutter_app/windows/runner/CMakeLists.txt +41 -0
  246. package/flutter_app/windows/runner/Runner.rc +121 -0
  247. package/flutter_app/windows/runner/flutter_window.cpp +533 -0
  248. package/flutter_app/windows/runner/flutter_window.h +37 -0
  249. package/flutter_app/windows/runner/main.cpp +53 -0
  250. package/flutter_app/windows/runner/resource.h +16 -0
  251. package/flutter_app/windows/runner/resources/app_icon.ico +0 -0
  252. package/flutter_app/windows/runner/runner.exe.manifest +14 -0
  253. package/flutter_app/windows/runner/utils.cpp +65 -0
  254. package/flutter_app/windows/runner/utils.h +19 -0
  255. package/flutter_app/windows/runner/win32_window.cpp +299 -0
  256. package/flutter_app/windows/runner/win32_window.h +102 -0
  257. package/lib/install_helpers.js +31 -0
  258. package/lib/manager.js +465 -43
  259. package/package.json +11 -3
  260. package/runtime/paths.js +137 -0
  261. package/server/config/analytics.js +30 -0
  262. package/server/db/database.js +363 -21
  263. package/server/guest-agent.android.package.json +13 -0
  264. package/server/guest-agent.browser.package.json +14 -0
  265. package/server/guest_agent.js +98 -52
  266. package/server/http/middleware.js +55 -2
  267. package/server/http/routes.js +6 -1
  268. package/server/http/static.js +41 -1
  269. package/server/index.js +16 -16
  270. package/server/public/.last_build_id +1 -1
  271. package/server/public/assets/AssetManifest.bin +1 -1
  272. package/server/public/assets/AssetManifest.bin.json +1 -1
  273. package/server/public/assets/AssetManifest.json +1 -1
  274. package/server/public/assets/NOTICES +679 -129
  275. package/server/public/assets/assets/branding/onboarding_intro.mp4 +0 -0
  276. package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
  277. package/server/public/assets/packages/mixpanel_flutter/assets/mixpanel.js +3 -0
  278. package/server/public/canvaskit/wimp.wasm +0 -0
  279. package/server/public/flutter_bootstrap.js +2 -2
  280. package/server/public/main.dart.js +95866 -87333
  281. package/server/routes/account.js +26 -1
  282. package/server/routes/agents.js +6 -2
  283. package/server/routes/android.js +22 -6
  284. package/server/routes/auth.js +25 -5
  285. package/server/routes/browser.js +47 -13
  286. package/server/routes/integrations.js +119 -9
  287. package/server/routes/memory.js +179 -8
  288. package/server/routes/runtime.js +14 -0
  289. package/server/routes/screenHistory.js +46 -0
  290. package/server/routes/settings.js +102 -24
  291. package/server/routes/skills.js +12 -0
  292. package/server/routes/social_video.js +66 -0
  293. package/server/routes/tasks.js +22 -2
  294. package/server/routes/triggers.js +90 -0
  295. package/server/routes/wearable.js +67 -0
  296. package/server/routes/widgets.js +4 -4
  297. package/server/services/ai/capabilityHealth.js +23 -51
  298. package/server/services/ai/compaction.js +1 -1
  299. package/server/services/ai/deliverables/artifact_helpers.js +190 -0
  300. package/server/services/ai/deliverables/contracts.js +113 -0
  301. package/server/services/ai/deliverables/index.js +20 -0
  302. package/server/services/ai/deliverables/selector.js +94 -0
  303. package/server/services/ai/deliverables/validator.js +63 -0
  304. package/server/services/ai/deliverables/workflows.js +207 -0
  305. package/server/services/ai/engine.js +372 -27
  306. package/server/services/ai/hooks.js +127 -0
  307. package/server/services/ai/integrated_tools/index.js +98 -0
  308. package/server/services/ai/integrated_tools/remotion.js +373 -0
  309. package/server/services/ai/integrated_tools/shared.js +204 -0
  310. package/server/services/ai/integrated_tools/slidev.js +207 -0
  311. package/server/services/ai/loopPolicy.js +146 -0
  312. package/server/services/ai/models.js +36 -0
  313. package/server/services/ai/providers/githubCopilot.js +97 -0
  314. package/server/services/ai/providers/openai.js +2 -1
  315. package/server/services/ai/providers/openaiCodex.js +384 -0
  316. package/server/services/ai/recordingInsights.js +11 -13
  317. package/server/services/ai/runEvents.js +100 -0
  318. package/server/services/ai/settings.js +20 -0
  319. package/server/services/ai/systemPrompt.js +16 -2
  320. package/server/services/ai/taskAnalysis.js +2 -0
  321. package/server/services/ai/toolResult.js +20 -0
  322. package/server/services/ai/toolRunner.js +46 -6
  323. package/server/services/ai/toolSelector.js +54 -1
  324. package/server/services/ai/tools.js +360 -127
  325. package/server/services/android/android_bootstrap_worker.js +63 -0
  326. package/server/services/android/controller.js +442 -1760
  327. package/server/services/bootstrap_helpers.js +0 -34
  328. package/server/services/browser/controller.js +326 -52
  329. package/server/services/cli/executor.js +40 -1
  330. package/server/services/desktop/screenRecorder.js +182 -0
  331. package/server/services/integrations/env.js +10 -0
  332. package/server/services/integrations/figma/provider.js +1 -0
  333. package/server/services/integrations/github/common.js +106 -0
  334. package/server/services/integrations/github/provider.js +499 -0
  335. package/server/services/integrations/github/repos.js +1124 -0
  336. package/server/services/integrations/google/provider.js +1 -0
  337. package/server/services/integrations/manager.js +88 -12
  338. package/server/services/integrations/microsoft/provider.js +1 -0
  339. package/server/services/integrations/oauth_provider.js +25 -8
  340. package/server/services/integrations/provider_config_store.js +85 -0
  341. package/server/services/integrations/registry.js +8 -2
  342. package/server/services/integrations/spotify/provider.js +488 -0
  343. package/server/services/integrations/trello/provider.js +842 -0
  344. package/server/services/integrations/weather/provider.js +559 -0
  345. package/server/services/integrations/whatsapp/provider.js +6 -2
  346. package/server/services/manager.js +109 -154
  347. package/server/services/mcp/client.js +120 -23
  348. package/server/services/memory/llm_transfer.js +218 -0
  349. package/server/services/memory/manager.js +299 -35
  350. package/server/services/messaging/access_policy.js +10 -0
  351. package/server/services/messaging/automation.js +1 -1
  352. package/server/services/messaging/manager.js +93 -8
  353. package/server/services/messaging/meshtastic.js +277 -0
  354. package/server/services/messaging/meshtastic_env.js +40 -0
  355. package/server/services/messaging/meshtastic_protocol.js +530 -0
  356. package/server/services/messaging/meshtastic_tcp_transport.js +25 -0
  357. package/server/services/runtime/backends/local-vm.js +221 -158
  358. package/server/services/runtime/docker-vm-manager.js +392 -0
  359. package/server/services/runtime/guest_bootstrap.js +654 -0
  360. package/server/services/runtime/manager.js +85 -29
  361. package/server/services/runtime/settings.js +22 -31
  362. package/server/services/runtime/validation.js +16 -31
  363. package/server/services/skills/base_catalog.js +33 -0
  364. package/server/services/social_video/adapters/base.js +26 -0
  365. package/server/services/social_video/adapters/index.js +27 -0
  366. package/server/services/social_video/adapters/instagram.js +17 -0
  367. package/server/services/social_video/adapters/tiktok.js +17 -0
  368. package/server/services/social_video/adapters/x.js +17 -0
  369. package/server/services/social_video/adapters/youtube.js +17 -0
  370. package/server/services/social_video/captions.js +187 -0
  371. package/server/services/social_video/frame.js +42 -0
  372. package/server/services/social_video/index.js +7 -0
  373. package/server/services/social_video/metadata.js +63 -0
  374. package/server/services/social_video/result.js +63 -0
  375. package/server/services/social_video/service.js +720 -0
  376. package/server/services/social_video/url.js +83 -0
  377. package/server/services/tasks/adapters/index.js +2 -0
  378. package/server/services/tasks/adapters/manual.js +12 -0
  379. package/server/services/tasks/adapters/schedule.js +33 -5
  380. package/server/services/tasks/adapters/weather_event.js +84 -0
  381. package/server/services/tasks/integration_runtime.js +86 -1
  382. package/server/services/tasks/runtime.js +3 -3
  383. package/server/services/tasks/task_repository.js +3 -6
  384. package/server/services/voice/agentBridge.js +20 -4
  385. package/server/services/voice/message.js +3 -0
  386. package/server/services/voice/openaiClient.js +4 -1
  387. package/server/services/voice/openaiSpeech.js +6 -1
  388. package/server/services/voice/providers.js +144 -15
  389. package/server/services/voice/runtime.js +8 -8
  390. package/server/services/voice/runtimeManager.js +292 -20
  391. package/server/services/voice/turnRunner.js +29 -9
  392. package/server/services/wearable/firmware_manifest.js +353 -0
  393. package/server/services/wearable/gateway.js +350 -0
  394. package/server/services/wearable/protocol.js +45 -0
  395. package/server/services/wearable/service.js +240 -0
  396. package/server/services/websocket.js +3 -1
  397. package/server/services/widgets/focus_widget.js +137 -0
  398. package/server/services/widgets/service.js +182 -6
  399. package/server/services/workspace/manager.js +301 -0
  400. package/server/utils/deployment.js +16 -9
  401. package/server/utils/local_secrets.js +56 -0
  402. package/server/utils/logger.js +37 -9
  403. package/server/services/integrations/home_assistant/provider.js +0 -350
  404. package/server/services/messaging/access_policy.test.js +0 -228
  405. package/server/services/runtime/backends/host.js +0 -37
  406. package/server/services/runtime/qemu.js +0 -391
@@ -1088,6 +1088,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1088
1088
  THE SOFTWARE.
1089
1089
  --------------------------------------------------------------------------------
1090
1090
  args
1091
+ csslib
1091
1092
  logging
1092
1093
 
1093
1094
  Copyright 2013, the Dart project authors.
@@ -1977,6 +1978,52 @@ distributed under the License is distributed on an "AS IS" BASIS,
1977
1978
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1978
1979
  See the License for the specific language governing permissions and
1979
1980
  limitations under the License.
1981
+ --------------------------------------------------------------------------------
1982
+ cross_file
1983
+ flutter_plugin_android_lifecycle
1984
+ google_fonts
1985
+ path_provider_android
1986
+ path_provider_foundation
1987
+ shared_preferences
1988
+ shared_preferences_android
1989
+ shared_preferences_foundation
1990
+ shared_preferences_platform_interface
1991
+ url_launcher_android
1992
+ url_launcher_ios
1993
+ url_launcher_linux
1994
+ url_launcher_macos
1995
+ url_launcher_windows
1996
+ video_player
1997
+ video_player_android
1998
+ video_player_avfoundation
1999
+ video_player_platform_interface
2000
+
2001
+ Copyright 2013 The Flutter Authors
2002
+
2003
+ Redistribution and use in source and binary forms, with or without modification,
2004
+ are permitted provided that the following conditions are met:
2005
+
2006
+ * Redistributions of source code must retain the above copyright
2007
+ notice, this list of conditions and the following disclaimer.
2008
+ * Redistributions in binary form must reproduce the above
2009
+ copyright notice, this list of conditions and the following
2010
+ disclaimer in the documentation and/or other materials provided
2011
+ with the distribution.
2012
+ * Neither the name of Google Inc. nor the names of its
2013
+ contributors may be used to endorse or promote products derived
2014
+ from this software without specific prior written permission.
2015
+
2016
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
2017
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
2018
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2019
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
2020
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2021
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
2022
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
2023
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2024
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2025
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2026
+
1980
2027
  --------------------------------------------------------------------------------
1981
2028
  crypto
1982
2029
  vm_service
@@ -4984,6 +5031,30 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4984
5031
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4985
5032
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4986
5033
  --------------------------------------------------------------------------------
5034
+ file_picker
5035
+
5036
+ MIT License
5037
+
5038
+ Copyright (c) 2018 Miguel Ruivo
5039
+
5040
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5041
+ of this software and associated documentation files (the "Software"), to deal
5042
+ in the Software without restriction, including without limitation the rights
5043
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
5044
+ copies of the Software, and to permit persons to whom the Software is
5045
+ furnished to do so, subject to the following conditions:
5046
+
5047
+ The above copyright notice and this permission notice shall be included in all
5048
+ copies or substantial portions of the Software.
5049
+
5050
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5051
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
5052
+ FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
5053
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
5054
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
5055
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
5056
+ SOFTWARE.
5057
+ --------------------------------------------------------------------------------
4987
5058
  fixnum
4988
5059
  stack_trace
4989
5060
 
@@ -5508,6 +5579,7 @@ found in the LICENSE file.
5508
5579
  --------------------------------------------------------------------------------
5509
5580
  flutter
5510
5581
  tonic
5582
+ url_launcher_web
5511
5583
 
5512
5584
  Copyright 2013 The Flutter Authors. All rights reserved.
5513
5585
 
@@ -5535,17 +5607,66 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
5535
5607
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
5536
5608
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5537
5609
  --------------------------------------------------------------------------------
5610
+ flutter_animate
5611
+
5612
+ BSD 3-Clause License
5613
+
5614
+ Copyright (c) 2022, Grant Skinner
5615
+ All rights reserved.
5616
+
5617
+ Redistribution and use in source and binary forms, with or without
5618
+ modification, are permitted provided that the following conditions are met:
5619
+
5620
+ 1. Redistributions of source code must retain the above copyright notice, this
5621
+ list of conditions and the following disclaimer.
5622
+
5623
+ 2. Redistributions in binary form must reproduce the above copyright notice,
5624
+ this list of conditions and the following disclaimer in the documentation
5625
+ and/or other materials provided with the distribution.
5626
+
5627
+ 3. Neither the name of the copyright holder nor the names of its
5628
+ contributors may be used to endorse or promote products derived from
5629
+ this software without specific prior written permission.
5630
+
5631
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
5632
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5633
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
5634
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
5635
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5636
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
5637
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
5638
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
5639
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5640
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5641
+
5642
+ --------------------------------------------------------------------------------
5643
+ flutter_background_service
5644
+ flutter_background_service_android
5645
+ flutter_background_service_ios
5646
+ flutter_background_service_platform_interface
5647
+
5648
+ Copyright 2022 Eka Setiawan Saputra
5649
+
5650
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5651
+
5652
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
5653
+
5654
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5655
+ --------------------------------------------------------------------------------
5538
5656
  flutter_lints
5539
5657
  flutter_markdown
5658
+ flutter_shaders
5540
5659
  path_provider
5541
5660
  path_provider_linux
5542
5661
  path_provider_platform_interface
5543
5662
  path_provider_windows
5544
5663
  plugin_platform_interface
5545
5664
  shared_preferences_linux
5546
- shared_preferences_platform_interface
5547
5665
  shared_preferences_web
5548
5666
  shared_preferences_windows
5667
+ url_launcher
5668
+ url_launcher_platform_interface
5669
+ video_player_web
5549
5670
  xdg_directories
5550
5671
 
5551
5672
  Copyright 2013 The Flutter Authors. All rights reserved.
@@ -7093,6 +7214,35 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
7093
7214
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
7094
7215
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
7095
7216
  --------------------------------------------------------------------------------
7217
+ geolocator
7218
+ geolocator_android
7219
+ geolocator_apple
7220
+ geolocator_platform_interface
7221
+ geolocator_web
7222
+ geolocator_windows
7223
+
7224
+ MIT License
7225
+
7226
+ Copyright (c) 2018 Baseflow
7227
+
7228
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7229
+ of this software and associated documentation files (the "Software"), to deal
7230
+ in the Software without restriction, including without limitation the rights
7231
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7232
+ copies of the Software, and to permit persons to whom the Software is
7233
+ furnished to do so, subject to the following conditions:
7234
+
7235
+ The above copyright notice and this permission notice shall be included in all
7236
+ copies or substantial portions of the Software.
7237
+
7238
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
7239
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
7240
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
7241
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
7242
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
7243
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
7244
+ SOFTWARE.
7245
+ --------------------------------------------------------------------------------
7096
7246
  glfw
7097
7247
 
7098
7248
 
@@ -10786,40 +10936,6 @@ distributed under the License is distributed on an "AS IS" BASIS,
10786
10936
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10787
10937
  See the License for the specific language governing permissions and
10788
10938
  limitations under the License.
10789
- --------------------------------------------------------------------------------
10790
- google_fonts
10791
- path_provider_android
10792
- path_provider_foundation
10793
- shared_preferences
10794
- shared_preferences_android
10795
- shared_preferences_foundation
10796
-
10797
- Copyright 2013 The Flutter Authors
10798
-
10799
- Redistribution and use in source and binary forms, with or without modification,
10800
- are permitted provided that the following conditions are met:
10801
-
10802
- * Redistributions of source code must retain the above copyright
10803
- notice, this list of conditions and the following disclaimer.
10804
- * Redistributions in binary form must reproduce the above
10805
- copyright notice, this list of conditions and the following
10806
- disclaimer in the documentation and/or other materials provided
10807
- with the distribution.
10808
- * Neither the name of Google Inc. nor the names of its
10809
- contributors may be used to endorse or promote products derived
10810
- from this software without specific prior written permission.
10811
-
10812
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
10813
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10814
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
10815
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
10816
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
10817
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
10818
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
10819
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
10820
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
10821
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
10822
-
10823
10939
  --------------------------------------------------------------------------------
10824
10940
  gtest-parallel
10825
10941
 
@@ -14669,6 +14785,33 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
14669
14785
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
14670
14786
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
14671
14787
  SOFTWARE.
14788
+ --------------------------------------------------------------------------------
14789
+ html
14790
+
14791
+ Copyright (c) 2006-2012 The Authors
14792
+
14793
+ Contributors:
14794
+ James Graham - jg307@cam.ac.uk
14795
+ Anne van Kesteren - annevankesteren@gmail.com
14796
+ Lachlan Hunt - lachlan.hunt@lachy.id.au
14797
+ Matt McDonald - kanashii@kanashii.ca
14798
+ Sam Ruby - rubys@intertwingly.net
14799
+ Ian Hickson (Google) - ian@hixie.ch
14800
+ Thomas Broyer - t.broyer@ltgt.net
14801
+ Jacques Distler - distler@golem.ph.utexas.edu
14802
+ Henri Sivonen - hsivonen@iki.fi
14803
+ Adam Barth - abarth@webkit.org
14804
+ Eric Seidel - eric@webkit.org
14805
+ The Mozilla Foundation (contributions from Henri Sivonen since 2008)
14806
+ David Flanagan (Mozilla) - dflanagan@mozilla.com
14807
+ Google LLC (contributed the Dart port) - misc@dartlang.org
14808
+
14809
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
14810
+
14811
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14812
+
14813
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14814
+
14672
14815
  --------------------------------------------------------------------------------
14673
14816
  http
14674
14817
  http_parser
@@ -24713,91 +24856,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24713
24856
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24714
24857
  SOFTWARE.
24715
24858
  --------------------------------------------------------------------------------
24716
- mobile_scanner
24717
-
24718
- BSD 3-Clause License
24719
-
24720
- Copyright (c) 2022, Julian Steenbakker
24721
- All rights reserved.
24722
-
24723
- Redistribution and use in source and binary forms, with or without
24724
- modification, are permitted provided that the following conditions are met:
24725
-
24726
- 1. Redistributions of source code must retain the above copyright notice, this
24727
- list of conditions and the following disclaimer.
24728
-
24729
- 2. Redistributions in binary form must reproduce the above copyright notice,
24730
- this list of conditions and the following disclaimer in the documentation
24731
- and/or other materials provided with the distribution.
24732
-
24733
- 3. Neither the name of the copyright holder nor the names of its
24734
- contributors may be used to endorse or promote products derived from
24735
- this software without specific prior written permission.
24736
-
24737
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24738
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24739
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24740
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24741
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24742
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24743
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
24744
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24745
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24746
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24747
-
24748
- --------------------------------------------------------------------------------
24749
- node_preamble
24750
-
24751
-
24752
-
24753
- Copyright (c) 2015 Michael Bullington
24754
-
24755
- Permission is hereby granted, free of charge, to any person obtaining a copy
24756
- of this software and associated documentation files (the "Software"), to deal
24757
- in the Software without restriction, including without limitation the rights
24758
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
24759
- copies of the Software, and to permit persons to whom the Software is
24760
- furnished to do so, subject to the following conditions:
24761
-
24762
- The above copyright notice and this permission notice shall be included in all
24763
- copies or substantial portions of the Software.
24859
+ mixpanel_flutter
24764
24860
 
24765
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24766
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24767
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24768
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24769
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24770
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24771
- SOFTWARE.
24772
- --------------------------------------------------------------------------------
24773
- node_preamble
24861
+ Copyright 2022 Mixpanel, Inc.
24774
24862
 
24775
- Copyright 2012, the Dart project authors. All rights reserved.
24776
- Redistribution and use in source and binary forms, with or without
24777
- modification, are permitted provided that the following conditions are
24778
- met:
24779
- * Redistributions of source code must retain the above copyright
24780
- notice, this list of conditions and the following disclaimer.
24781
- * Redistributions in binary form must reproduce the above
24782
- copyright notice, this list of conditions and the following
24783
- disclaimer in the documentation and/or other materials provided
24784
- with the distribution.
24785
- * Neither the name of Google Inc. nor the names of its
24786
- contributors may be used to endorse or promote products derived
24787
- from this software without specific prior written permission.
24788
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24789
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24790
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24791
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24792
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24793
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24794
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24795
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24796
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24797
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24798
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24799
- --------------------------------------------------------------------------------
24800
- perfetto
24801
24863
 
24802
24864
  Apache License
24803
24865
  Version 2.0, January 2004
@@ -24976,18 +25038,301 @@ perfetto
24976
25038
 
24977
25039
  END OF TERMS AND CONDITIONS
24978
25040
 
24979
- Copyright (c) 2017, The Android Open Source Project
24980
-
24981
- Licensed under the Apache License, Version 2.0 (the "License");
24982
- you may not use this file except in compliance with the License.
24983
-
24984
- Unless required by applicable law or agreed to in writing, software
24985
- distributed under the License is distributed on an "AS IS" BASIS,
24986
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24987
- See the License for the specific language governing permissions and
24988
- limitations under the License.
24989
25041
  --------------------------------------------------------------------------------
24990
- perfetto
25042
+ mobile_scanner
25043
+
25044
+ BSD 3-Clause License
25045
+
25046
+ Copyright (c) 2022, Julian Steenbakker
25047
+ All rights reserved.
25048
+
25049
+ Redistribution and use in source and binary forms, with or without
25050
+ modification, are permitted provided that the following conditions are met:
25051
+
25052
+ 1. Redistributions of source code must retain the above copyright notice, this
25053
+ list of conditions and the following disclaimer.
25054
+
25055
+ 2. Redistributions in binary form must reproduce the above copyright notice,
25056
+ this list of conditions and the following disclaimer in the documentation
25057
+ and/or other materials provided with the distribution.
25058
+
25059
+ 3. Neither the name of the copyright holder nor the names of its
25060
+ contributors may be used to endorse or promote products derived from
25061
+ this software without specific prior written permission.
25062
+
25063
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25064
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25065
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25066
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25067
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25068
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25069
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25070
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25071
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25072
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25073
+
25074
+ --------------------------------------------------------------------------------
25075
+ node_preamble
25076
+
25077
+
25078
+
25079
+ Copyright (c) 2015 Michael Bullington
25080
+
25081
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25082
+ of this software and associated documentation files (the "Software"), to deal
25083
+ in the Software without restriction, including without limitation the rights
25084
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25085
+ copies of the Software, and to permit persons to whom the Software is
25086
+ furnished to do so, subject to the following conditions:
25087
+
25088
+ The above copyright notice and this permission notice shall be included in all
25089
+ copies or substantial portions of the Software.
25090
+
25091
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25092
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25093
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25094
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25095
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25096
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25097
+ SOFTWARE.
25098
+ --------------------------------------------------------------------------------
25099
+ node_preamble
25100
+
25101
+ Copyright 2012, the Dart project authors. All rights reserved.
25102
+ Redistribution and use in source and binary forms, with or without
25103
+ modification, are permitted provided that the following conditions are
25104
+ met:
25105
+ * Redistributions of source code must retain the above copyright
25106
+ notice, this list of conditions and the following disclaimer.
25107
+ * Redistributions in binary form must reproduce the above
25108
+ copyright notice, this list of conditions and the following
25109
+ disclaimer in the documentation and/or other materials provided
25110
+ with the distribution.
25111
+ * Neither the name of Google Inc. nor the names of its
25112
+ contributors may be used to endorse or promote products derived
25113
+ from this software without specific prior written permission.
25114
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25115
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25116
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25117
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25118
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25119
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25120
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25121
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25122
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25123
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25124
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25125
+ --------------------------------------------------------------------------------
25126
+ notification_listener_service
25127
+
25128
+ Copyright (c) 2022 Iheb Briki
25129
+ Permission is hereby granted, free of charge, to any person obtaining a copy
25130
+ of this software and associated documentation files (the "Software"), to deal
25131
+ in the Software without restriction, including without limitation the rights
25132
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25133
+ copies of the Software, and to permit persons to whom the Software is
25134
+ furnished to do so, subject to the following conditions:
25135
+ The above copyright notice and this permission notice shall be included in all
25136
+ copies or substantial portions of the Software.
25137
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25138
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25139
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25140
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25141
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25142
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25143
+ SOFTWARE.
25144
+ --------------------------------------------------------------------------------
25145
+ perfetto
25146
+
25147
+ Apache License
25148
+ Version 2.0, January 2004
25149
+ http://www.apache.org/licenses/
25150
+
25151
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25152
+
25153
+ 1. Definitions.
25154
+
25155
+ "License" shall mean the terms and conditions for use, reproduction,
25156
+ and distribution as defined by Sections 1 through 9 of this document.
25157
+
25158
+ "Licensor" shall mean the copyright owner or entity authorized by
25159
+ the copyright owner that is granting the License.
25160
+
25161
+ "Legal Entity" shall mean the union of the acting entity and all
25162
+ other entities that control, are controlled by, or are under common
25163
+ control with that entity. For the purposes of this definition,
25164
+ "control" means (i) the power, direct or indirect, to cause the
25165
+ direction or management of such entity, whether by contract or
25166
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
25167
+ outstanding shares, or (iii) beneficial ownership of such entity.
25168
+
25169
+ "You" (or "Your") shall mean an individual or Legal Entity
25170
+ exercising permissions granted by this License.
25171
+
25172
+ "Source" form shall mean the preferred form for making modifications,
25173
+ including but not limited to software source code, documentation
25174
+ source, and configuration files.
25175
+
25176
+ "Object" form shall mean any form resulting from mechanical
25177
+ transformation or translation of a Source form, including but
25178
+ not limited to compiled object code, generated documentation,
25179
+ and conversions to other media types.
25180
+
25181
+ "Work" shall mean the work of authorship, whether in Source or
25182
+ Object form, made available under the License, as indicated by a
25183
+ copyright notice that is included in or attached to the work
25184
+ (an example is provided in the Appendix below).
25185
+
25186
+ "Derivative Works" shall mean any work, whether in Source or Object
25187
+ form, that is based on (or derived from) the Work and for which the
25188
+ editorial revisions, annotations, elaborations, or other modifications
25189
+ represent, as a whole, an original work of authorship. For the purposes
25190
+ of this License, Derivative Works shall not include works that remain
25191
+ separable from, or merely link (or bind by name) to the interfaces of,
25192
+ the Work and Derivative Works thereof.
25193
+
25194
+ "Contribution" shall mean any work of authorship, including
25195
+ the original version of the Work and any modifications or additions
25196
+ to that Work or Derivative Works thereof, that is intentionally
25197
+ submitted to Licensor for inclusion in the Work by the copyright owner
25198
+ or by an individual or Legal Entity authorized to submit on behalf of
25199
+ the copyright owner. For the purposes of this definition, "submitted"
25200
+ means any form of electronic, verbal, or written communication sent
25201
+ to the Licensor or its representatives, including but not limited to
25202
+ communication on electronic mailing lists, source code control systems,
25203
+ and issue tracking systems that are managed by, or on behalf of, the
25204
+ Licensor for the purpose of discussing and improving the Work, but
25205
+ excluding communication that is conspicuously marked or otherwise
25206
+ designated in writing by the copyright owner as "Not a Contribution."
25207
+
25208
+ "Contributor" shall mean Licensor and any individual or Legal Entity
25209
+ on behalf of whom a Contribution has been received by Licensor and
25210
+ subsequently incorporated within the Work.
25211
+
25212
+ 2. Grant of Copyright License. Subject to the terms and conditions of
25213
+ this License, each Contributor hereby grants to You a perpetual,
25214
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25215
+ copyright license to reproduce, prepare Derivative Works of,
25216
+ publicly display, publicly perform, sublicense, and distribute the
25217
+ Work and such Derivative Works in Source or Object form.
25218
+
25219
+ 3. Grant of Patent License. Subject to the terms and conditions of
25220
+ this License, each Contributor hereby grants to You a perpetual,
25221
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25222
+ (except as stated in this section) patent license to make, have made,
25223
+ use, offer to sell, sell, import, and otherwise transfer the Work,
25224
+ where such license applies only to those patent claims licensable
25225
+ by such Contributor that are necessarily infringed by their
25226
+ Contribution(s) alone or by combination of their Contribution(s)
25227
+ with the Work to which such Contribution(s) was submitted. If You
25228
+ institute patent litigation against any entity (including a
25229
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
25230
+ or a Contribution incorporated within the Work constitutes direct
25231
+ or contributory patent infringement, then any patent licenses
25232
+ granted to You under this License for that Work shall terminate
25233
+ as of the date such litigation is filed.
25234
+
25235
+ 4. Redistribution. You may reproduce and distribute copies of the
25236
+ Work or Derivative Works thereof in any medium, with or without
25237
+ modifications, and in Source or Object form, provided that You
25238
+ meet the following conditions:
25239
+
25240
+ (a) You must give any other recipients of the Work or
25241
+ Derivative Works a copy of this License; and
25242
+
25243
+ (b) You must cause any modified files to carry prominent notices
25244
+ stating that You changed the files; and
25245
+
25246
+ (c) You must retain, in the Source form of any Derivative Works
25247
+ that You distribute, all copyright, patent, trademark, and
25248
+ attribution notices from the Source form of the Work,
25249
+ excluding those notices that do not pertain to any part of
25250
+ the Derivative Works; and
25251
+
25252
+ (d) If the Work includes a "NOTICE" text file as part of its
25253
+ distribution, then any Derivative Works that You distribute must
25254
+ include a readable copy of the attribution notices contained
25255
+ within such NOTICE file, excluding those notices that do not
25256
+ pertain to any part of the Derivative Works, in at least one
25257
+ of the following places: within a NOTICE text file distributed
25258
+ as part of the Derivative Works; within the Source form or
25259
+ documentation, if provided along with the Derivative Works; or,
25260
+ within a display generated by the Derivative Works, if and
25261
+ wherever such third-party notices normally appear. The contents
25262
+ of the NOTICE file are for informational purposes only and
25263
+ do not modify the License. You may add Your own attribution
25264
+ notices within Derivative Works that You distribute, alongside
25265
+ or as an addendum to the NOTICE text from the Work, provided
25266
+ that such additional attribution notices cannot be construed
25267
+ as modifying the License.
25268
+
25269
+ You may add Your own copyright statement to Your modifications and
25270
+ may provide additional or different license terms and conditions
25271
+ for use, reproduction, or distribution of Your modifications, or
25272
+ for any such Derivative Works as a whole, provided Your use,
25273
+ reproduction, and distribution of the Work otherwise complies with
25274
+ the conditions stated in this License.
25275
+
25276
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
25277
+ any Contribution intentionally submitted for inclusion in the Work
25278
+ by You to the Licensor shall be under the terms and conditions of
25279
+ this License, without any additional terms or conditions.
25280
+ Notwithstanding the above, nothing herein shall supersede or modify
25281
+ the terms of any separate license agreement you may have executed
25282
+ with Licensor regarding such Contributions.
25283
+
25284
+ 6. Trademarks. This License does not grant permission to use the trade
25285
+ names, trademarks, service marks, or product names of the Licensor,
25286
+ except as required for reasonable and customary use in describing the
25287
+ origin of the Work and reproducing the content of the NOTICE file.
25288
+
25289
+ 7. Disclaimer of Warranty. Unless required by applicable law or
25290
+ agreed to in writing, Licensor provides the Work (and each
25291
+ Contributor provides its Contributions) on an "AS IS" BASIS,
25292
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25293
+ implied, including, without limitation, any warranties or conditions
25294
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
25295
+ PARTICULAR PURPOSE. You are solely responsible for determining the
25296
+ appropriateness of using or redistributing the Work and assume any
25297
+ risks associated with Your exercise of permissions under this License.
25298
+
25299
+ 8. Limitation of Liability. In no event and under no legal theory,
25300
+ whether in tort (including negligence), contract, or otherwise,
25301
+ unless required by applicable law (such as deliberate and grossly
25302
+ negligent acts) or agreed to in writing, shall any Contributor be
25303
+ liable to You for damages, including any direct, indirect, special,
25304
+ incidental, or consequential damages of any character arising as a
25305
+ result of this License or out of the use or inability to use the
25306
+ Work (including but not limited to damages for loss of goodwill,
25307
+ work stoppage, computer failure or malfunction, or any and all
25308
+ other commercial damages or losses), even if such Contributor
25309
+ has been advised of the possibility of such damages.
25310
+
25311
+ 9. Accepting Warranty or Additional Liability. While redistributing
25312
+ the Work or Derivative Works thereof, You may choose to offer,
25313
+ and charge a fee for, acceptance of support, warranty, indemnity,
25314
+ or other liability obligations and/or rights consistent with this
25315
+ License. However, in accepting such obligations, You may act only
25316
+ on Your own behalf and on Your sole responsibility, not on behalf
25317
+ of any other Contributor, and only if You agree to indemnify,
25318
+ defend, and hold each Contributor harmless for any liability
25319
+ incurred by, or claims asserted against, such Contributor by reason
25320
+ of your accepting any such warranty or additional liability.
25321
+
25322
+ END OF TERMS AND CONDITIONS
25323
+
25324
+ Copyright (c) 2017, The Android Open Source Project
25325
+
25326
+ Licensed under the Apache License, Version 2.0 (the "License");
25327
+ you may not use this file except in compliance with the License.
25328
+
25329
+ Unless required by applicable law or agreed to in writing, software
25330
+ distributed under the License is distributed on an "AS IS" BASIS,
25331
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25332
+ See the License for the specific language governing permissions and
25333
+ limitations under the License.
25334
+ --------------------------------------------------------------------------------
25335
+ perfetto
24991
25336
 
24992
25337
  Apache License
24993
25338
  Version 2.0, January 2004
@@ -25254,6 +25599,211 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25254
25599
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25255
25600
  THE SOFTWARE.
25256
25601
 
25602
+ --------------------------------------------------------------------------------
25603
+ platform_detect
25604
+
25605
+ Apache License
25606
+ Version 2.0, January 2004
25607
+ http://www.apache.org/licenses/
25608
+
25609
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
25610
+
25611
+ 1. Definitions.
25612
+
25613
+ "License" shall mean the terms and conditions for use, reproduction,
25614
+ and distribution as defined by Sections 1 through 9 of this document.
25615
+
25616
+ "Licensor" shall mean the copyright owner or entity authorized by
25617
+ the copyright owner that is granting the License.
25618
+
25619
+ "Legal Entity" shall mean the union of the acting entity and all
25620
+ other entities that control, are controlled by, or are under common
25621
+ control with that entity. For the purposes of this definition,
25622
+ "control" means (i) the power, direct or indirect, to cause the
25623
+ direction or management of such entity, whether by contract or
25624
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
25625
+ outstanding shares, or (iii) beneficial ownership of such entity.
25626
+
25627
+ "You" (or "Your") shall mean an individual or Legal Entity
25628
+ exercising permissions granted by this License.
25629
+
25630
+ "Source" form shall mean the preferred form for making modifications,
25631
+ including but not limited to software source code, documentation
25632
+ source, and configuration files.
25633
+
25634
+ "Object" form shall mean any form resulting from mechanical
25635
+ transformation or translation of a Source form, including but
25636
+ not limited to compiled object code, generated documentation,
25637
+ and conversions to other media types.
25638
+
25639
+ "Work" shall mean the work of authorship, whether in Source or
25640
+ Object form, made available under the License, as indicated by a
25641
+ copyright notice that is included in or attached to the work
25642
+ (an example is provided in the Appendix below).
25643
+
25644
+ "Derivative Works" shall mean any work, whether in Source or Object
25645
+ form, that is based on (or derived from) the Work and for which the
25646
+ editorial revisions, annotations, elaborations, or other modifications
25647
+ represent, as a whole, an original work of authorship. For the purposes
25648
+ of this License, Derivative Works shall not include works that remain
25649
+ separable from, or merely link (or bind by name) to the interfaces of,
25650
+ the Work and Derivative Works thereof.
25651
+
25652
+ "Contribution" shall mean any work of authorship, including
25653
+ the original version of the Work and any modifications or additions
25654
+ to that Work or Derivative Works thereof, that is intentionally
25655
+ submitted to Licensor for inclusion in the Work by the copyright owner
25656
+ or by an individual or Legal Entity authorized to submit on behalf of
25657
+ the copyright owner. For the purposes of this definition, "submitted"
25658
+ means any form of electronic, verbal, or written communication sent
25659
+ to the Licensor or its representatives, including but not limited to
25660
+ communication on electronic mailing lists, source code control systems,
25661
+ and issue tracking systems that are managed by, or on behalf of, the
25662
+ Licensor for the purpose of discussing and improving the Work, but
25663
+ excluding communication that is conspicuously marked or otherwise
25664
+ designated in writing by the copyright owner as "Not a Contribution."
25665
+
25666
+ "Contributor" shall mean Licensor and any individual or Legal Entity
25667
+ on behalf of whom a Contribution has been received by Licensor and
25668
+ subsequently incorporated within the Work.
25669
+
25670
+ 2. Grant of Copyright License. Subject to the terms and conditions of
25671
+ this License, each Contributor hereby grants to You a perpetual,
25672
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25673
+ copyright license to reproduce, prepare Derivative Works of,
25674
+ publicly display, publicly perform, sublicense, and distribute the
25675
+ Work and such Derivative Works in Source or Object form.
25676
+
25677
+ 3. Grant of Patent License. Subject to the terms and conditions of
25678
+ this License, each Contributor hereby grants to You a perpetual,
25679
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
25680
+ (except as stated in this section) patent license to make, have made,
25681
+ use, offer to sell, sell, import, and otherwise transfer the Work,
25682
+ where such license applies only to those patent claims licensable
25683
+ by such Contributor that are necessarily infringed by their
25684
+ Contribution(s) alone or by combination of their Contribution(s)
25685
+ with the Work to which such Contribution(s) was submitted. If You
25686
+ institute patent litigation against any entity (including a
25687
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
25688
+ or a Contribution incorporated within the Work constitutes direct
25689
+ or contributory patent infringement, then any patent licenses
25690
+ granted to You under this License for that Work shall terminate
25691
+ as of the date such litigation is filed.
25692
+
25693
+ 4. Redistribution. You may reproduce and distribute copies of the
25694
+ Work or Derivative Works thereof in any medium, with or without
25695
+ modifications, and in Source or Object form, provided that You
25696
+ meet the following conditions:
25697
+
25698
+ (a) You must give any other recipients of the Work or
25699
+ Derivative Works a copy of this License; and
25700
+
25701
+ (b) You must cause any modified files to carry prominent notices
25702
+ stating that You changed the files; and
25703
+
25704
+ (c) You must retain, in the Source form of any Derivative Works
25705
+ that You distribute, all copyright, patent, trademark, and
25706
+ attribution notices from the Source form of the Work,
25707
+ excluding those notices that do not pertain to any part of
25708
+ the Derivative Works; and
25709
+
25710
+ (d) If the Work includes a "NOTICE" text file as part of its
25711
+ distribution, then any Derivative Works that You distribute must
25712
+ include a readable copy of the attribution notices contained
25713
+ within such NOTICE file, excluding those notices that do not
25714
+ pertain to any part of the Derivative Works, in at least one
25715
+ of the following places: within a NOTICE text file distributed
25716
+ as part of the Derivative Works; within the Source form or
25717
+ documentation, if provided along with the Derivative Works; or,
25718
+ within a display generated by the Derivative Works, if and
25719
+ wherever such third-party notices normally appear. The contents
25720
+ of the NOTICE file are for informational purposes only and
25721
+ do not modify the License. You may add Your own attribution
25722
+ notices within Derivative Works that You distribute, alongside
25723
+ or as an addendum to the NOTICE text from the Work, provided
25724
+ that such additional attribution notices cannot be construed
25725
+ as modifying the License.
25726
+
25727
+ You may add Your own copyright statement to Your modifications and
25728
+ may provide additional or different license terms and conditions
25729
+ for use, reproduction, or distribution of Your modifications, or
25730
+ for any such Derivative Works as a whole, provided Your use,
25731
+ reproduction, and distribution of the Work otherwise complies with
25732
+ the conditions stated in this License.
25733
+
25734
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
25735
+ any Contribution intentionally submitted for inclusion in the Work
25736
+ by You to the Licensor shall be under the terms and conditions of
25737
+ this License, without any additional terms or conditions.
25738
+ Notwithstanding the above, nothing herein shall supersede or modify
25739
+ the terms of any separate license agreement you may have executed
25740
+ with Licensor regarding such Contributions.
25741
+
25742
+ 6. Trademarks. This License does not grant permission to use the trade
25743
+ names, trademarks, service marks, or product names of the Licensor,
25744
+ except as required for reasonable and customary use in describing the
25745
+ origin of the Work and reproducing the content of the NOTICE file.
25746
+
25747
+ 7. Disclaimer of Warranty. Unless required by applicable law or
25748
+ agreed to in writing, Licensor provides the Work (and each
25749
+ Contributor provides its Contributions) on an "AS IS" BASIS,
25750
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
25751
+ implied, including, without limitation, any warranties or conditions
25752
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
25753
+ PARTICULAR PURPOSE. You are solely responsible for determining the
25754
+ appropriateness of using or redistributing the Work and assume any
25755
+ risks associated with Your exercise of permissions under this License.
25756
+
25757
+ 8. Limitation of Liability. In no event and under no legal theory,
25758
+ whether in tort (including negligence), contract, or otherwise,
25759
+ unless required by applicable law (such as deliberate and grossly
25760
+ negligent acts) or agreed to in writing, shall any Contributor be
25761
+ liable to You for damages, including any direct, indirect, special,
25762
+ incidental, or consequential damages of any character arising as a
25763
+ result of this License or out of the use or inability to use the
25764
+ Work (including but not limited to damages for loss of goodwill,
25765
+ work stoppage, computer failure or malfunction, or any and all
25766
+ other commercial damages or losses), even if such Contributor
25767
+ has been advised of the possibility of such damages.
25768
+
25769
+ 9. Accepting Warranty or Additional Liability. While redistributing
25770
+ the Work or Derivative Works thereof, You may choose to offer,
25771
+ and charge a fee for, acceptance of support, warranty, indemnity,
25772
+ or other liability obligations and/or rights consistent with this
25773
+ License. However, in accepting such obligations, You may act only
25774
+ on Your own behalf and on Your sole responsibility, not on behalf
25775
+ of any other Contributor, and only if You agree to indemnify,
25776
+ defend, and hold each Contributor harmless for any liability
25777
+ incurred by, or claims asserted against, such Contributor by reason
25778
+ of your accepting any such warranty or additional liability.
25779
+
25780
+ END OF TERMS AND CONDITIONS
25781
+
25782
+ APPENDIX: How to apply the Apache License to your work.
25783
+
25784
+ To apply the Apache License to your work, attach the following
25785
+ boilerplate notice, with the fields enclosed by brackets "[]"
25786
+ replaced with your own identifying information. (Don't include
25787
+ the brackets!) The text should be enclosed in the appropriate
25788
+ comment syntax for the file format. We also recommend that a
25789
+ file or class name and description of purpose be included on the
25790
+ same "printed page" as the copyright notice for easier
25791
+ identification within third-party archives.
25792
+
25793
+ Copyright 2017 Workiva Inc.
25794
+
25795
+ Licensed under the Apache License, Version 2.0 (the "License");
25796
+ you may not use this file except in compliance with the License.
25797
+ You may obtain a copy of the License at
25798
+
25799
+ http://www.apache.org/licenses/LICENSE-2.0
25800
+
25801
+ Unless required by applicable law or agreed to in writing, software
25802
+ distributed under the License is distributed on an "AS IS" BASIS,
25803
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25804
+ See the License for the specific language governing permissions and
25805
+ limitations under the License.
25806
+
25257
25807
  --------------------------------------------------------------------------------
25258
25808
  posix
25259
25809