├── src ├── assets │ ├── grid.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ ├── logo.png │ └── grid.svg ├── SearchWindow.html ├── SettingsWindow.html ├── OutputWindow.html ├── OutputWindow.tsx ├── SettingsWindow.tsx ├── custom.d.ts ├── SearchWindow.tsx ├── components │ ├── SettingsRenderer.tsx │ ├── ModelButton.tsx │ ├── UserInput.tsx │ ├── OutputRenderer.tsx │ └── ModelSettings.tsx ├── utils.ts ├── preload.ts ├── common │ └── index.css ├── index.ts └── main │ ├── Downloader.ts │ ├── Models.ts │ ├── WindowManager.ts │ └── IpcHandlers.ts ├── postcss.config.js ├── tailwind.config.js ├── webpack.plugins.ts ├── webpack.renderer.config.ts ├── webpack.main.config.ts ├── tsconfig.json ├── webpack.rules.ts ├── README.md ├── forge.config.ts └── package.json /src/assets/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achsill/orac-interface/HEAD/src/assets/grid.png -------------------------------------------------------------------------------- /src/assets/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achsill/orac-interface/HEAD/src/assets/icon.icns -------------------------------------------------------------------------------- /src/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achsill/orac-interface/HEAD/src/assets/icon.ico -------------------------------------------------------------------------------- /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achsill/orac-interface/HEAD/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achsill/orac-interface/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [require("tailwindcss"), require("autoprefixer")], 3 | }; 4 | -------------------------------------------------------------------------------- /src/SearchWindow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |{modelName}
28 | {isDownloaded ? ( 29 | <> 30 | onSelectModel(modelName)} 35 | className="cursor-pointer" 36 | /> 37 | > 38 | ) : ( 39 | 42 | )} 43 |Recommanded
47 | ) : ( 48 | "" 49 | )} 50 |{modelRef}
51 |Downloading {downloadingModelName}:
232 |233 | {" " + 234 | downloadInformations.remainingTime + 235 | " - " + 236 | downloadInformations.progress + 237 | "%"}{" "} 238 |
239 |{customModelPath}
273 |