├── .clang-format ├── .clangd ├── .gitattributes ├── .github └── workflows │ └── xmake.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CONFIG.md ├── CONFIG_zh.md ├── DONATE.md ├── LICENSE ├── README.md ├── README_zh.md ├── dependencies ├── blook.lua ├── breeze-ui.lua └── quickjs-ng.lua ├── resources ├── animated-preview1.webp ├── bloom.webp ├── breeze-interface ├── breeze.html ├── code.webp ├── icon-small.png ├── icon.7z ├── icon.png ├── icon.webp ├── inject-en.webp ├── inject.webp ├── preview1.webp ├── schema-zh_CN.json └── schema.json ├── scripts ├── additional-types.txt ├── bindgen.bat ├── debug.cmd ├── inject_onecommander.xpr64 ├── left_click.ahk ├── rebuild.nu ├── rebuild.ps1 ├── rebuild_asan.ps1 ├── rebuild_taskbar.ps1 ├── reformat.ps1 └── right_click.ahk ├── src ├── asan │ └── asan_main.cc ├── inject │ ├── data_directory.inc │ └── inject.cc ├── shell │ ├── build_info.h.in │ ├── config.cc │ ├── config.h │ ├── contextmenu │ │ ├── contextmenu.cc │ │ ├── contextmenu.h │ │ ├── hooks.cc │ │ ├── hooks.h │ │ ├── menu_render.cc │ │ ├── menu_render.h │ │ ├── menu_widget.cc │ │ └── menu_widget.h │ ├── entry.cc │ ├── entry.h │ ├── error_handler.cc │ ├── error_handler.h │ ├── fix_win11_menu.cc │ ├── fix_win11_menu.h │ ├── logger.cc │ ├── logger.h │ ├── paint_color.cc │ ├── paint_color.h │ ├── qjs_sanitizer.cc │ ├── qjs_sanitizer.h │ ├── reflect.hpp │ ├── res_string_loader.cc │ ├── res_string_loader.h │ ├── script │ │ ├── FileWatch.hpp │ │ ├── binding_qjs.h │ │ ├── binding_types.cc │ │ ├── binding_types.d.ts │ │ ├── binding_types.h │ │ ├── binding_types.hpp │ │ ├── binding_types_breeze_ui.cc │ │ ├── binding_types_breeze_ui.h │ │ ├── binding_types_com.cc │ │ ├── quickjspp.cc │ │ ├── quickjspp.hpp │ │ ├── script.cc │ │ ├── script.h │ │ ├── script.js │ │ └── ts │ │ │ ├── .gitignore │ │ │ ├── build-types.js │ │ │ ├── build.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── config_page │ │ │ │ ├── ConfigApp.tsx │ │ │ │ ├── ContextMenuConfig.tsx │ │ │ │ ├── PluginConfig.tsx │ │ │ │ ├── PluginStore.tsx │ │ │ │ ├── Sidebar.tsx │ │ │ │ ├── UpdatePage.tsx │ │ │ │ ├── components.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── contexts.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── entry.ts │ │ │ ├── global.d.ts │ │ │ ├── jsx.d.ts │ │ │ ├── menu │ │ │ │ ├── configMenu.ts │ │ │ │ ├── constants.ts │ │ │ │ └── index.ts │ │ │ ├── plugin │ │ │ │ ├── constants.ts │ │ │ │ ├── core.ts │ │ │ │ ├── index.ts │ │ │ │ └── types.d.ts │ │ │ ├── react │ │ │ │ └── renderer.ts │ │ │ ├── type_entry.d.ts │ │ │ └── utils │ │ │ │ ├── network.ts │ │ │ │ ├── object.ts │ │ │ │ └── string.ts │ │ │ ├── tsconfig.json │ │ │ └── yarn.lock │ ├── taskbar │ │ ├── taskbar.cc │ │ ├── taskbar.h │ │ ├── taskbar_widget.cc │ │ └── taskbar_widget.h │ ├── utils.cc │ ├── utils.h │ ├── widgets │ │ ├── background_widget.cc │ │ └── background_widget.h │ ├── window_proc_hook.cc │ └── window_proc_hook.h └── ui_test │ └── test.cc └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | Language: Cpp 3 | AccessModifierOffset: -4 4 | IndentWidth: 4 5 | ... 6 | -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/.clangd -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/xmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/.github/workflows/xmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/CONFIG.md -------------------------------------------------------------------------------- /CONFIG_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/CONFIG_zh.md -------------------------------------------------------------------------------- /DONATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/DONATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/README_zh.md -------------------------------------------------------------------------------- /dependencies/blook.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/dependencies/blook.lua -------------------------------------------------------------------------------- /dependencies/breeze-ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/dependencies/breeze-ui.lua -------------------------------------------------------------------------------- /dependencies/quickjs-ng.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/dependencies/quickjs-ng.lua -------------------------------------------------------------------------------- /resources/animated-preview1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/animated-preview1.webp -------------------------------------------------------------------------------- /resources/bloom.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/bloom.webp -------------------------------------------------------------------------------- /resources/breeze-interface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/breeze-interface -------------------------------------------------------------------------------- /resources/breeze.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/breeze.html -------------------------------------------------------------------------------- /resources/code.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/code.webp -------------------------------------------------------------------------------- /resources/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/icon-small.png -------------------------------------------------------------------------------- /resources/icon.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/icon.7z -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/icon.webp -------------------------------------------------------------------------------- /resources/inject-en.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/inject-en.webp -------------------------------------------------------------------------------- /resources/inject.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/inject.webp -------------------------------------------------------------------------------- /resources/preview1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/preview1.webp -------------------------------------------------------------------------------- /resources/schema-zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/schema-zh_CN.json -------------------------------------------------------------------------------- /resources/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/resources/schema.json -------------------------------------------------------------------------------- /scripts/additional-types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/additional-types.txt -------------------------------------------------------------------------------- /scripts/bindgen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/bindgen.bat -------------------------------------------------------------------------------- /scripts/debug.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/debug.cmd -------------------------------------------------------------------------------- /scripts/inject_onecommander.xpr64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/inject_onecommander.xpr64 -------------------------------------------------------------------------------- /scripts/left_click.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/left_click.ahk -------------------------------------------------------------------------------- /scripts/rebuild.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/rebuild.nu -------------------------------------------------------------------------------- /scripts/rebuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/rebuild.ps1 -------------------------------------------------------------------------------- /scripts/rebuild_asan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/rebuild_asan.ps1 -------------------------------------------------------------------------------- /scripts/rebuild_taskbar.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/rebuild_taskbar.ps1 -------------------------------------------------------------------------------- /scripts/reformat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/reformat.ps1 -------------------------------------------------------------------------------- /scripts/right_click.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/scripts/right_click.ahk -------------------------------------------------------------------------------- /src/asan/asan_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/asan/asan_main.cc -------------------------------------------------------------------------------- /src/inject/data_directory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/inject/data_directory.inc -------------------------------------------------------------------------------- /src/inject/inject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/inject/inject.cc -------------------------------------------------------------------------------- /src/shell/build_info.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/build_info.h.in -------------------------------------------------------------------------------- /src/shell/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/config.cc -------------------------------------------------------------------------------- /src/shell/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/config.h -------------------------------------------------------------------------------- /src/shell/contextmenu/contextmenu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/contextmenu.cc -------------------------------------------------------------------------------- /src/shell/contextmenu/contextmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/contextmenu.h -------------------------------------------------------------------------------- /src/shell/contextmenu/hooks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/hooks.cc -------------------------------------------------------------------------------- /src/shell/contextmenu/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/hooks.h -------------------------------------------------------------------------------- /src/shell/contextmenu/menu_render.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/menu_render.cc -------------------------------------------------------------------------------- /src/shell/contextmenu/menu_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/menu_render.h -------------------------------------------------------------------------------- /src/shell/contextmenu/menu_widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/menu_widget.cc -------------------------------------------------------------------------------- /src/shell/contextmenu/menu_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/contextmenu/menu_widget.h -------------------------------------------------------------------------------- /src/shell/entry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/entry.cc -------------------------------------------------------------------------------- /src/shell/entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/entry.h -------------------------------------------------------------------------------- /src/shell/error_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/error_handler.cc -------------------------------------------------------------------------------- /src/shell/error_handler.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | namespace mb_shell { 3 | void install_error_handlers(); 4 | } -------------------------------------------------------------------------------- /src/shell/fix_win11_menu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/fix_win11_menu.cc -------------------------------------------------------------------------------- /src/shell/fix_win11_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/fix_win11_menu.h -------------------------------------------------------------------------------- /src/shell/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/logger.cc -------------------------------------------------------------------------------- /src/shell/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/logger.h -------------------------------------------------------------------------------- /src/shell/paint_color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/paint_color.cc -------------------------------------------------------------------------------- /src/shell/paint_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/paint_color.h -------------------------------------------------------------------------------- /src/shell/qjs_sanitizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/qjs_sanitizer.cc -------------------------------------------------------------------------------- /src/shell/qjs_sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/qjs_sanitizer.h -------------------------------------------------------------------------------- /src/shell/reflect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/reflect.hpp -------------------------------------------------------------------------------- /src/shell/res_string_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/res_string_loader.cc -------------------------------------------------------------------------------- /src/shell/res_string_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/res_string_loader.h -------------------------------------------------------------------------------- /src/shell/script/FileWatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/FileWatch.hpp -------------------------------------------------------------------------------- /src/shell/script/binding_qjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_qjs.h -------------------------------------------------------------------------------- /src/shell/script/binding_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_types.cc -------------------------------------------------------------------------------- /src/shell/script/binding_types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_types.d.ts -------------------------------------------------------------------------------- /src/shell/script/binding_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_types.h -------------------------------------------------------------------------------- /src/shell/script/binding_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_types.hpp -------------------------------------------------------------------------------- /src/shell/script/binding_types_breeze_ui.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_types_breeze_ui.cc -------------------------------------------------------------------------------- /src/shell/script/binding_types_breeze_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_types_breeze_ui.h -------------------------------------------------------------------------------- /src/shell/script/binding_types_com.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/binding_types_com.cc -------------------------------------------------------------------------------- /src/shell/script/quickjspp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/quickjspp.cc -------------------------------------------------------------------------------- /src/shell/script/quickjspp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/quickjspp.hpp -------------------------------------------------------------------------------- /src/shell/script/script.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/script.cc -------------------------------------------------------------------------------- /src/shell/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/script.h -------------------------------------------------------------------------------- /src/shell/script/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/script.js -------------------------------------------------------------------------------- /src/shell/script/ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /src/shell/script/ts/build-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/build-types.js -------------------------------------------------------------------------------- /src/shell/script/ts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/build.js -------------------------------------------------------------------------------- /src/shell/script/ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/package.json -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/ConfigApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/ConfigApp.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/ContextMenuConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/ContextMenuConfig.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/PluginConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/PluginConfig.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/PluginStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/PluginStore.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/Sidebar.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/UpdatePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/UpdatePage.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/components.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/constants.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/contexts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/contexts.tsx -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/index.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/config_page/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/config_page/utils.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/entry.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/global.d.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/jsx.d.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/menu/configMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/menu/configMenu.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/menu/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/menu/constants.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/menu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/menu/index.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/plugin/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/plugin/constants.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/plugin/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/plugin/core.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/plugin/index.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/plugin/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/plugin/types.d.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/react/renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/react/renderer.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/type_entry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/type_entry.d.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/utils/network.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/utils/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/utils/object.ts -------------------------------------------------------------------------------- /src/shell/script/ts/src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/src/utils/string.ts -------------------------------------------------------------------------------- /src/shell/script/ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/tsconfig.json -------------------------------------------------------------------------------- /src/shell/script/ts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/script/ts/yarn.lock -------------------------------------------------------------------------------- /src/shell/taskbar/taskbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/taskbar/taskbar.cc -------------------------------------------------------------------------------- /src/shell/taskbar/taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/taskbar/taskbar.h -------------------------------------------------------------------------------- /src/shell/taskbar/taskbar_widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/taskbar/taskbar_widget.cc -------------------------------------------------------------------------------- /src/shell/taskbar/taskbar_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/taskbar/taskbar_widget.h -------------------------------------------------------------------------------- /src/shell/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/utils.cc -------------------------------------------------------------------------------- /src/shell/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/utils.h -------------------------------------------------------------------------------- /src/shell/widgets/background_widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/widgets/background_widget.cc -------------------------------------------------------------------------------- /src/shell/widgets/background_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/widgets/background_widget.h -------------------------------------------------------------------------------- /src/shell/window_proc_hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/window_proc_hook.cc -------------------------------------------------------------------------------- /src/shell/window_proc_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/shell/window_proc_hook.h -------------------------------------------------------------------------------- /src/ui_test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/src/ui_test/test.cc -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/std-microblock/breeze-shell/HEAD/xmake.lua --------------------------------------------------------------------------------