├── .gitignore ├── README.md ├── UNLICENSE ├── api ├── .gitignore ├── api │ └── app.py ├── main.py ├── pyproject.toml ├── requirements.txt ├── uv.lock └── vercel.json ├── biome.json ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── rust-toolchain.toml ├── scripts ├── installer.nsi └── windows_bundle.bat ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── icons │ ├── 128x128.png │ └── icon.ico ├── icons_store │ ├── macos │ │ ├── 128x128.png │ │ └── icon.ico │ └── windows │ │ ├── 128x128.png │ │ └── icon.ico ├── src │ └── main.rs └── tauri.conf.json ├── src ├── App.css ├── App.jsx ├── Globals.jsx ├── SideBar.jsx ├── Text.js ├── components │ ├── GameCardSideBar.jsx │ ├── GameCards.jsx │ ├── Hotkeys.jsx │ └── LanguageSelector.jsx ├── index.jsx ├── libraries │ ├── Icons.jsx │ ├── fuzzysearch.js │ └── parseVDF.js └── modals │ ├── EditFolder.jsx │ ├── EditGame.jsx │ ├── GamePopUp.jsx │ ├── Loading.jsx │ ├── NewFolder.jsx │ ├── NewGame.jsx │ ├── Notepad.jsx │ └── Settings.jsx ├── tailwind.config.js ├── vite.config.js └── website ├── .gitignore ├── .htaccess ├── assets ├── 128x128.png ├── auto find assets.png ├── clear product video v3 (web).mp4 ├── customize.png ├── drag and drop.png ├── edge1.png ├── edge2.png ├── import steam.svg ├── screenshot.png ├── thin screenshot.png └── windows.png ├── download.html ├── feedback.html ├── index.html ├── input.css ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── tailwind.config.js └── update.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/UNLICENSE -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/api/api/app.py -------------------------------------------------------------------------------- /api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/api/main.py -------------------------------------------------------------------------------- /api/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/api/pyproject.toml -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /api/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/api/uv.lock -------------------------------------------------------------------------------- /api/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/api/vercel.json -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/biome.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/postcss.config.js -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /scripts/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/scripts/installer.nsi -------------------------------------------------------------------------------- /scripts/windows_bundle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/scripts/windows_bundle.bat -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons_store/macos/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/icons_store/macos/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons_store/macos/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/icons_store/macos/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons_store/windows/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/icons_store/windows/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons_store/windows/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/icons_store/windows/icon.ico -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Globals.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/Globals.jsx -------------------------------------------------------------------------------- /src/SideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/SideBar.jsx -------------------------------------------------------------------------------- /src/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/Text.js -------------------------------------------------------------------------------- /src/components/GameCardSideBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/components/GameCardSideBar.jsx -------------------------------------------------------------------------------- /src/components/GameCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/components/GameCards.jsx -------------------------------------------------------------------------------- /src/components/Hotkeys.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/components/Hotkeys.jsx -------------------------------------------------------------------------------- /src/components/LanguageSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/components/LanguageSelector.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/libraries/Icons.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/libraries/Icons.jsx -------------------------------------------------------------------------------- /src/libraries/fuzzysearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/libraries/fuzzysearch.js -------------------------------------------------------------------------------- /src/libraries/parseVDF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/libraries/parseVDF.js -------------------------------------------------------------------------------- /src/modals/EditFolder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/EditFolder.jsx -------------------------------------------------------------------------------- /src/modals/EditGame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/EditGame.jsx -------------------------------------------------------------------------------- /src/modals/GamePopUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/GamePopUp.jsx -------------------------------------------------------------------------------- /src/modals/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/Loading.jsx -------------------------------------------------------------------------------- /src/modals/NewFolder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/NewFolder.jsx -------------------------------------------------------------------------------- /src/modals/NewGame.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/NewGame.jsx -------------------------------------------------------------------------------- /src/modals/Notepad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/Notepad.jsx -------------------------------------------------------------------------------- /src/modals/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/src/modals/Settings.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/vite.config.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | styles.css 2 | -------------------------------------------------------------------------------- /website/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/.htaccess -------------------------------------------------------------------------------- /website/assets/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/128x128.png -------------------------------------------------------------------------------- /website/assets/auto find assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/auto find assets.png -------------------------------------------------------------------------------- /website/assets/clear product video v3 (web).mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/clear product video v3 (web).mp4 -------------------------------------------------------------------------------- /website/assets/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/customize.png -------------------------------------------------------------------------------- /website/assets/drag and drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/drag and drop.png -------------------------------------------------------------------------------- /website/assets/edge1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/edge1.png -------------------------------------------------------------------------------- /website/assets/edge2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/edge2.png -------------------------------------------------------------------------------- /website/assets/import steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/import steam.svg -------------------------------------------------------------------------------- /website/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/screenshot.png -------------------------------------------------------------------------------- /website/assets/thin screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/thin screenshot.png -------------------------------------------------------------------------------- /website/assets/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/assets/windows.png -------------------------------------------------------------------------------- /website/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/download.html -------------------------------------------------------------------------------- /website/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/feedback.html -------------------------------------------------------------------------------- /website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/index.html -------------------------------------------------------------------------------- /website/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/input.css -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/pnpm-lock.yaml -------------------------------------------------------------------------------- /website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/postcss.config.js -------------------------------------------------------------------------------- /website/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/tailwind.config.js -------------------------------------------------------------------------------- /website/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adithyasource/clear/HEAD/website/update.html --------------------------------------------------------------------------------