├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── instructions │ ├── coding-standards.instructions.md │ ├── commit-message-instructions.md │ ├── flutter-ui-guide.instructions.md │ ├── python-plugin-guide.instructions.md │ └── wox-core-standards.instructions.md └── workflows │ ├── build.yml │ ├── deploy-docs.yml │ └── plugin.yml ├── .gitignore ├── AGENTS.md ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── Wox.code-workspace ├── assets ├── app.ico ├── app.png ├── app.psd └── mac │ ├── Info.plist │ └── app.icns ├── ci ├── go.mod ├── go.sum └── plugin.go ├── screenshots ├── README.md ├── ai_chat.png ├── app.png ├── fallback_search.png └── setting.png ├── store-ai-command.json ├── store-plugin.json ├── store-theme.json ├── updater.json ├── wox.core ├── Makefile ├── ai │ ├── mcp.go │ ├── provider.go │ ├── provider_google.go │ ├── provider_groq.go │ ├── provider_ollama.go │ ├── provider_openai.go │ ├── provider_openai_base.go │ ├── provider_openrouter.go │ └── provider_siliconflow.go ├── common │ ├── README.md │ ├── ai.go │ ├── icons.go │ ├── image.go │ ├── image_test.go │ ├── theme.go │ └── ui.go ├── database │ ├── database.go │ └── toolbar_mute.go ├── go.mod ├── go.sum ├── i18n │ ├── lang.go │ └── manager.go ├── main.go ├── migration │ └── migrator.go ├── plugin │ ├── api.go │ ├── doctor.go │ ├── host.go │ ├── host │ │ ├── host_nodejs.go │ │ ├── host_python.go │ │ ├── host_script.go │ │ ├── host_websocket.go │ │ ├── host_websocket_plugin.go │ │ └── jsonrpc.go │ ├── instance.go │ ├── manager.go │ ├── manager_test.go │ ├── metadata.go │ ├── mru.go │ ├── os.go │ ├── platform.go │ ├── plugin.go │ ├── preview.go │ ├── query.go │ ├── query_test.go │ ├── runtime.go │ ├── store.go │ └── system │ │ ├── ai_command.go │ │ ├── ai_command_test.go │ │ ├── app │ │ ├── app.go │ │ ├── app_darwin.go │ │ ├── app_darwin.m │ │ ├── app_darwin_test.go │ │ ├── app_icons_darwin.go │ │ ├── app_linux.go │ │ ├── app_windows.go │ │ ├── retriever.go │ │ └── shortcut_resolver_windows.go │ │ ├── backup.go │ │ ├── browser.go │ │ ├── browser_bookmark.go │ │ ├── browser_bookmark_test.go │ │ ├── calculator │ │ ├── README.md │ │ ├── calculator.go │ │ ├── calculator_plugin.go │ │ ├── parser.go │ │ ├── tokenizer.go │ │ └── tokenizer_test.go │ │ ├── chat.go │ │ ├── clipboard │ │ ├── clipboard.go │ │ └── clipboard_db.go │ │ ├── converter │ │ ├── converter.go │ │ ├── core │ │ │ ├── registry.go │ │ │ └── tokenizer.go │ │ └── modules │ │ │ ├── base_regex_module.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── currency.go │ │ │ ├── currency_test.go │ │ │ ├── math.go │ │ │ └── time.go │ │ ├── doctor.go │ │ ├── emoji │ │ ├── emoji-data.json │ │ ├── emoji.go │ │ ├── emoji_image_darwin.go │ │ ├── emoji_image_other.go │ │ └── emoji_image_windows.go │ │ ├── file │ │ ├── plugin.go │ │ ├── searcher.go │ │ ├── searcher_darwin.go │ │ ├── searcher_everything_sdk_windows.go │ │ ├── searcher_linux.go │ │ └── searcher_windows.go │ │ ├── indicator.go │ │ ├── mediaplayer │ │ ├── mediaplayer.go │ │ ├── mediaplayer_darwin.go │ │ ├── mediaplayer_linux.go │ │ ├── mediaplayer_windows.go │ │ ├── retriever.go │ │ └── woxmr │ │ │ ├── Makefile.PL │ │ │ ├── README.md │ │ │ ├── WoxMR.pm │ │ │ ├── WoxMR.xs │ │ │ ├── adapter.pl │ │ │ └── wox_mr.m │ │ ├── menus_darwin.go │ │ ├── plugin_installer.go │ │ ├── query_history.go │ │ ├── selection.go │ │ ├── shell │ │ ├── shell.go │ │ └── shell_history.go │ │ ├── sys.go │ │ ├── theme.go │ │ ├── url.go │ │ ├── url_test.go │ │ ├── util.go │ │ ├── websearch.go │ │ └── wpm.go ├── resource │ ├── app.ico │ ├── app.png │ ├── lang │ │ ├── en_US.json │ │ ├── pt_BR.json │ │ ├── ru_RU.json │ │ └── zh_CN.json │ ├── others │ │ └── Everything64.dll │ ├── resource.go │ ├── script_plugin_templates │ │ ├── template.js │ │ ├── template.py │ │ └── template.sh │ └── ui │ │ └── themes │ │ ├── dark.json │ │ └── light.json ├── resource_windows.syso ├── setting │ ├── backup_restore.go │ ├── definition │ │ ├── definition.go │ │ ├── definition_checkbox.go │ │ ├── definition_dynamic.go │ │ ├── definition_head.go │ │ ├── definition_label.go │ │ ├── definition_newline.go │ │ ├── definition_select.go │ │ ├── definition_select_ai_model.go │ │ ├── definition_table.go │ │ └── definition_textbox.go │ ├── manager.go │ ├── mru.go │ ├── plugin_setting.go │ ├── store.go │ ├── validator │ │ ├── validator.go │ │ ├── validator_is_number.go │ │ └── validator_not_empty.go │ ├── value.go │ └── wox_setting.go ├── test │ ├── calculator_test.go │ ├── converter_test.go │ ├── plugin_test.go │ ├── setting_test.go │ ├── simple_test.go │ ├── test_base.go │ ├── test_config.go │ ├── test_environment_test.go │ ├── test_location.go │ ├── test_logger.go │ ├── test_runner.go │ └── time_test.go ├── ui │ ├── dto │ │ ├── plugin_dto.go │ │ ├── runtime_dto.go │ │ ├── setting_dto.go │ │ └── theme_dto.go │ ├── http.go │ ├── manager.go │ ├── position.go │ ├── router.go │ ├── store.go │ └── ui_impl.go ├── updater │ ├── updater.go │ ├── updater_darwin.go │ ├── updater_linux.go │ ├── updater_test.go │ ├── updater_windows.go │ └── version.go ├── util │ ├── airdrop │ │ ├── airdrop.go │ │ ├── airdrop_darwin.go │ │ └── airdrop_darwin.m │ ├── autostart │ │ ├── autostart.go │ │ ├── autostart_darwin.go │ │ ├── autostart_linux.go │ │ └── autostart_windows.go │ ├── clipboard │ │ ├── clipboad_test.go │ │ ├── clipboard.go │ │ ├── clipboard_darwin.go │ │ ├── clipboard_darwin.m │ │ ├── clipboard_linux.go │ │ └── clipboard_windows.go │ ├── context.go │ ├── debounce.go │ ├── deeplink.go │ ├── dev.go │ ├── directory.go │ ├── file.go │ ├── file_darwin.go │ ├── file_linux.go │ ├── file_watcher.go │ ├── file_windows.go │ ├── fileicon │ │ ├── fileicon.go │ │ ├── fileicon_darwin.go │ │ ├── fileicon_darwin.m │ │ ├── fileicon_linux.go │ │ └── fileicon_windows.go │ ├── goid.go │ ├── goroutine.go │ ├── hashmap.go │ ├── hotkey │ │ ├── hotkey.go │ │ ├── hotkey_darwin.go │ │ ├── hotkey_double.go │ │ ├── hotkey_linux.go │ │ └── hotkey_windows.go │ ├── http.go │ ├── ime │ │ ├── ime_darwin.go │ │ ├── ime_darwin.m │ │ ├── ime_linux.go │ │ └── ime_windows.go │ ├── keyboard │ │ ├── keyboard.go │ │ ├── keyboard_darwin.go │ │ ├── keyboard_linux.go │ │ └── keyboard_windows.go │ ├── locale │ │ └── locale.go │ ├── location.go │ ├── log.go │ ├── lumberjack.go │ ├── math.go │ ├── md5.go │ ├── menus │ │ ├── menus_darwin.go │ │ └── menus_darwin.m │ ├── nativecontextmenu │ │ ├── contextmenu_darwin.go │ │ ├── contextmenu_linux.go │ │ └── contextmenu_windows.go │ ├── net.go │ ├── notifier │ │ ├── notify.go │ │ ├── notify_darwin.go │ │ ├── notify_darwin.m │ │ ├── notify_linux.go │ │ ├── notify_windows.c │ │ └── notify_windows.go │ ├── os.go │ ├── permission │ │ ├── permission_darwin.go │ │ ├── permission_linux.go │ │ └── permission_windows.go │ ├── pinyin.go │ ├── pinyin_dict.go │ ├── regex.go │ ├── screen │ │ ├── screen.go │ │ ├── screen_darwin.go │ │ ├── screen_darwin.m │ │ ├── screen_linux.go │ │ └── screen_windows.go │ ├── selection │ │ ├── selection.go │ │ ├── selection_darwin.go │ │ ├── selection_darwin.m │ │ └── selection_other.go │ ├── shell │ │ ├── shell_darwin.go │ │ ├── shell_linux.go │ │ └── shell_windows.go │ ├── strings.go │ ├── strings_test.go │ ├── time.go │ ├── tray │ │ ├── tray.go │ │ ├── tray_darwin.go │ │ ├── tray_darwin.m │ │ ├── tray_linux.c │ │ ├── tray_linux.go │ │ ├── tray_windows.c │ │ └── tray_windows.go │ ├── websocket_client.go │ ├── window │ │ ├── window.go │ │ ├── window_darwin.go │ │ ├── window_darwin.m │ │ ├── window_explorer_darwin.go │ │ ├── window_explorer_other.go │ │ ├── window_explorer_windows.go │ │ ├── window_linux.go │ │ ├── window_windows.c │ │ └── window_windows.go │ └── zip.go └── versioninfo.json ├── wox.plugin.host.nodejs ├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc.json ├── Makefile ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src │ ├── index.ts │ ├── jsonrpc.ts │ ├── logger.ts │ ├── pluginAPI.ts │ ├── trace.ts │ └── types.ts └── tsconfig.json ├── wox.plugin.host.python ├── .python-version ├── Makefile ├── README.md ├── pyproject.toml ├── src │ └── wox_plugin_host │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── constants.py │ │ ├── host.py │ │ ├── jsonrpc.py │ │ ├── logger.py │ │ ├── plugin_api.py │ │ └── plugin_manager.py └── uv.lock ├── wox.plugin.nodejs ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc.json ├── Makefile ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src │ ├── context.ts │ ├── image.ts │ └── index.ts ├── tsconfig.json └── types │ ├── ai.d.ts │ ├── index.d.ts │ └── setting.d.ts ├── wox.plugin.python ├── .python-version ├── Makefile ├── README.md ├── pyproject.toml ├── src │ └── wox_plugin │ │ ├── __init__.py │ │ ├── api.py │ │ ├── models │ │ ├── ai.py │ │ ├── context.py │ │ ├── image.py │ │ ├── mru.py │ │ ├── preview.py │ │ ├── query.py │ │ ├── result.py │ │ └── setting.py │ │ ├── plugin.py │ │ └── py.typed └── uv.lock ├── wox.ui.flutter └── wox │ ├── .gitignore │ ├── .metadata │ ├── Makefile │ ├── README.md │ ├── analysis_options.yaml │ ├── assets │ └── fonts │ │ └── SF-Pro-Display-Regular.otf │ ├── lib │ ├── api │ │ └── wox_api.dart │ ├── components │ │ ├── plugin │ │ │ ├── wox_setting_plugin_checkbox_view.dart │ │ │ ├── wox_setting_plugin_head_view.dart │ │ │ ├── wox_setting_plugin_item_view.dart │ │ │ ├── wox_setting_plugin_label_view.dart │ │ │ ├── wox_setting_plugin_newline_view.dart │ │ │ ├── wox_setting_plugin_select_ai_model_view.dart │ │ │ ├── wox_setting_plugin_select_view.dart │ │ │ ├── wox_setting_plugin_table_update_view.dart │ │ │ ├── wox_setting_plugin_table_view.dart │ │ │ └── wox_setting_plugin_textbox_view.dart │ │ ├── wox_ai_chat_view.dart │ │ ├── wox_ai_model_selector_view.dart │ │ ├── wox_border_drag_move_view.dart │ │ ├── wox_button.dart │ │ ├── wox_chat_toolcall_duration.dart │ │ ├── wox_checkbox.dart │ │ ├── wox_checkbox_tile.dart │ │ ├── wox_drag_move_view.dart │ │ ├── wox_dropdown_button.dart │ │ ├── wox_form_action_view.dart │ │ ├── wox_grid_view.dart │ │ ├── wox_hotkey_recorder_view.dart │ │ ├── wox_hotkey_view.dart │ │ ├── wox_image_view.dart │ │ ├── wox_list_item_view.dart │ │ ├── wox_list_view.dart │ │ ├── wox_markdown.dart │ │ ├── wox_panel.dart │ │ ├── wox_path_finder.dart │ │ ├── wox_platform_focus.dart │ │ ├── wox_plugin_detail_view.dart │ │ ├── wox_preview_view.dart │ │ ├── wox_slider.dart │ │ ├── wox_switch.dart │ │ ├── wox_textfield.dart │ │ ├── wox_theme_icon_view.dart │ │ ├── wox_theme_preview.dart │ │ └── wox_tooltip_view.dart │ ├── controllers │ │ ├── query_box_text_editing_controller.dart │ │ ├── wox_ai_chat_controller.dart │ │ ├── wox_base_list_controller.dart │ │ ├── wox_grid_controller.dart │ │ ├── wox_launcher_controller.dart │ │ ├── wox_list_controller.dart │ │ └── wox_setting_controller.dart │ ├── entity │ │ ├── setting │ │ │ ├── wox_plugin_setting_checkbox.dart │ │ │ ├── wox_plugin_setting_head.dart │ │ │ ├── wox_plugin_setting_label.dart │ │ │ ├── wox_plugin_setting_newline.dart │ │ │ ├── wox_plugin_setting_select.dart │ │ │ ├── wox_plugin_setting_select_ai_model.dart │ │ │ ├── wox_plugin_setting_table.dart │ │ │ └── wox_plugin_setting_textbox.dart │ │ ├── validator │ │ │ ├── wox_setting_validator.dart │ │ │ ├── wox_setting_validator_is_number.dart │ │ │ └── wox_setting_validator_not_empty.dart │ │ ├── wox_ai.dart │ │ ├── wox_backup.dart │ │ ├── wox_double_hotkey.dart │ │ ├── wox_hotkey.dart │ │ ├── wox_image.dart │ │ ├── wox_lang.dart │ │ ├── wox_list_item.dart │ │ ├── wox_plugin.dart │ │ ├── wox_plugin_setting.dart │ │ ├── wox_preview.dart │ │ ├── wox_query.dart │ │ ├── wox_response.dart │ │ ├── wox_runtime_status.dart │ │ ├── wox_setting.dart │ │ ├── wox_theme.dart │ │ ├── wox_toolbar.dart │ │ └── wox_websocket_msg.dart │ ├── enums │ │ ├── wox_ai_conversation_role_enum.dart │ │ ├── wox_direction_enum.dart │ │ ├── wox_event_device_type_enum.dart │ │ ├── wox_image_type_enum.dart │ │ ├── wox_launch_mode_enum.dart │ │ ├── wox_list_view_type_enum.dart │ │ ├── wox_msg_method_enum.dart │ │ ├── wox_msg_type_enum.dart │ │ ├── wox_plugin_runtime_enum.dart │ │ ├── wox_position_type_enum.dart │ │ ├── wox_preview_scroll_position_enum.dart │ │ ├── wox_preview_type_enum.dart │ │ ├── wox_query_type_enum.dart │ │ ├── wox_result_tail_type_enum.dart │ │ ├── wox_selection_type_enum.dart │ │ └── wox_start_page_enum.dart │ ├── main.dart │ ├── models │ │ └── doctor_check_result.dart │ ├── modules │ │ ├── launcher │ │ │ └── views │ │ │ │ ├── wox_launcher_view.dart │ │ │ │ ├── wox_query_box_view.dart │ │ │ │ ├── wox_query_result_view.dart │ │ │ │ └── wox_query_toolbar_view.dart │ │ └── setting │ │ │ └── views │ │ │ ├── wox_setting_about_view.dart │ │ │ ├── wox_setting_ai_view.dart │ │ │ ├── wox_setting_base.dart │ │ │ ├── wox_setting_data_view.dart │ │ │ ├── wox_setting_general_view.dart │ │ │ ├── wox_setting_network_view.dart │ │ │ ├── wox_setting_plugin_view.dart │ │ │ ├── wox_setting_runtime_view.dart │ │ │ ├── wox_setting_theme_view.dart │ │ │ ├── wox_setting_ui_view.dart │ │ │ └── wox_setting_view.dart │ └── utils │ │ ├── color_util.dart │ │ ├── colors.dart │ │ ├── consts.dart │ │ ├── entity_factory.dart │ │ ├── env.dart │ │ ├── heartbeat_checker.dart │ │ ├── log.dart │ │ ├── picker.dart │ │ ├── strings.dart │ │ ├── window_flicker_detector.dart │ │ ├── windows │ │ ├── base_window_manager.dart │ │ ├── linux_window_manager.dart │ │ ├── macos_window_manager.dart │ │ ├── window_manager.dart │ │ ├── window_manager_interface.dart │ │ └── windows_window_manager.dart │ │ ├── wox_http_util.dart │ │ ├── wox_setting_util.dart │ │ ├── wox_theme_util.dart │ │ └── wox_websocket_msg_util.dart │ ├── linux │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ └── runner │ │ ├── CMakeLists.txt │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ ├── .gitignore │ ├── Flutter │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ └── RunnerTests │ │ └── RunnerTests.swift │ ├── pubspec.lock │ ├── pubspec.yaml │ └── windows │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake │ └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── www ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── components │ │ ├── PluginGallery.vue │ │ └── ThemeGallery.vue │ │ ├── index.ts │ │ └── style.css ├── data │ └── images │ │ ├── ai_auto_git_msg.png │ │ ├── ai_auto_git_msg_setting.png │ │ ├── ai_setting.png │ │ ├── ai_theme.jpg │ │ ├── app.png │ │ └── popclip.png ├── development │ ├── architecture.md │ ├── contributing.md │ ├── plugins │ │ ├── full-featured-plugin.md │ │ ├── overview.md │ │ ├── query-model.md │ │ ├── script-plugin.md │ │ └── specification.md │ └── setup.md ├── guide │ ├── ai │ │ ├── commands.md │ │ ├── settings.md │ │ └── theme.md │ ├── faq.md │ ├── installation.md │ ├── introduction.md │ └── usage │ │ ├── action-panel.md │ │ ├── deep-link.md │ │ └── querying.md ├── index.md ├── public │ └── images │ │ ├── ai_auto_git_msg.png │ │ ├── ai_auto_git_msg_setting.png │ │ ├── ai_setting.png │ │ ├── ai_theme.jpg │ │ ├── app.png │ │ └── popclip.png ├── store │ ├── plugins.md │ └── themes.md └── zh │ ├── development │ ├── architecture.md │ ├── contributing.md │ ├── plugins │ │ ├── full-featured-plugin.md │ │ ├── overview.md │ │ ├── query-model.md │ │ ├── script-plugin.md │ │ └── specification.md │ └── setup.md │ ├── guide │ ├── ai │ │ ├── commands.md │ │ ├── settings.md │ │ └── theme.md │ ├── faq.md │ ├── installation.md │ ├── introduction.md │ └── usage │ │ ├── action-panel.md │ │ ├── deep-link.md │ │ └── querying.md │ ├── index.md │ └── store │ ├── plugins.md │ └── themes.md ├── package.json └── pnpm-lock.yaml /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | max_line_length = 180 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/instructions/coding-standards.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/instructions/coding-standards.instructions.md -------------------------------------------------------------------------------- /.github/instructions/commit-message-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/instructions/commit-message-instructions.md -------------------------------------------------------------------------------- /.github/instructions/flutter-ui-guide.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/instructions/flutter-ui-guide.instructions.md -------------------------------------------------------------------------------- /.github/instructions/python-plugin-guide.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/instructions/python-plugin-guide.instructions.md -------------------------------------------------------------------------------- /.github/instructions/wox-core-standards.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/instructions/wox-core-standards.instructions.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.github/workflows/plugin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/README.md -------------------------------------------------------------------------------- /Wox.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/Wox.code-workspace -------------------------------------------------------------------------------- /assets/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/assets/app.ico -------------------------------------------------------------------------------- /assets/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/assets/app.png -------------------------------------------------------------------------------- /assets/app.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/assets/app.psd -------------------------------------------------------------------------------- /assets/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/assets/mac/Info.plist -------------------------------------------------------------------------------- /assets/mac/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/assets/mac/app.icns -------------------------------------------------------------------------------- /ci/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/ci/go.mod -------------------------------------------------------------------------------- /ci/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/ci/go.sum -------------------------------------------------------------------------------- /ci/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/ci/plugin.go -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/screenshots/README.md -------------------------------------------------------------------------------- /screenshots/ai_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/screenshots/ai_chat.png -------------------------------------------------------------------------------- /screenshots/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/screenshots/app.png -------------------------------------------------------------------------------- /screenshots/fallback_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/screenshots/fallback_search.png -------------------------------------------------------------------------------- /screenshots/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/screenshots/setting.png -------------------------------------------------------------------------------- /store-ai-command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/store-ai-command.json -------------------------------------------------------------------------------- /store-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/store-plugin.json -------------------------------------------------------------------------------- /store-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/store-theme.json -------------------------------------------------------------------------------- /updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/updater.json -------------------------------------------------------------------------------- /wox.core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/Makefile -------------------------------------------------------------------------------- /wox.core/ai/mcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/mcp.go -------------------------------------------------------------------------------- /wox.core/ai/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider.go -------------------------------------------------------------------------------- /wox.core/ai/provider_google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider_google.go -------------------------------------------------------------------------------- /wox.core/ai/provider_groq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider_groq.go -------------------------------------------------------------------------------- /wox.core/ai/provider_ollama.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider_ollama.go -------------------------------------------------------------------------------- /wox.core/ai/provider_openai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider_openai.go -------------------------------------------------------------------------------- /wox.core/ai/provider_openai_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider_openai_base.go -------------------------------------------------------------------------------- /wox.core/ai/provider_openrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider_openrouter.go -------------------------------------------------------------------------------- /wox.core/ai/provider_siliconflow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ai/provider_siliconflow.go -------------------------------------------------------------------------------- /wox.core/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/common/README.md -------------------------------------------------------------------------------- /wox.core/common/ai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/common/ai.go -------------------------------------------------------------------------------- /wox.core/common/icons.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/common/icons.go -------------------------------------------------------------------------------- /wox.core/common/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/common/image.go -------------------------------------------------------------------------------- /wox.core/common/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/common/image_test.go -------------------------------------------------------------------------------- /wox.core/common/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/common/theme.go -------------------------------------------------------------------------------- /wox.core/common/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/common/ui.go -------------------------------------------------------------------------------- /wox.core/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/database/database.go -------------------------------------------------------------------------------- /wox.core/database/toolbar_mute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/database/toolbar_mute.go -------------------------------------------------------------------------------- /wox.core/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/go.mod -------------------------------------------------------------------------------- /wox.core/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/go.sum -------------------------------------------------------------------------------- /wox.core/i18n/lang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/i18n/lang.go -------------------------------------------------------------------------------- /wox.core/i18n/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/i18n/manager.go -------------------------------------------------------------------------------- /wox.core/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/main.go -------------------------------------------------------------------------------- /wox.core/migration/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/migration/migrator.go -------------------------------------------------------------------------------- /wox.core/plugin/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/api.go -------------------------------------------------------------------------------- /wox.core/plugin/doctor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/doctor.go -------------------------------------------------------------------------------- /wox.core/plugin/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/host.go -------------------------------------------------------------------------------- /wox.core/plugin/host/host_nodejs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/host/host_nodejs.go -------------------------------------------------------------------------------- /wox.core/plugin/host/host_python.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/host/host_python.go -------------------------------------------------------------------------------- /wox.core/plugin/host/host_script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/host/host_script.go -------------------------------------------------------------------------------- /wox.core/plugin/host/host_websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/host/host_websocket.go -------------------------------------------------------------------------------- /wox.core/plugin/host/host_websocket_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/host/host_websocket_plugin.go -------------------------------------------------------------------------------- /wox.core/plugin/host/jsonrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/host/jsonrpc.go -------------------------------------------------------------------------------- /wox.core/plugin/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/instance.go -------------------------------------------------------------------------------- /wox.core/plugin/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/manager.go -------------------------------------------------------------------------------- /wox.core/plugin/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/manager_test.go -------------------------------------------------------------------------------- /wox.core/plugin/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/metadata.go -------------------------------------------------------------------------------- /wox.core/plugin/mru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/mru.go -------------------------------------------------------------------------------- /wox.core/plugin/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/os.go -------------------------------------------------------------------------------- /wox.core/plugin/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/platform.go -------------------------------------------------------------------------------- /wox.core/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/plugin.go -------------------------------------------------------------------------------- /wox.core/plugin/preview.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/preview.go -------------------------------------------------------------------------------- /wox.core/plugin/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/query.go -------------------------------------------------------------------------------- /wox.core/plugin/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/query_test.go -------------------------------------------------------------------------------- /wox.core/plugin/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/runtime.go -------------------------------------------------------------------------------- /wox.core/plugin/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/store.go -------------------------------------------------------------------------------- /wox.core/plugin/system/ai_command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/ai_command.go -------------------------------------------------------------------------------- /wox.core/plugin/system/ai_command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/ai_command_test.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/app.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/app_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/app_darwin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/app_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/app_darwin.m -------------------------------------------------------------------------------- /wox.core/plugin/system/app/app_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/app_darwin_test.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/app_icons_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/app_icons_darwin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/app_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/app_linux.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/app_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/app_windows.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/retriever.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/retriever.go -------------------------------------------------------------------------------- /wox.core/plugin/system/app/shortcut_resolver_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/app/shortcut_resolver_windows.go -------------------------------------------------------------------------------- /wox.core/plugin/system/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/backup.go -------------------------------------------------------------------------------- /wox.core/plugin/system/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/browser.go -------------------------------------------------------------------------------- /wox.core/plugin/system/browser_bookmark.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/browser_bookmark.go -------------------------------------------------------------------------------- /wox.core/plugin/system/browser_bookmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/browser_bookmark_test.go -------------------------------------------------------------------------------- /wox.core/plugin/system/calculator/README.md: -------------------------------------------------------------------------------- 1 | Based on https://github.com/mnogu/go-calculator 2 | -------------------------------------------------------------------------------- /wox.core/plugin/system/calculator/calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/calculator/calculator.go -------------------------------------------------------------------------------- /wox.core/plugin/system/calculator/calculator_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/calculator/calculator_plugin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/calculator/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/calculator/parser.go -------------------------------------------------------------------------------- /wox.core/plugin/system/calculator/tokenizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/calculator/tokenizer.go -------------------------------------------------------------------------------- /wox.core/plugin/system/calculator/tokenizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/calculator/tokenizer_test.go -------------------------------------------------------------------------------- /wox.core/plugin/system/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/chat.go -------------------------------------------------------------------------------- /wox.core/plugin/system/clipboard/clipboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/clipboard/clipboard.go -------------------------------------------------------------------------------- /wox.core/plugin/system/clipboard/clipboard_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/clipboard/clipboard_db.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/converter.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/core/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/core/registry.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/core/tokenizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/core/tokenizer.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/modules/base_regex_module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/modules/base_regex_module.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/modules/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/modules/crypto.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/modules/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/modules/crypto_test.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/modules/currency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/modules/currency.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/modules/currency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/modules/currency_test.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/modules/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/modules/math.go -------------------------------------------------------------------------------- /wox.core/plugin/system/converter/modules/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/converter/modules/time.go -------------------------------------------------------------------------------- /wox.core/plugin/system/doctor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/doctor.go -------------------------------------------------------------------------------- /wox.core/plugin/system/emoji/emoji-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/emoji/emoji-data.json -------------------------------------------------------------------------------- /wox.core/plugin/system/emoji/emoji.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/emoji/emoji.go -------------------------------------------------------------------------------- /wox.core/plugin/system/emoji/emoji_image_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/emoji/emoji_image_darwin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/emoji/emoji_image_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/emoji/emoji_image_other.go -------------------------------------------------------------------------------- /wox.core/plugin/system/emoji/emoji_image_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/emoji/emoji_image_windows.go -------------------------------------------------------------------------------- /wox.core/plugin/system/file/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/file/plugin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/file/searcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/file/searcher.go -------------------------------------------------------------------------------- /wox.core/plugin/system/file/searcher_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/file/searcher_darwin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/file/searcher_everything_sdk_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/file/searcher_everything_sdk_windows.go -------------------------------------------------------------------------------- /wox.core/plugin/system/file/searcher_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/file/searcher_linux.go -------------------------------------------------------------------------------- /wox.core/plugin/system/file/searcher_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/file/searcher_windows.go -------------------------------------------------------------------------------- /wox.core/plugin/system/indicator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/indicator.go -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/mediaplayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/mediaplayer.go -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/mediaplayer_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/mediaplayer_darwin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/mediaplayer_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/mediaplayer_linux.go -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/mediaplayer_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/mediaplayer_windows.go -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/retriever.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/retriever.go -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/woxmr/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/woxmr/Makefile.PL -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/woxmr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/woxmr/README.md -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/woxmr/WoxMR.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/woxmr/WoxMR.pm -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/woxmr/WoxMR.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/woxmr/WoxMR.xs -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/woxmr/adapter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/woxmr/adapter.pl -------------------------------------------------------------------------------- /wox.core/plugin/system/mediaplayer/woxmr/wox_mr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/mediaplayer/woxmr/wox_mr.m -------------------------------------------------------------------------------- /wox.core/plugin/system/menus_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/menus_darwin.go -------------------------------------------------------------------------------- /wox.core/plugin/system/plugin_installer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/plugin_installer.go -------------------------------------------------------------------------------- /wox.core/plugin/system/query_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/query_history.go -------------------------------------------------------------------------------- /wox.core/plugin/system/selection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/selection.go -------------------------------------------------------------------------------- /wox.core/plugin/system/shell/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/shell/shell.go -------------------------------------------------------------------------------- /wox.core/plugin/system/shell/shell_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/shell/shell_history.go -------------------------------------------------------------------------------- /wox.core/plugin/system/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/sys.go -------------------------------------------------------------------------------- /wox.core/plugin/system/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/theme.go -------------------------------------------------------------------------------- /wox.core/plugin/system/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/url.go -------------------------------------------------------------------------------- /wox.core/plugin/system/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/url_test.go -------------------------------------------------------------------------------- /wox.core/plugin/system/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/util.go -------------------------------------------------------------------------------- /wox.core/plugin/system/websearch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/websearch.go -------------------------------------------------------------------------------- /wox.core/plugin/system/wpm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/plugin/system/wpm.go -------------------------------------------------------------------------------- /wox.core/resource/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/app.ico -------------------------------------------------------------------------------- /wox.core/resource/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/app.png -------------------------------------------------------------------------------- /wox.core/resource/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/lang/en_US.json -------------------------------------------------------------------------------- /wox.core/resource/lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/lang/pt_BR.json -------------------------------------------------------------------------------- /wox.core/resource/lang/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/lang/ru_RU.json -------------------------------------------------------------------------------- /wox.core/resource/lang/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/lang/zh_CN.json -------------------------------------------------------------------------------- /wox.core/resource/others/Everything64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/others/Everything64.dll -------------------------------------------------------------------------------- /wox.core/resource/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/resource.go -------------------------------------------------------------------------------- /wox.core/resource/script_plugin_templates/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/script_plugin_templates/template.js -------------------------------------------------------------------------------- /wox.core/resource/script_plugin_templates/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/script_plugin_templates/template.py -------------------------------------------------------------------------------- /wox.core/resource/script_plugin_templates/template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/script_plugin_templates/template.sh -------------------------------------------------------------------------------- /wox.core/resource/ui/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/ui/themes/dark.json -------------------------------------------------------------------------------- /wox.core/resource/ui/themes/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource/ui/themes/light.json -------------------------------------------------------------------------------- /wox.core/resource_windows.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/resource_windows.syso -------------------------------------------------------------------------------- /wox.core/setting/backup_restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/backup_restore.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_checkbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_checkbox.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_dynamic.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_head.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_head.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_label.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_newline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_newline.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_select.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_select_ai_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_select_ai_model.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_table.go -------------------------------------------------------------------------------- /wox.core/setting/definition/definition_textbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/definition/definition_textbox.go -------------------------------------------------------------------------------- /wox.core/setting/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/manager.go -------------------------------------------------------------------------------- /wox.core/setting/mru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/mru.go -------------------------------------------------------------------------------- /wox.core/setting/plugin_setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/plugin_setting.go -------------------------------------------------------------------------------- /wox.core/setting/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/store.go -------------------------------------------------------------------------------- /wox.core/setting/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/validator/validator.go -------------------------------------------------------------------------------- /wox.core/setting/validator/validator_is_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/validator/validator_is_number.go -------------------------------------------------------------------------------- /wox.core/setting/validator/validator_not_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/validator/validator_not_empty.go -------------------------------------------------------------------------------- /wox.core/setting/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/value.go -------------------------------------------------------------------------------- /wox.core/setting/wox_setting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/setting/wox_setting.go -------------------------------------------------------------------------------- /wox.core/test/calculator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/calculator_test.go -------------------------------------------------------------------------------- /wox.core/test/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/converter_test.go -------------------------------------------------------------------------------- /wox.core/test/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/plugin_test.go -------------------------------------------------------------------------------- /wox.core/test/setting_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/setting_test.go -------------------------------------------------------------------------------- /wox.core/test/simple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/simple_test.go -------------------------------------------------------------------------------- /wox.core/test/test_base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/test_base.go -------------------------------------------------------------------------------- /wox.core/test/test_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/test_config.go -------------------------------------------------------------------------------- /wox.core/test/test_environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/test_environment_test.go -------------------------------------------------------------------------------- /wox.core/test/test_location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/test_location.go -------------------------------------------------------------------------------- /wox.core/test/test_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/test_logger.go -------------------------------------------------------------------------------- /wox.core/test/test_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/test_runner.go -------------------------------------------------------------------------------- /wox.core/test/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/test/time_test.go -------------------------------------------------------------------------------- /wox.core/ui/dto/plugin_dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/dto/plugin_dto.go -------------------------------------------------------------------------------- /wox.core/ui/dto/runtime_dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/dto/runtime_dto.go -------------------------------------------------------------------------------- /wox.core/ui/dto/setting_dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/dto/setting_dto.go -------------------------------------------------------------------------------- /wox.core/ui/dto/theme_dto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/dto/theme_dto.go -------------------------------------------------------------------------------- /wox.core/ui/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/http.go -------------------------------------------------------------------------------- /wox.core/ui/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/manager.go -------------------------------------------------------------------------------- /wox.core/ui/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/position.go -------------------------------------------------------------------------------- /wox.core/ui/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/router.go -------------------------------------------------------------------------------- /wox.core/ui/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/store.go -------------------------------------------------------------------------------- /wox.core/ui/ui_impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/ui/ui_impl.go -------------------------------------------------------------------------------- /wox.core/updater/updater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/updater/updater.go -------------------------------------------------------------------------------- /wox.core/updater/updater_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/updater/updater_darwin.go -------------------------------------------------------------------------------- /wox.core/updater/updater_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/updater/updater_linux.go -------------------------------------------------------------------------------- /wox.core/updater/updater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/updater/updater_test.go -------------------------------------------------------------------------------- /wox.core/updater/updater_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/updater/updater_windows.go -------------------------------------------------------------------------------- /wox.core/updater/version.go: -------------------------------------------------------------------------------- 1 | package updater 2 | 3 | const CURRENT_VERSION = "2.0.0-beta.6" 4 | -------------------------------------------------------------------------------- /wox.core/util/airdrop/airdrop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/airdrop/airdrop.go -------------------------------------------------------------------------------- /wox.core/util/airdrop/airdrop_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/airdrop/airdrop_darwin.go -------------------------------------------------------------------------------- /wox.core/util/airdrop/airdrop_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/airdrop/airdrop_darwin.m -------------------------------------------------------------------------------- /wox.core/util/autostart/autostart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/autostart/autostart.go -------------------------------------------------------------------------------- /wox.core/util/autostart/autostart_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/autostart/autostart_darwin.go -------------------------------------------------------------------------------- /wox.core/util/autostart/autostart_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/autostart/autostart_linux.go -------------------------------------------------------------------------------- /wox.core/util/autostart/autostart_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/autostart/autostart_windows.go -------------------------------------------------------------------------------- /wox.core/util/clipboard/clipboad_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/clipboard/clipboad_test.go -------------------------------------------------------------------------------- /wox.core/util/clipboard/clipboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/clipboard/clipboard.go -------------------------------------------------------------------------------- /wox.core/util/clipboard/clipboard_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/clipboard/clipboard_darwin.go -------------------------------------------------------------------------------- /wox.core/util/clipboard/clipboard_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/clipboard/clipboard_darwin.m -------------------------------------------------------------------------------- /wox.core/util/clipboard/clipboard_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/clipboard/clipboard_linux.go -------------------------------------------------------------------------------- /wox.core/util/clipboard/clipboard_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/clipboard/clipboard_windows.go -------------------------------------------------------------------------------- /wox.core/util/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/context.go -------------------------------------------------------------------------------- /wox.core/util/debounce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/debounce.go -------------------------------------------------------------------------------- /wox.core/util/deeplink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/deeplink.go -------------------------------------------------------------------------------- /wox.core/util/dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/dev.go -------------------------------------------------------------------------------- /wox.core/util/directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/directory.go -------------------------------------------------------------------------------- /wox.core/util/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/file.go -------------------------------------------------------------------------------- /wox.core/util/file_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/file_darwin.go -------------------------------------------------------------------------------- /wox.core/util/file_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/file_linux.go -------------------------------------------------------------------------------- /wox.core/util/file_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/file_watcher.go -------------------------------------------------------------------------------- /wox.core/util/file_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/file_windows.go -------------------------------------------------------------------------------- /wox.core/util/fileicon/fileicon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/fileicon/fileicon.go -------------------------------------------------------------------------------- /wox.core/util/fileicon/fileicon_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/fileicon/fileicon_darwin.go -------------------------------------------------------------------------------- /wox.core/util/fileicon/fileicon_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/fileicon/fileicon_darwin.m -------------------------------------------------------------------------------- /wox.core/util/fileicon/fileicon_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/fileicon/fileicon_linux.go -------------------------------------------------------------------------------- /wox.core/util/fileicon/fileicon_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/fileicon/fileicon_windows.go -------------------------------------------------------------------------------- /wox.core/util/goid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/goid.go -------------------------------------------------------------------------------- /wox.core/util/goroutine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/goroutine.go -------------------------------------------------------------------------------- /wox.core/util/hashmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/hashmap.go -------------------------------------------------------------------------------- /wox.core/util/hotkey/hotkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/hotkey/hotkey.go -------------------------------------------------------------------------------- /wox.core/util/hotkey/hotkey_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/hotkey/hotkey_darwin.go -------------------------------------------------------------------------------- /wox.core/util/hotkey/hotkey_double.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/hotkey/hotkey_double.go -------------------------------------------------------------------------------- /wox.core/util/hotkey/hotkey_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/hotkey/hotkey_linux.go -------------------------------------------------------------------------------- /wox.core/util/hotkey/hotkey_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/hotkey/hotkey_windows.go -------------------------------------------------------------------------------- /wox.core/util/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/http.go -------------------------------------------------------------------------------- /wox.core/util/ime/ime_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/ime/ime_darwin.go -------------------------------------------------------------------------------- /wox.core/util/ime/ime_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/ime/ime_darwin.m -------------------------------------------------------------------------------- /wox.core/util/ime/ime_linux.go: -------------------------------------------------------------------------------- 1 | package ime 2 | 3 | func SwitchInputMethodABC() error { 4 | return nil 5 | } 6 | -------------------------------------------------------------------------------- /wox.core/util/ime/ime_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/ime/ime_windows.go -------------------------------------------------------------------------------- /wox.core/util/keyboard/keyboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/keyboard/keyboard.go -------------------------------------------------------------------------------- /wox.core/util/keyboard/keyboard_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/keyboard/keyboard_darwin.go -------------------------------------------------------------------------------- /wox.core/util/keyboard/keyboard_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/keyboard/keyboard_linux.go -------------------------------------------------------------------------------- /wox.core/util/keyboard/keyboard_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/keyboard/keyboard_windows.go -------------------------------------------------------------------------------- /wox.core/util/locale/locale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/locale/locale.go -------------------------------------------------------------------------------- /wox.core/util/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/location.go -------------------------------------------------------------------------------- /wox.core/util/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/log.go -------------------------------------------------------------------------------- /wox.core/util/lumberjack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/lumberjack.go -------------------------------------------------------------------------------- /wox.core/util/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/math.go -------------------------------------------------------------------------------- /wox.core/util/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/md5.go -------------------------------------------------------------------------------- /wox.core/util/menus/menus_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/menus/menus_darwin.go -------------------------------------------------------------------------------- /wox.core/util/menus/menus_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/menus/menus_darwin.m -------------------------------------------------------------------------------- /wox.core/util/nativecontextmenu/contextmenu_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/nativecontextmenu/contextmenu_darwin.go -------------------------------------------------------------------------------- /wox.core/util/nativecontextmenu/contextmenu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/nativecontextmenu/contextmenu_linux.go -------------------------------------------------------------------------------- /wox.core/util/nativecontextmenu/contextmenu_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/nativecontextmenu/contextmenu_windows.go -------------------------------------------------------------------------------- /wox.core/util/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/net.go -------------------------------------------------------------------------------- /wox.core/util/notifier/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/notifier/notify.go -------------------------------------------------------------------------------- /wox.core/util/notifier/notify_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/notifier/notify_darwin.go -------------------------------------------------------------------------------- /wox.core/util/notifier/notify_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/notifier/notify_darwin.m -------------------------------------------------------------------------------- /wox.core/util/notifier/notify_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/notifier/notify_linux.go -------------------------------------------------------------------------------- /wox.core/util/notifier/notify_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/notifier/notify_windows.c -------------------------------------------------------------------------------- /wox.core/util/notifier/notify_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/notifier/notify_windows.go -------------------------------------------------------------------------------- /wox.core/util/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/os.go -------------------------------------------------------------------------------- /wox.core/util/permission/permission_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/permission/permission_darwin.go -------------------------------------------------------------------------------- /wox.core/util/permission/permission_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/permission/permission_linux.go -------------------------------------------------------------------------------- /wox.core/util/permission/permission_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/permission/permission_windows.go -------------------------------------------------------------------------------- /wox.core/util/pinyin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/pinyin.go -------------------------------------------------------------------------------- /wox.core/util/pinyin_dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/pinyin_dict.go -------------------------------------------------------------------------------- /wox.core/util/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/regex.go -------------------------------------------------------------------------------- /wox.core/util/screen/screen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/screen/screen.go -------------------------------------------------------------------------------- /wox.core/util/screen/screen_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/screen/screen_darwin.go -------------------------------------------------------------------------------- /wox.core/util/screen/screen_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/screen/screen_darwin.m -------------------------------------------------------------------------------- /wox.core/util/screen/screen_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/screen/screen_linux.go -------------------------------------------------------------------------------- /wox.core/util/screen/screen_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/screen/screen_windows.go -------------------------------------------------------------------------------- /wox.core/util/selection/selection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/selection/selection.go -------------------------------------------------------------------------------- /wox.core/util/selection/selection_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/selection/selection_darwin.go -------------------------------------------------------------------------------- /wox.core/util/selection/selection_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/selection/selection_darwin.m -------------------------------------------------------------------------------- /wox.core/util/selection/selection_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/selection/selection_other.go -------------------------------------------------------------------------------- /wox.core/util/shell/shell_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/shell/shell_darwin.go -------------------------------------------------------------------------------- /wox.core/util/shell/shell_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/shell/shell_linux.go -------------------------------------------------------------------------------- /wox.core/util/shell/shell_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/shell/shell_windows.go -------------------------------------------------------------------------------- /wox.core/util/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/strings.go -------------------------------------------------------------------------------- /wox.core/util/strings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/strings_test.go -------------------------------------------------------------------------------- /wox.core/util/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/time.go -------------------------------------------------------------------------------- /wox.core/util/tray/tray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/tray/tray.go -------------------------------------------------------------------------------- /wox.core/util/tray/tray_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/tray/tray_darwin.go -------------------------------------------------------------------------------- /wox.core/util/tray/tray_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/tray/tray_darwin.m -------------------------------------------------------------------------------- /wox.core/util/tray/tray_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/tray/tray_linux.c -------------------------------------------------------------------------------- /wox.core/util/tray/tray_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/tray/tray_linux.go -------------------------------------------------------------------------------- /wox.core/util/tray/tray_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/tray/tray_windows.c -------------------------------------------------------------------------------- /wox.core/util/tray/tray_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/tray/tray_windows.go -------------------------------------------------------------------------------- /wox.core/util/websocket_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/websocket_client.go -------------------------------------------------------------------------------- /wox.core/util/window/window.go: -------------------------------------------------------------------------------- 1 | package window 2 | -------------------------------------------------------------------------------- /wox.core/util/window/window_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_darwin.go -------------------------------------------------------------------------------- /wox.core/util/window/window_darwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_darwin.m -------------------------------------------------------------------------------- /wox.core/util/window/window_explorer_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_explorer_darwin.go -------------------------------------------------------------------------------- /wox.core/util/window/window_explorer_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_explorer_other.go -------------------------------------------------------------------------------- /wox.core/util/window/window_explorer_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_explorer_windows.go -------------------------------------------------------------------------------- /wox.core/util/window/window_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_linux.go -------------------------------------------------------------------------------- /wox.core/util/window/window_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_windows.c -------------------------------------------------------------------------------- /wox.core/util/window/window_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/window/window_windows.go -------------------------------------------------------------------------------- /wox.core/util/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/util/zip.go -------------------------------------------------------------------------------- /wox.core/versioninfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.core/versioninfo.json -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/.babelrc -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/.eslintrc -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/.gitignore -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/.prettierrc.json -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/Makefile -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/README.md: -------------------------------------------------------------------------------- 1 | Wox Nodejs Host -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/package.json -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/pnpm-lock.yaml -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/src/index.ts -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/src/jsonrpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/src/jsonrpc.ts -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/src/logger.ts -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/src/pluginAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/src/pluginAPI.ts -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/src/trace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/src/trace.ts -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/src/types.ts -------------------------------------------------------------------------------- /wox.plugin.host.nodejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.nodejs/tsconfig.json -------------------------------------------------------------------------------- /wox.plugin.host.python/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 -------------------------------------------------------------------------------- /wox.plugin.host.python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/Makefile -------------------------------------------------------------------------------- /wox.plugin.host.python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/README.md -------------------------------------------------------------------------------- /wox.plugin.host.python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/pyproject.toml -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/__init__.py -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/__main__.py -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/constants.py -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/host.py -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/jsonrpc.py -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/logger.py -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/plugin_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/plugin_api.py -------------------------------------------------------------------------------- /wox.plugin.host.python/src/wox_plugin_host/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/src/wox_plugin_host/plugin_manager.py -------------------------------------------------------------------------------- /wox.plugin.host.python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.host.python/uv.lock -------------------------------------------------------------------------------- /wox.plugin.nodejs/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /wox.plugin.nodejs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/.eslintrc -------------------------------------------------------------------------------- /wox.plugin.nodejs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/.gitignore -------------------------------------------------------------------------------- /wox.plugin.nodejs/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/.prettierrc.json -------------------------------------------------------------------------------- /wox.plugin.nodejs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/Makefile -------------------------------------------------------------------------------- /wox.plugin.nodejs/README.md: -------------------------------------------------------------------------------- 1 | Nodejs Type Definition for Wox Plugin -------------------------------------------------------------------------------- /wox.plugin.nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/package.json -------------------------------------------------------------------------------- /wox.plugin.nodejs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/pnpm-lock.yaml -------------------------------------------------------------------------------- /wox.plugin.nodejs/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/src/context.ts -------------------------------------------------------------------------------- /wox.plugin.nodejs/src/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/src/image.ts -------------------------------------------------------------------------------- /wox.plugin.nodejs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/src/index.ts -------------------------------------------------------------------------------- /wox.plugin.nodejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/tsconfig.json -------------------------------------------------------------------------------- /wox.plugin.nodejs/types/ai.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/types/ai.d.ts -------------------------------------------------------------------------------- /wox.plugin.nodejs/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/types/index.d.ts -------------------------------------------------------------------------------- /wox.plugin.nodejs/types/setting.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.nodejs/types/setting.d.ts -------------------------------------------------------------------------------- /wox.plugin.python/.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /wox.plugin.python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/Makefile -------------------------------------------------------------------------------- /wox.plugin.python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/README.md -------------------------------------------------------------------------------- /wox.plugin.python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/pyproject.toml -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/__init__.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/api.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/ai.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/context.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/image.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/mru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/mru.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/preview.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/query.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/result.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/models/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/models/setting.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/plugin.py -------------------------------------------------------------------------------- /wox.plugin.python/src/wox_plugin/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/src/wox_plugin/py.typed -------------------------------------------------------------------------------- /wox.plugin.python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.plugin.python/uv.lock -------------------------------------------------------------------------------- /wox.ui.flutter/wox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/.gitignore -------------------------------------------------------------------------------- /wox.ui.flutter/wox/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/.metadata -------------------------------------------------------------------------------- /wox.ui.flutter/wox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/Makefile -------------------------------------------------------------------------------- /wox.ui.flutter/wox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/README.md -------------------------------------------------------------------------------- /wox.ui.flutter/wox/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/analysis_options.yaml -------------------------------------------------------------------------------- /wox.ui.flutter/wox/assets/fonts/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/assets/fonts/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/api/wox_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/api/wox_api.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_checkbox_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_checkbox_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_head_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_head_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_item_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_label_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_label_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_newline_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_newline_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_select_ai_model_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_select_ai_model_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_select_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_select_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_table_update_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_table_update_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_table_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_table_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_textbox_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/plugin/wox_setting_plugin_textbox_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_ai_chat_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_ai_chat_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_ai_model_selector_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_ai_model_selector_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_border_drag_move_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_border_drag_move_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_button.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_chat_toolcall_duration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_chat_toolcall_duration.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_checkbox.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_checkbox_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_checkbox_tile.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_drag_move_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_drag_move_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_dropdown_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_dropdown_button.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_form_action_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_form_action_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_grid_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_hotkey_recorder_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_hotkey_recorder_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_hotkey_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_hotkey_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_image_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_image_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_list_item_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_list_item_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_list_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_markdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_markdown.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_panel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_panel.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_path_finder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_path_finder.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_platform_focus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_platform_focus.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_plugin_detail_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_plugin_detail_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_preview_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_preview_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_slider.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_switch.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_textfield.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_textfield.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_theme_icon_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_theme_icon_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_theme_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_theme_preview.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/components/wox_tooltip_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/components/wox_tooltip_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/controllers/query_box_text_editing_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/controllers/query_box_text_editing_controller.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/controllers/wox_ai_chat_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/controllers/wox_ai_chat_controller.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/controllers/wox_base_list_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/controllers/wox_base_list_controller.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/controllers/wox_grid_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/controllers/wox_grid_controller.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/controllers/wox_launcher_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/controllers/wox_launcher_controller.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/controllers/wox_list_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/controllers/wox_list_controller.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/controllers/wox_setting_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/controllers/wox_setting_controller.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_checkbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_checkbox.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_head.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_head.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_label.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_label.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_newline.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_newline.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_select.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_select.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_select_ai_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_select_ai_model.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_table.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_textbox.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/setting/wox_plugin_setting_textbox.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/validator/wox_setting_validator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/validator/wox_setting_validator.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/validator/wox_setting_validator_is_number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/validator/wox_setting_validator_is_number.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/validator/wox_setting_validator_not_empty.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/validator/wox_setting_validator_not_empty.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_ai.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_ai.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_backup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_backup.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_double_hotkey.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_double_hotkey.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_hotkey.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_hotkey.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_image.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_lang.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_lang.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_list_item.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_plugin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_plugin.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_plugin_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_plugin_setting.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_preview.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_query.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_response.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_runtime_status.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_runtime_status.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_setting.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_setting.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_theme.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_toolbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_toolbar.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/entity/wox_websocket_msg.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/entity/wox_websocket_msg.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_ai_conversation_role_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_ai_conversation_role_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_direction_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_direction_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_event_device_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_event_device_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_image_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_image_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_launch_mode_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_launch_mode_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_list_view_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_list_view_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_msg_method_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_msg_method_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_msg_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_msg_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_plugin_runtime_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_plugin_runtime_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_position_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_position_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_preview_scroll_position_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_preview_scroll_position_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_preview_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_preview_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_query_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_query_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_result_tail_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_result_tail_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_selection_type_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_selection_type_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/enums/wox_start_page_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/enums/wox_start_page_enum.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/main.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/models/doctor_check_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/models/doctor_check_result.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/launcher/views/wox_launcher_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/launcher/views/wox_launcher_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/launcher/views/wox_query_box_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/launcher/views/wox_query_box_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/launcher/views/wox_query_result_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/launcher/views/wox_query_result_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/launcher/views/wox_query_toolbar_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/launcher/views/wox_query_toolbar_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_about_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_about_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_ai_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_ai_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_base.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_data_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_data_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_general_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_general_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_network_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_network_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_plugin_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_plugin_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_runtime_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_runtime_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_theme_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_theme_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_ui_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_ui_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/modules/setting/views/wox_setting_view.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/color_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/color_util.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/colors.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/consts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/consts.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/entity_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/entity_factory.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/env.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/heartbeat_checker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/heartbeat_checker.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/log.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/picker.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/strings.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/window_flicker_detector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/window_flicker_detector.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/windows/base_window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/windows/base_window_manager.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/windows/linux_window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/windows/linux_window_manager.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/windows/macos_window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/windows/macos_window_manager.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/windows/window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/windows/window_manager.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/windows/window_manager_interface.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/windows/window_manager_interface.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/windows/windows_window_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/windows/windows_window_manager.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/wox_http_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/wox_http_util.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/wox_setting_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/wox_setting_util.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/wox_theme_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/wox_theme_util.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/lib/utils/wox_websocket_msg_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/lib/utils/wox_websocket_msg_util.dart -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/CMakeLists.txt -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/runner/CMakeLists.txt -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/runner/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/runner/main.cc -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/runner/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/runner/my_application.cc -------------------------------------------------------------------------------- /wox.ui.flutter/wox/linux/runner/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/linux/runner/my_application.h -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/.gitignore -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Podfile -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Podfile.lock -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Info.plist -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /wox.ui.flutter/wox/macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /wox.ui.flutter/wox/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/pubspec.lock -------------------------------------------------------------------------------- /wox.ui.flutter/wox/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/pubspec.yaml -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/.gitignore -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/CMakeLists.txt -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/Runner.rc -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/main.cpp -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/resource.h -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/utils.cpp -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/utils.h -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /wox.ui.flutter/wox/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/wox.ui.flutter/wox/windows/runner/win32_window.h -------------------------------------------------------------------------------- /www/docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /www/docs/.vitepress/theme/components/PluginGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/.vitepress/theme/components/PluginGallery.vue -------------------------------------------------------------------------------- /www/docs/.vitepress/theme/components/ThemeGallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/.vitepress/theme/components/ThemeGallery.vue -------------------------------------------------------------------------------- /www/docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /www/docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /www/docs/data/images/ai_auto_git_msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/data/images/ai_auto_git_msg.png -------------------------------------------------------------------------------- /www/docs/data/images/ai_auto_git_msg_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/data/images/ai_auto_git_msg_setting.png -------------------------------------------------------------------------------- /www/docs/data/images/ai_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/data/images/ai_setting.png -------------------------------------------------------------------------------- /www/docs/data/images/ai_theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/data/images/ai_theme.jpg -------------------------------------------------------------------------------- /www/docs/data/images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/data/images/app.png -------------------------------------------------------------------------------- /www/docs/data/images/popclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/data/images/popclip.png -------------------------------------------------------------------------------- /www/docs/development/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/architecture.md -------------------------------------------------------------------------------- /www/docs/development/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/contributing.md -------------------------------------------------------------------------------- /www/docs/development/plugins/full-featured-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/plugins/full-featured-plugin.md -------------------------------------------------------------------------------- /www/docs/development/plugins/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/plugins/overview.md -------------------------------------------------------------------------------- /www/docs/development/plugins/query-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/plugins/query-model.md -------------------------------------------------------------------------------- /www/docs/development/plugins/script-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/plugins/script-plugin.md -------------------------------------------------------------------------------- /www/docs/development/plugins/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/plugins/specification.md -------------------------------------------------------------------------------- /www/docs/development/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/development/setup.md -------------------------------------------------------------------------------- /www/docs/guide/ai/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/ai/commands.md -------------------------------------------------------------------------------- /www/docs/guide/ai/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/ai/settings.md -------------------------------------------------------------------------------- /www/docs/guide/ai/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/ai/theme.md -------------------------------------------------------------------------------- /www/docs/guide/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/faq.md -------------------------------------------------------------------------------- /www/docs/guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/installation.md -------------------------------------------------------------------------------- /www/docs/guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/introduction.md -------------------------------------------------------------------------------- /www/docs/guide/usage/action-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/usage/action-panel.md -------------------------------------------------------------------------------- /www/docs/guide/usage/deep-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/usage/deep-link.md -------------------------------------------------------------------------------- /www/docs/guide/usage/querying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/guide/usage/querying.md -------------------------------------------------------------------------------- /www/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/index.md -------------------------------------------------------------------------------- /www/docs/public/images/ai_auto_git_msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/public/images/ai_auto_git_msg.png -------------------------------------------------------------------------------- /www/docs/public/images/ai_auto_git_msg_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/public/images/ai_auto_git_msg_setting.png -------------------------------------------------------------------------------- /www/docs/public/images/ai_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/public/images/ai_setting.png -------------------------------------------------------------------------------- /www/docs/public/images/ai_theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/public/images/ai_theme.jpg -------------------------------------------------------------------------------- /www/docs/public/images/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/public/images/app.png -------------------------------------------------------------------------------- /www/docs/public/images/popclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/public/images/popclip.png -------------------------------------------------------------------------------- /www/docs/store/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/store/plugins.md -------------------------------------------------------------------------------- /www/docs/store/themes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/store/themes.md -------------------------------------------------------------------------------- /www/docs/zh/development/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/architecture.md -------------------------------------------------------------------------------- /www/docs/zh/development/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/contributing.md -------------------------------------------------------------------------------- /www/docs/zh/development/plugins/full-featured-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/plugins/full-featured-plugin.md -------------------------------------------------------------------------------- /www/docs/zh/development/plugins/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/plugins/overview.md -------------------------------------------------------------------------------- /www/docs/zh/development/plugins/query-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/plugins/query-model.md -------------------------------------------------------------------------------- /www/docs/zh/development/plugins/script-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/plugins/script-plugin.md -------------------------------------------------------------------------------- /www/docs/zh/development/plugins/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/plugins/specification.md -------------------------------------------------------------------------------- /www/docs/zh/development/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/development/setup.md -------------------------------------------------------------------------------- /www/docs/zh/guide/ai/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/ai/commands.md -------------------------------------------------------------------------------- /www/docs/zh/guide/ai/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/ai/settings.md -------------------------------------------------------------------------------- /www/docs/zh/guide/ai/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/ai/theme.md -------------------------------------------------------------------------------- /www/docs/zh/guide/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/faq.md -------------------------------------------------------------------------------- /www/docs/zh/guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/installation.md -------------------------------------------------------------------------------- /www/docs/zh/guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/introduction.md -------------------------------------------------------------------------------- /www/docs/zh/guide/usage/action-panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/usage/action-panel.md -------------------------------------------------------------------------------- /www/docs/zh/guide/usage/deep-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/usage/deep-link.md -------------------------------------------------------------------------------- /www/docs/zh/guide/usage/querying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/guide/usage/querying.md -------------------------------------------------------------------------------- /www/docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/docs/zh/index.md -------------------------------------------------------------------------------- /www/docs/zh/store/plugins.md: -------------------------------------------------------------------------------- 1 | # 插件商店 2 | 3 | 这里列出了 Wox 支持的部分插件。 4 | 5 | 6 | -------------------------------------------------------------------------------- /www/docs/zh/store/themes.md: -------------------------------------------------------------------------------- 1 | # 主题商店 2 | 3 | 这里列出了 Wox 支持的部分主题。 4 | 5 | 6 | -------------------------------------------------------------------------------- /www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/package.json -------------------------------------------------------------------------------- /www/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wox-launcher/Wox/HEAD/www/pnpm-lock.yaml --------------------------------------------------------------------------------