├── .github └── workflows │ └── release.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── components.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.js ├── public ├── Autoware-Main-Logo-blackBG.png └── splash.html ├── src-tauri ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── icons │ ├── 256x256-AWF.png │ └── 64x64-AWF.png ├── src │ ├── build_manager.rs │ ├── config_manager.rs │ ├── main.rs │ └── xml_parse.rs └── tauri.conf.json ├── src ├── app │ ├── jotai │ │ └── atoms.ts │ ├── layout.tsx │ └── page.tsx ├── assets │ └── Inter-VariableFont_slnt,wght.ttf ├── components │ ├── BuildFlagsDialog.tsx │ ├── DropDownBuildFlags.tsx │ ├── DropDownBuildType.tsx │ ├── DropDownUpto-Select.tsx │ ├── SearchBar.tsx │ ├── about-dialog.tsx │ ├── icons.tsx │ ├── leftPane.tsx │ ├── menu-mode-toggle.tsx │ ├── menu.tsx │ ├── mode-toggle.tsx │ ├── rightPane.tsx │ ├── style-switcher.tsx │ ├── tailwind-indicator.tsx │ ├── theme-provider.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── lib │ ├── fonts.ts │ └── utils.ts └── styles │ └── globals.css ├── tailwind.config.js └── tsconfig.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/components.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/Autoware-Main-Logo-blackBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/public/Autoware-Main-Logo-blackBG.png -------------------------------------------------------------------------------- /public/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/public/splash.html -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/icons/256x256-AWF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/icons/256x256-AWF.png -------------------------------------------------------------------------------- /src-tauri/icons/64x64-AWF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/icons/64x64-AWF.png -------------------------------------------------------------------------------- /src-tauri/src/build_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/src/build_manager.rs -------------------------------------------------------------------------------- /src-tauri/src/config_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/src/config_manager.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/xml_parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/src/xml_parse.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/app/jotai/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/app/jotai/atoms.ts -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/assets/Inter-VariableFont_slnt,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/assets/Inter-VariableFont_slnt,wght.ttf -------------------------------------------------------------------------------- /src/components/BuildFlagsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/BuildFlagsDialog.tsx -------------------------------------------------------------------------------- /src/components/DropDownBuildFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/DropDownBuildFlags.tsx -------------------------------------------------------------------------------- /src/components/DropDownBuildType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/DropDownBuildType.tsx -------------------------------------------------------------------------------- /src/components/DropDownUpto-Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/DropDownUpto-Select.tsx -------------------------------------------------------------------------------- /src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /src/components/about-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/about-dialog.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/leftPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/leftPane.tsx -------------------------------------------------------------------------------- /src/components/menu-mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/menu-mode-toggle.tsx -------------------------------------------------------------------------------- /src/components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/menu.tsx -------------------------------------------------------------------------------- /src/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/mode-toggle.tsx -------------------------------------------------------------------------------- /src/components/rightPane.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/rightPane.tsx -------------------------------------------------------------------------------- /src/components/style-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/style-switcher.tsx -------------------------------------------------------------------------------- /src/components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/lib/fonts.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autowarefoundation/autoware-build-gui/HEAD/tsconfig.json --------------------------------------------------------------------------------