neoagent 2.3.1-beta.2 → 2.3.1-beta.21

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 (264) hide show
  1. package/.env.example +39 -0
  2. package/README.md +2 -0
  3. package/docs/capabilities.md +2 -2
  4. package/docs/configuration.md +13 -5
  5. package/docs/integrations.md +4 -1
  6. package/flutter_app/.metadata +42 -0
  7. package/flutter_app/README.md +21 -0
  8. package/flutter_app/analysis_options.yaml +32 -0
  9. package/flutter_app/android/app/build.gradle.kts +109 -0
  10. package/flutter_app/android/app/src/debug/AndroidManifest.xml +7 -0
  11. package/flutter_app/android/app/src/main/AndroidManifest.xml +147 -0
  12. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/MainActivity.kt +747 -0
  13. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthConnectGateway.kt +280 -0
  14. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncNotifications.kt +113 -0
  15. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncPayload.kt +57 -0
  16. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncScheduler.kt +78 -0
  17. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncWorker.kt +253 -0
  18. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/PermissionsRationaleActivity.kt +46 -0
  19. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingBootReceiver.kt +21 -0
  20. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingForegroundService.kt +586 -0
  21. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingStateStore.kt +78 -0
  22. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingUploadClient.kt +104 -0
  23. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/AiHomeWidgetProvider.kt +457 -0
  24. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/AiWidgetStore.kt +194 -0
  25. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/VoiceLaunchWidgetProvider.kt +67 -0
  26. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetConfigActivity.kt +228 -0
  27. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetSyncScheduler.kt +72 -0
  28. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetSyncWorker.kt +186 -0
  29. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetTaskRunWorker.kt +210 -0
  30. package/flutter_app/android/app/src/main/res/drawable/launch_background.xml +12 -0
  31. package/flutter_app/android/app/src/main/res/drawable/neoagent_ai_widget_bg.xml +11 -0
  32. package/flutter_app/android/app/src/main/res/drawable/neoagent_ai_widget_task_bg.xml +8 -0
  33. package/flutter_app/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  34. package/flutter_app/android/app/src/main/res/layout/neoagent_ai_widget.xml +138 -0
  35. package/flutter_app/android/app/src/main/res/layout/neoagent_ai_widget_task_row.xml +52 -0
  36. package/flutter_app/android/app/src/main/res/layout/neoagent_voice_widget.xml +49 -0
  37. package/flutter_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  38. package/flutter_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  39. package/flutter_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  40. package/flutter_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  41. package/flutter_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  42. package/flutter_app/android/app/src/main/res/values/strings.xml +12 -0
  43. package/flutter_app/android/app/src/main/res/values/styles.xml +18 -0
  44. package/flutter_app/android/app/src/main/res/values-night/styles.xml +18 -0
  45. package/flutter_app/android/app/src/main/res/xml/file_paths.xml +6 -0
  46. package/flutter_app/android/app/src/main/res/xml/neoagent_ai_widget_info.xml +12 -0
  47. package/flutter_app/android/app/src/main/res/xml/neoagent_voice_widget_info.xml +12 -0
  48. package/flutter_app/android/app/src/profile/AndroidManifest.xml +7 -0
  49. package/flutter_app/android/build.gradle.kts +24 -0
  50. package/flutter_app/android/ci-release.keystore +0 -0
  51. package/flutter_app/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  52. package/flutter_app/android/gradle.properties +3 -0
  53. package/flutter_app/android/key.properties +4 -0
  54. package/flutter_app/android/settings.gradle.kts +26 -0
  55. package/flutter_app/assets/branding/app_icon_1024.png +0 -0
  56. package/flutter_app/assets/branding/app_icon_128.png +0 -0
  57. package/flutter_app/assets/branding/app_icon_192.png +0 -0
  58. package/flutter_app/assets/branding/app_icon_256.png +0 -0
  59. package/flutter_app/assets/branding/app_icon_32.png +0 -0
  60. package/flutter_app/assets/branding/app_icon_512.png +0 -0
  61. package/flutter_app/assets/branding/app_icon_64.png +0 -0
  62. package/flutter_app/assets/branding/tray_icon_template.png +0 -0
  63. package/flutter_app/lib/features/location/location_service.dart +119 -0
  64. package/flutter_app/lib/features/notifications/notification_interceptor.dart +97 -0
  65. package/flutter_app/lib/main.dart +23057 -0
  66. package/flutter_app/lib/main_app_shell.dart +1682 -0
  67. package/flutter_app/lib/main_integrations.dart +931 -0
  68. package/flutter_app/lib/main_launcher.dart +959 -0
  69. package/flutter_app/lib/main_launcher_entry.dart +5 -0
  70. package/flutter_app/lib/main_models.dart +3473 -0
  71. package/flutter_app/lib/main_shared.dart +2861 -0
  72. package/flutter_app/lib/main_theme.dart +204 -0
  73. package/flutter_app/lib/main_voice_assistant.dart +831 -0
  74. package/flutter_app/lib/src/android_apk_drop_zone.dart +32 -0
  75. package/flutter_app/lib/src/android_apk_drop_zone_stub.dart +16 -0
  76. package/flutter_app/lib/src/android_apk_drop_zone_web.dart +348 -0
  77. package/flutter_app/lib/src/android_app_installer.dart +22 -0
  78. package/flutter_app/lib/src/android_app_installer_io.dart +122 -0
  79. package/flutter_app/lib/src/android_app_installer_stub.dart +21 -0
  80. package/flutter_app/lib/src/android_launcher_bridge.dart +239 -0
  81. package/flutter_app/lib/src/app_launch_bridge.dart +29 -0
  82. package/flutter_app/lib/src/app_release_updater.dart +511 -0
  83. package/flutter_app/lib/src/backend_client.dart +1833 -0
  84. package/flutter_app/lib/src/desktop_companion.dart +2 -0
  85. package/flutter_app/lib/src/desktop_companion_actions.dart +586 -0
  86. package/flutter_app/lib/src/desktop_companion_io.dart +538 -0
  87. package/flutter_app/lib/src/desktop_companion_stub.dart +59 -0
  88. package/flutter_app/lib/src/desktop_native_bridge.dart +91 -0
  89. package/flutter_app/lib/src/desktop_screen_capture.dart +21 -0
  90. package/flutter_app/lib/src/desktop_screen_capture_io.dart +142 -0
  91. package/flutter_app/lib/src/desktop_screen_capture_stub.dart +12 -0
  92. package/flutter_app/lib/src/diagnostics_logger.dart +119 -0
  93. package/flutter_app/lib/src/health_bridge.dart +136 -0
  94. package/flutter_app/lib/src/live_voice_capture.dart +85 -0
  95. package/flutter_app/lib/src/messaging_access_summary.dart +46 -0
  96. package/flutter_app/lib/src/network/app_http_client.dart +53 -0
  97. package/flutter_app/lib/src/network/app_http_client_factory.dart +6 -0
  98. package/flutter_app/lib/src/network/app_http_client_io.dart +138 -0
  99. package/flutter_app/lib/src/network/app_http_client_stub.dart +3 -0
  100. package/flutter_app/lib/src/network/app_http_client_web.dart +94 -0
  101. package/flutter_app/lib/src/oauth_launcher.dart +33 -0
  102. package/flutter_app/lib/src/oauth_launcher_io.dart +77 -0
  103. package/flutter_app/lib/src/oauth_launcher_stub.dart +33 -0
  104. package/flutter_app/lib/src/oauth_launcher_web.dart +107 -0
  105. package/flutter_app/lib/src/recording_bridge.dart +232 -0
  106. package/flutter_app/lib/src/recording_bridge_io.dart +1019 -0
  107. package/flutter_app/lib/src/recording_bridge_stub.dart +120 -0
  108. package/flutter_app/lib/src/recording_bridge_web.dart +689 -0
  109. package/flutter_app/lib/src/recording_payloads.dart +86 -0
  110. package/flutter_app/lib/src/theme/palette.dart +81 -0
  111. package/flutter_app/lib/src/widget_bridge.dart +49 -0
  112. package/flutter_app/linux/CMakeLists.txt +128 -0
  113. package/flutter_app/linux/flutter/CMakeLists.txt +88 -0
  114. package/flutter_app/linux/flutter/generated_plugin_registrant.cc +43 -0
  115. package/flutter_app/linux/flutter/generated_plugin_registrant.h +15 -0
  116. package/flutter_app/linux/flutter/generated_plugins.cmake +31 -0
  117. package/flutter_app/linux/runner/CMakeLists.txt +26 -0
  118. package/flutter_app/linux/runner/main.cc +6 -0
  119. package/flutter_app/linux/runner/my_application.cc +144 -0
  120. package/flutter_app/linux/runner/my_application.h +18 -0
  121. package/flutter_app/linux/runner/resources/app_icon.png +0 -0
  122. package/flutter_app/macos/Flutter/Flutter-Debug.xcconfig +2 -0
  123. package/flutter_app/macos/Flutter/Flutter-Release.xcconfig +2 -0
  124. package/flutter_app/macos/Flutter/GeneratedPluginRegistrant.swift +40 -0
  125. package/flutter_app/macos/Podfile +42 -0
  126. package/flutter_app/macos/Podfile.lock +87 -0
  127. package/flutter_app/macos/Runner/AppDelegate.swift +576 -0
  128. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  129. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  130. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  131. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  132. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  133. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  134. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  135. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  136. package/flutter_app/macos/Runner/Base.lproj/MainMenu.xib +342 -0
  137. package/flutter_app/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  138. package/flutter_app/macos/Runner/Configs/Debug.xcconfig +2 -0
  139. package/flutter_app/macos/Runner/Configs/Release.xcconfig +2 -0
  140. package/flutter_app/macos/Runner/Configs/Warnings.xcconfig +13 -0
  141. package/flutter_app/macos/Runner/DebugProfile.entitlements +16 -0
  142. package/flutter_app/macos/Runner/Info.plist +36 -0
  143. package/flutter_app/macos/Runner/MainFlutterWindow.swift +19 -0
  144. package/flutter_app/macos/Runner/Release.entitlements +12 -0
  145. package/flutter_app/macos/Runner.xcodeproj/project.pbxproj +801 -0
  146. package/flutter_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  147. package/flutter_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
  148. package/flutter_app/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  149. package/flutter_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  150. package/flutter_app/macos/RunnerTests/RunnerTests.swift +12 -0
  151. package/flutter_app/patch_strings.py +12 -0
  152. package/flutter_app/pubspec.lock +1088 -0
  153. package/flutter_app/pubspec.yaml +53 -0
  154. package/flutter_app/test/messaging_access_summary_test.dart +22 -0
  155. package/flutter_app/test/recording_payloads_test.dart +53 -0
  156. package/flutter_app/third_party/desktop_audio_capture/LICENSE +21 -0
  157. package/flutter_app/third_party/desktop_audio_capture/README.md +262 -0
  158. package/flutter_app/third_party/desktop_audio_capture/lib/audio_capture.dart +65 -0
  159. package/flutter_app/third_party/desktop_audio_capture/lib/config/mic_audio_config.dart +153 -0
  160. package/flutter_app/third_party/desktop_audio_capture/lib/config/system_adudio_config.dart +110 -0
  161. package/flutter_app/third_party/desktop_audio_capture/lib/mic/mic_audio_capture.dart +461 -0
  162. package/flutter_app/third_party/desktop_audio_capture/lib/model/audio_status.dart +91 -0
  163. package/flutter_app/third_party/desktop_audio_capture/lib/model/decibel_data.dart +106 -0
  164. package/flutter_app/third_party/desktop_audio_capture/lib/model/input_device_type.dart +219 -0
  165. package/flutter_app/third_party/desktop_audio_capture/lib/system/system_audio_capture.dart +336 -0
  166. package/flutter_app/third_party/desktop_audio_capture/linux/CMakeLists.txt +101 -0
  167. package/flutter_app/third_party/desktop_audio_capture/linux/audio_capture_plugin.cc +692 -0
  168. package/flutter_app/third_party/desktop_audio_capture/linux/include/audio_capture/audio_capture_plugin.h +35 -0
  169. package/flutter_app/third_party/desktop_audio_capture/linux/include/audio_capture/mic_capture_plugin.h +36 -0
  170. package/flutter_app/third_party/desktop_audio_capture/linux/include/desktop_audio_capture/audio_capture_plugin.h +32 -0
  171. package/flutter_app/third_party/desktop_audio_capture/linux/include/desktop_audio_capture/mic_capture_plugin.h +32 -0
  172. package/flutter_app/third_party/desktop_audio_capture/linux/mic_capture_plugin.cc +878 -0
  173. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/AudioCapturePlugin.swift +27 -0
  174. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/MicCapturePlugin.swift +1172 -0
  175. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/SystemCapturePlugin.swift +655 -0
  176. package/flutter_app/third_party/desktop_audio_capture/macos/Resources/PrivacyInfo.xcprivacy +12 -0
  177. package/flutter_app/third_party/desktop_audio_capture/macos/desktop_audio_capture.podspec +30 -0
  178. package/flutter_app/third_party/desktop_audio_capture/pubspec.yaml +87 -0
  179. package/flutter_app/third_party/desktop_audio_capture/windows/CMakeLists.txt +105 -0
  180. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin.cpp +80 -0
  181. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin.h +31 -0
  182. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin_c_api.cpp +12 -0
  183. package/flutter_app/third_party/desktop_audio_capture/windows/include/audio_capture/audio_capture_plugin_c_api.h +23 -0
  184. package/flutter_app/third_party/desktop_audio_capture/windows/include/desktop_audio_capture/audio_capture_plugin.h +25 -0
  185. package/flutter_app/third_party/desktop_audio_capture/windows/mic_capture_plugin.cpp +1117 -0
  186. package/flutter_app/third_party/desktop_audio_capture/windows/mic_capture_plugin.h +115 -0
  187. package/flutter_app/third_party/desktop_audio_capture/windows/system_audio_capture_plugin.cpp +777 -0
  188. package/flutter_app/third_party/desktop_audio_capture/windows/system_audio_capture_plugin.h +87 -0
  189. package/flutter_app/third_party/flutter_secure_storage_linux/linux/CMakeLists.txt +30 -0
  190. package/flutter_app/third_party/flutter_secure_storage_linux/linux/flutter_secure_storage_linux_plugin.cc +215 -0
  191. package/flutter_app/third_party/flutter_secure_storage_linux/linux/include/flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h +27 -0
  192. package/flutter_app/third_party/flutter_secure_storage_linux/pubspec.yaml +20 -0
  193. package/flutter_app/tool/generate_desktop_branding.py +219 -0
  194. package/flutter_app/web/favicon.png +0 -0
  195. package/flutter_app/web/favicon.svg +12 -0
  196. package/flutter_app/web/icons/Icon-192.png +0 -0
  197. package/flutter_app/web/icons/Icon-512.png +0 -0
  198. package/flutter_app/web/icons/Icon-maskable-192.png +0 -0
  199. package/flutter_app/web/icons/Icon-maskable-512.png +0 -0
  200. package/flutter_app/web/index.html +39 -0
  201. package/flutter_app/web/manifest.json +35 -0
  202. package/flutter_app/windows/CMakeLists.txt +108 -0
  203. package/flutter_app/windows/flutter/CMakeLists.txt +109 -0
  204. package/flutter_app/windows/flutter/generated_plugin_registrant.cc +47 -0
  205. package/flutter_app/windows/flutter/generated_plugin_registrant.h +15 -0
  206. package/flutter_app/windows/flutter/generated_plugins.cmake +35 -0
  207. package/flutter_app/windows/runner/CMakeLists.txt +41 -0
  208. package/flutter_app/windows/runner/Runner.rc +121 -0
  209. package/flutter_app/windows/runner/flutter_window.cpp +533 -0
  210. package/flutter_app/windows/runner/flutter_window.h +37 -0
  211. package/flutter_app/windows/runner/main.cpp +53 -0
  212. package/flutter_app/windows/runner/resource.h +16 -0
  213. package/flutter_app/windows/runner/resources/app_icon.ico +0 -0
  214. package/flutter_app/windows/runner/runner.exe.manifest +14 -0
  215. package/flutter_app/windows/runner/utils.cpp +65 -0
  216. package/flutter_app/windows/runner/utils.h +19 -0
  217. package/flutter_app/windows/runner/win32_window.cpp +299 -0
  218. package/flutter_app/windows/runner/win32_window.h +102 -0
  219. package/lib/manager.js +231 -7
  220. package/package.json +3 -1
  221. package/server/db/database.js +68 -0
  222. package/server/http/middleware.js +50 -0
  223. package/server/http/routes.js +3 -1
  224. package/server/index.js +1 -0
  225. package/server/public/.last_build_id +1 -1
  226. package/server/public/assets/NOTICES +61 -0
  227. package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
  228. package/server/public/flutter_bootstrap.js +1 -1
  229. package/server/public/main.dart.js +65262 -64422
  230. package/server/routes/integrations.js +86 -0
  231. package/server/routes/memory.js +11 -2
  232. package/server/routes/screenHistory.js +46 -0
  233. package/server/routes/triggers.js +81 -0
  234. package/server/services/ai/models.js +30 -0
  235. package/server/services/ai/providers/githubCopilot.js +97 -0
  236. package/server/services/ai/providers/openai.js +2 -1
  237. package/server/services/ai/providers/openaiCodex.js +31 -0
  238. package/server/services/ai/settings.js +20 -0
  239. package/server/services/ai/systemPrompt.js +1 -1
  240. package/server/services/ai/tools.js +35 -6
  241. package/server/services/browser/controller.js +47 -3
  242. package/server/services/desktop/screenRecorder.js +172 -0
  243. package/server/services/integrations/env.js +5 -0
  244. package/server/services/integrations/github/common.js +106 -0
  245. package/server/services/integrations/github/provider.js +499 -0
  246. package/server/services/integrations/github/repos.js +1124 -0
  247. package/server/services/integrations/home_assistant/provider.js +306 -26
  248. package/server/services/integrations/manager.js +63 -7
  249. package/server/services/integrations/oauth_provider.js +13 -6
  250. package/server/services/integrations/provider_config_store.js +76 -0
  251. package/server/services/integrations/registry.js +4 -0
  252. package/server/services/integrations/trello/provider.js +744 -0
  253. package/server/services/integrations/whatsapp/provider.js +6 -2
  254. package/server/services/manager.js +22 -0
  255. package/server/services/memory/manager.js +39 -2
  256. package/server/services/skills/base_catalog.js +33 -0
  257. package/server/services/tasks/adapters/index.js +1 -0
  258. package/server/services/tasks/adapters/manual.js +12 -0
  259. package/server/services/tasks/runtime.js +1 -1
  260. package/server/services/voice/openaiClient.js +4 -1
  261. package/server/services/voice/providers.js +2 -1
  262. package/server/services/widgets/service.js +49 -4
  263. package/server/utils/local_secrets.js +56 -0
  264. package/server/utils/logger.js +37 -9
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "NeoAgent",
3
+ "short_name": "NeoAgent",
4
+ "start_url": ".",
5
+ "display": "standalone",
6
+ "background_color": "#0175C2",
7
+ "theme_color": "#0175C2",
8
+ "description": "NeoAgent Flutter client for web and Android.",
9
+ "orientation": "portrait-primary",
10
+ "prefer_related_applications": false,
11
+ "icons": [
12
+ {
13
+ "src": "icons/Icon-192.png",
14
+ "sizes": "192x192",
15
+ "type": "image/png"
16
+ },
17
+ {
18
+ "src": "icons/Icon-512.png",
19
+ "sizes": "512x512",
20
+ "type": "image/png"
21
+ },
22
+ {
23
+ "src": "icons/Icon-maskable-192.png",
24
+ "sizes": "192x192",
25
+ "type": "image/png",
26
+ "purpose": "maskable"
27
+ },
28
+ {
29
+ "src": "icons/Icon-maskable-512.png",
30
+ "sizes": "512x512",
31
+ "type": "image/png",
32
+ "purpose": "maskable"
33
+ }
34
+ ]
35
+ }
@@ -0,0 +1,108 @@
1
+ # Project-level configuration.
2
+ cmake_minimum_required(VERSION 3.14)
3
+ project(NeoAgent LANGUAGES CXX)
4
+
5
+ # The name of the executable created for the application. Change this to change
6
+ # the on-disk name of your application.
7
+ set(BINARY_NAME "NeoAgent")
8
+
9
+ # Explicitly opt in to modern CMake behaviors to avoid warnings with recent
10
+ # versions of CMake.
11
+ cmake_policy(VERSION 3.14...3.25)
12
+
13
+ # Define build configuration option.
14
+ get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
15
+ if(IS_MULTICONFIG)
16
+ set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release"
17
+ CACHE STRING "" FORCE)
18
+ else()
19
+ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
20
+ set(CMAKE_BUILD_TYPE "Debug" CACHE
21
+ STRING "Flutter build mode" FORCE)
22
+ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
23
+ "Debug" "Profile" "Release")
24
+ endif()
25
+ endif()
26
+ # Define settings for the Profile build mode.
27
+ set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}")
28
+ set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}")
29
+ set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}")
30
+ set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}")
31
+
32
+ # Use Unicode for all projects.
33
+ add_definitions(-DUNICODE -D_UNICODE)
34
+
35
+ # Compilation settings that should be applied to most targets.
36
+ #
37
+ # Be cautious about adding new options here, as plugins use this function by
38
+ # default. In most cases, you should add new options to specific targets instead
39
+ # of modifying this function.
40
+ function(APPLY_STANDARD_SETTINGS TARGET)
41
+ target_compile_features(${TARGET} PUBLIC cxx_std_17)
42
+ target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100")
43
+ target_compile_options(${TARGET} PRIVATE /EHsc)
44
+ target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0")
45
+ target_compile_definitions(${TARGET} PRIVATE "$<$<CONFIG:Debug>:_DEBUG>")
46
+ endfunction()
47
+
48
+ # Flutter library and tool build rules.
49
+ set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter")
50
+ add_subdirectory(${FLUTTER_MANAGED_DIR})
51
+
52
+ # Application build; see runner/CMakeLists.txt.
53
+ add_subdirectory("runner")
54
+
55
+
56
+ # Generated plugin build rules, which manage building the plugins and adding
57
+ # them to the application.
58
+ include(flutter/generated_plugins.cmake)
59
+
60
+
61
+ # === Installation ===
62
+ # Support files are copied into place next to the executable, so that it can
63
+ # run in place. This is done instead of making a separate bundle (as on Linux)
64
+ # so that building and running from within Visual Studio will work.
65
+ set(BUILD_BUNDLE_DIR "$<TARGET_FILE_DIR:${BINARY_NAME}>")
66
+ # Make the "install" step default, as it's required to run.
67
+ set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1)
68
+ if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
69
+ set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE)
70
+ endif()
71
+
72
+ set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data")
73
+ set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}")
74
+
75
+ install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}"
76
+ COMPONENT Runtime)
77
+
78
+ install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
79
+ COMPONENT Runtime)
80
+
81
+ install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
82
+ COMPONENT Runtime)
83
+
84
+ if(PLUGIN_BUNDLED_LIBRARIES)
85
+ install(FILES "${PLUGIN_BUNDLED_LIBRARIES}"
86
+ DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
87
+ COMPONENT Runtime)
88
+ endif()
89
+
90
+ # Copy the native assets provided by the build.dart from all packages.
91
+ set(NATIVE_ASSETS_DIR "${PROJECT_BUILD_DIR}/native_assets/windows/")
92
+ install(DIRECTORY "${NATIVE_ASSETS_DIR}"
93
+ DESTINATION "${INSTALL_BUNDLE_LIB_DIR}"
94
+ COMPONENT Runtime)
95
+
96
+ # Fully re-copy the assets directory on each build to avoid having stale files
97
+ # from a previous install.
98
+ set(FLUTTER_ASSET_DIR_NAME "flutter_assets")
99
+ install(CODE "
100
+ file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\")
101
+ " COMPONENT Runtime)
102
+ install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}"
103
+ DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime)
104
+
105
+ # Install the AOT library on non-Debug builds only.
106
+ install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}"
107
+ CONFIGURATIONS Profile;Release
108
+ COMPONENT Runtime)
@@ -0,0 +1,109 @@
1
+ # This file controls Flutter-level build steps. It should not be edited.
2
+ cmake_minimum_required(VERSION 3.14)
3
+
4
+ set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral")
5
+
6
+ # Configuration provided via flutter tool.
7
+ include(${EPHEMERAL_DIR}/generated_config.cmake)
8
+
9
+ # TODO: Move the rest of this into files in ephemeral. See
10
+ # https://github.com/flutter/flutter/issues/57146.
11
+ set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper")
12
+
13
+ # Set fallback configurations for older versions of the flutter tool.
14
+ if (NOT DEFINED FLUTTER_TARGET_PLATFORM)
15
+ set(FLUTTER_TARGET_PLATFORM "windows-x64")
16
+ endif()
17
+
18
+ # === Flutter Library ===
19
+ set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll")
20
+
21
+ # Published to parent scope for install step.
22
+ set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)
23
+ set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE)
24
+ set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE)
25
+ set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE)
26
+
27
+ list(APPEND FLUTTER_LIBRARY_HEADERS
28
+ "flutter_export.h"
29
+ "flutter_windows.h"
30
+ "flutter_messenger.h"
31
+ "flutter_plugin_registrar.h"
32
+ "flutter_texture_registrar.h"
33
+ )
34
+ list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/")
35
+ add_library(flutter INTERFACE)
36
+ target_include_directories(flutter INTERFACE
37
+ "${EPHEMERAL_DIR}"
38
+ )
39
+ target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib")
40
+ add_dependencies(flutter flutter_assemble)
41
+
42
+ # === Wrapper ===
43
+ list(APPEND CPP_WRAPPER_SOURCES_CORE
44
+ "core_implementations.cc"
45
+ "standard_codec.cc"
46
+ )
47
+ list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/")
48
+ list(APPEND CPP_WRAPPER_SOURCES_PLUGIN
49
+ "plugin_registrar.cc"
50
+ )
51
+ list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/")
52
+ list(APPEND CPP_WRAPPER_SOURCES_APP
53
+ "flutter_engine.cc"
54
+ "flutter_view_controller.cc"
55
+ )
56
+ list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/")
57
+
58
+ # Wrapper sources needed for a plugin.
59
+ add_library(flutter_wrapper_plugin STATIC
60
+ ${CPP_WRAPPER_SOURCES_CORE}
61
+ ${CPP_WRAPPER_SOURCES_PLUGIN}
62
+ )
63
+ apply_standard_settings(flutter_wrapper_plugin)
64
+ set_target_properties(flutter_wrapper_plugin PROPERTIES
65
+ POSITION_INDEPENDENT_CODE ON)
66
+ set_target_properties(flutter_wrapper_plugin PROPERTIES
67
+ CXX_VISIBILITY_PRESET hidden)
68
+ target_link_libraries(flutter_wrapper_plugin PUBLIC flutter)
69
+ target_include_directories(flutter_wrapper_plugin PUBLIC
70
+ "${WRAPPER_ROOT}/include"
71
+ )
72
+ add_dependencies(flutter_wrapper_plugin flutter_assemble)
73
+
74
+ # Wrapper sources needed for the runner.
75
+ add_library(flutter_wrapper_app STATIC
76
+ ${CPP_WRAPPER_SOURCES_CORE}
77
+ ${CPP_WRAPPER_SOURCES_APP}
78
+ )
79
+ apply_standard_settings(flutter_wrapper_app)
80
+ target_link_libraries(flutter_wrapper_app PUBLIC flutter)
81
+ target_include_directories(flutter_wrapper_app PUBLIC
82
+ "${WRAPPER_ROOT}/include"
83
+ )
84
+ add_dependencies(flutter_wrapper_app flutter_assemble)
85
+
86
+ # === Flutter tool backend ===
87
+ # _phony_ is a non-existent file to force this command to run every time,
88
+ # since currently there's no way to get a full input/output list from the
89
+ # flutter tool.
90
+ set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_")
91
+ set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE)
92
+ add_custom_command(
93
+ OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS}
94
+ ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN}
95
+ ${CPP_WRAPPER_SOURCES_APP}
96
+ ${PHONY_OUTPUT}
97
+ COMMAND ${CMAKE_COMMAND} -E env
98
+ ${FLUTTER_TOOL_ENVIRONMENT}
99
+ "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat"
100
+ ${FLUTTER_TARGET_PLATFORM} $<CONFIG>
101
+ VERBATIM
102
+ )
103
+ add_custom_target(flutter_assemble DEPENDS
104
+ "${FLUTTER_LIBRARY}"
105
+ ${FLUTTER_LIBRARY_HEADERS}
106
+ ${CPP_WRAPPER_SOURCES_CORE}
107
+ ${CPP_WRAPPER_SOURCES_PLUGIN}
108
+ ${CPP_WRAPPER_SOURCES_APP}
109
+ )
@@ -0,0 +1,47 @@
1
+ //
2
+ // Generated file. Do not edit.
3
+ //
4
+
5
+ // clang-format off
6
+
7
+ #include "generated_plugin_registrant.h"
8
+
9
+ #include <audioplayers_windows/audioplayers_windows_plugin.h>
10
+ #include <connectivity_plus/connectivity_plus_windows_plugin.h>
11
+ #include <desktop_audio_capture/audio_capture_plugin.h>
12
+ #include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h>
13
+ #include <geolocator_windows/geolocator_windows.h>
14
+ #include <hotkey_manager_windows/hotkey_manager_windows_plugin_c_api.h>
15
+ #include <permission_handler_windows/permission_handler_windows_plugin.h>
16
+ #include <record_windows/record_windows_plugin_c_api.h>
17
+ #include <screen_retriever_windows/screen_retriever_windows_plugin_c_api.h>
18
+ #include <tray_manager/tray_manager_plugin.h>
19
+ #include <universal_ble/universal_ble_plugin_c_api.h>
20
+ #include <window_manager/window_manager_plugin.h>
21
+
22
+ void RegisterPlugins(flutter::PluginRegistry* registry) {
23
+ AudioplayersWindowsPluginRegisterWithRegistrar(
24
+ registry->GetRegistrarForPlugin("AudioplayersWindowsPlugin"));
25
+ ConnectivityPlusWindowsPluginRegisterWithRegistrar(
26
+ registry->GetRegistrarForPlugin("ConnectivityPlusWindowsPlugin"));
27
+ AudioCapturePluginRegisterWithRegistrar(
28
+ registry->GetRegistrarForPlugin("AudioCapturePlugin"));
29
+ FlutterSecureStorageWindowsPluginRegisterWithRegistrar(
30
+ registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin"));
31
+ GeolocatorWindowsRegisterWithRegistrar(
32
+ registry->GetRegistrarForPlugin("GeolocatorWindows"));
33
+ HotkeyManagerWindowsPluginCApiRegisterWithRegistrar(
34
+ registry->GetRegistrarForPlugin("HotkeyManagerWindowsPluginCApi"));
35
+ PermissionHandlerWindowsPluginRegisterWithRegistrar(
36
+ registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin"));
37
+ RecordWindowsPluginCApiRegisterWithRegistrar(
38
+ registry->GetRegistrarForPlugin("RecordWindowsPluginCApi"));
39
+ ScreenRetrieverWindowsPluginCApiRegisterWithRegistrar(
40
+ registry->GetRegistrarForPlugin("ScreenRetrieverWindowsPluginCApi"));
41
+ TrayManagerPluginRegisterWithRegistrar(
42
+ registry->GetRegistrarForPlugin("TrayManagerPlugin"));
43
+ UniversalBlePluginCApiRegisterWithRegistrar(
44
+ registry->GetRegistrarForPlugin("UniversalBlePluginCApi"));
45
+ WindowManagerPluginRegisterWithRegistrar(
46
+ registry->GetRegistrarForPlugin("WindowManagerPlugin"));
47
+ }
@@ -0,0 +1,15 @@
1
+ //
2
+ // Generated file. Do not edit.
3
+ //
4
+
5
+ // clang-format off
6
+
7
+ #ifndef GENERATED_PLUGIN_REGISTRANT_
8
+ #define GENERATED_PLUGIN_REGISTRANT_
9
+
10
+ #include <flutter/plugin_registry.h>
11
+
12
+ // Registers Flutter plugins.
13
+ void RegisterPlugins(flutter::PluginRegistry* registry);
14
+
15
+ #endif // GENERATED_PLUGIN_REGISTRANT_
@@ -0,0 +1,35 @@
1
+ #
2
+ # Generated file, do not edit.
3
+ #
4
+
5
+ list(APPEND FLUTTER_PLUGIN_LIST
6
+ audioplayers_windows
7
+ connectivity_plus
8
+ desktop_audio_capture
9
+ flutter_secure_storage_windows
10
+ geolocator_windows
11
+ hotkey_manager_windows
12
+ permission_handler_windows
13
+ record_windows
14
+ screen_retriever_windows
15
+ tray_manager
16
+ universal_ble
17
+ window_manager
18
+ )
19
+
20
+ list(APPEND FLUTTER_FFI_PLUGIN_LIST
21
+ )
22
+
23
+ set(PLUGIN_BUNDLED_LIBRARIES)
24
+
25
+ foreach(plugin ${FLUTTER_PLUGIN_LIST})
26
+ add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin})
27
+ target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin)
28
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
29
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
30
+ endforeach(plugin)
31
+
32
+ foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
33
+ add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
34
+ list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
35
+ endforeach(ffi_plugin)
@@ -0,0 +1,41 @@
1
+ cmake_minimum_required(VERSION 3.14)
2
+ project(runner LANGUAGES CXX)
3
+
4
+ # Define the application target. To change its name, change BINARY_NAME in the
5
+ # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer
6
+ # work.
7
+ #
8
+ # Any new source files that you add to the application should be added here.
9
+ add_executable(${BINARY_NAME} WIN32
10
+ "flutter_window.cpp"
11
+ "main.cpp"
12
+ "utils.cpp"
13
+ "win32_window.cpp"
14
+ "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc"
15
+ "Runner.rc"
16
+ "runner.exe.manifest"
17
+ )
18
+
19
+ # Apply the standard set of build settings. This can be removed for applications
20
+ # that need different build settings.
21
+ apply_standard_settings(${BINARY_NAME})
22
+
23
+ # Add preprocessor definitions for the build version.
24
+ target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION=\"${FLUTTER_VERSION}\"")
25
+ target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MAJOR=${FLUTTER_VERSION_MAJOR}")
26
+ target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_MINOR=${FLUTTER_VERSION_MINOR}")
27
+ target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_PATCH=${FLUTTER_VERSION_PATCH}")
28
+ target_compile_definitions(${BINARY_NAME} PRIVATE "FLUTTER_VERSION_BUILD=${FLUTTER_VERSION_BUILD}")
29
+
30
+ # Disable Windows macros that collide with C++ standard library functions.
31
+ target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX")
32
+
33
+ # Add dependency libraries and include directories. Add any application-specific
34
+ # dependencies here.
35
+ target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app)
36
+ target_link_libraries(${BINARY_NAME} PRIVATE "dwmapi.lib")
37
+ target_link_libraries(${BINARY_NAME} PRIVATE "gdiplus.lib")
38
+ target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}")
39
+
40
+ # Run the Flutter tool portions of the build. This must not be removed.
41
+ add_dependencies(${BINARY_NAME} flutter_assemble)
@@ -0,0 +1,121 @@
1
+ // Microsoft Visual C++ generated resource script.
2
+ //
3
+ #pragma code_page(65001)
4
+ #include "resource.h"
5
+
6
+ #define APSTUDIO_READONLY_SYMBOLS
7
+ /////////////////////////////////////////////////////////////////////////////
8
+ //
9
+ // Generated from the TEXTINCLUDE 2 resource.
10
+ //
11
+ #include "winres.h"
12
+
13
+ /////////////////////////////////////////////////////////////////////////////
14
+ #undef APSTUDIO_READONLY_SYMBOLS
15
+
16
+ /////////////////////////////////////////////////////////////////////////////
17
+ // English (United States) resources
18
+
19
+ #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
20
+ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
21
+
22
+ #ifdef APSTUDIO_INVOKED
23
+ /////////////////////////////////////////////////////////////////////////////
24
+ //
25
+ // TEXTINCLUDE
26
+ //
27
+
28
+ 1 TEXTINCLUDE
29
+ BEGIN
30
+ "resource.h\0"
31
+ END
32
+
33
+ 2 TEXTINCLUDE
34
+ BEGIN
35
+ "#include ""winres.h""\r\n"
36
+ "\0"
37
+ END
38
+
39
+ 3 TEXTINCLUDE
40
+ BEGIN
41
+ "\r\n"
42
+ "\0"
43
+ END
44
+
45
+ #endif // APSTUDIO_INVOKED
46
+
47
+
48
+ /////////////////////////////////////////////////////////////////////////////
49
+ //
50
+ // Icon
51
+ //
52
+
53
+ // Icon with lowest ID value placed first to ensure application icon
54
+ // remains consistent on all systems.
55
+ IDI_APP_ICON ICON "resources\\app_icon.ico"
56
+
57
+
58
+ /////////////////////////////////////////////////////////////////////////////
59
+ //
60
+ // Version
61
+ //
62
+
63
+ #if defined(FLUTTER_VERSION_MAJOR) && defined(FLUTTER_VERSION_MINOR) && defined(FLUTTER_VERSION_PATCH) && defined(FLUTTER_VERSION_BUILD)
64
+ #define VERSION_AS_NUMBER FLUTTER_VERSION_MAJOR,FLUTTER_VERSION_MINOR,FLUTTER_VERSION_PATCH,FLUTTER_VERSION_BUILD
65
+ #else
66
+ #define VERSION_AS_NUMBER 1,0,0,0
67
+ #endif
68
+
69
+ #if defined(FLUTTER_VERSION)
70
+ #define VERSION_AS_STRING FLUTTER_VERSION
71
+ #else
72
+ #define VERSION_AS_STRING "1.0.0"
73
+ #endif
74
+
75
+ VS_VERSION_INFO VERSIONINFO
76
+ FILEVERSION VERSION_AS_NUMBER
77
+ PRODUCTVERSION VERSION_AS_NUMBER
78
+ FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
79
+ #ifdef _DEBUG
80
+ FILEFLAGS VS_FF_DEBUG
81
+ #else
82
+ FILEFLAGS 0x0L
83
+ #endif
84
+ FILEOS VOS__WINDOWS32
85
+ FILETYPE VFT_APP
86
+ FILESUBTYPE 0x0L
87
+ BEGIN
88
+ BLOCK "StringFileInfo"
89
+ BEGIN
90
+ BLOCK "040904e4"
91
+ BEGIN
92
+ VALUE "CompanyName", "NeoAgent Inc." "\0"
93
+ VALUE "FileDescription", "NeoAgent" "\0"
94
+ VALUE "FileVersion", VERSION_AS_STRING "\0"
95
+ VALUE "InternalName", "NeoAgent" "\0"
96
+ VALUE "LegalCopyright", "Copyright (C) 2026 com.neoagent. All rights reserved." "\0"
97
+ VALUE "OriginalFilename", "NeoAgent.exe" "\0"
98
+ VALUE "ProductName", "NeoAgent" "\0"
99
+ VALUE "ProductVersion", VERSION_AS_STRING "\0"
100
+ END
101
+ END
102
+ BLOCK "VarFileInfo"
103
+ BEGIN
104
+ VALUE "Translation", 0x409, 1252
105
+ END
106
+ END
107
+
108
+ #endif // English (United States) resources
109
+ /////////////////////////////////////////////////////////////////////////////
110
+
111
+
112
+
113
+ #ifndef APSTUDIO_INVOKED
114
+ /////////////////////////////////////////////////////////////////////////////
115
+ //
116
+ // Generated from the TEXTINCLUDE 3 resource.
117
+ //
118
+
119
+
120
+ /////////////////////////////////////////////////////////////////////////////
121
+ #endif // not APSTUDIO_INVOKED