├── .env ├── .github ├── AllAudios.png ├── audioEdit.png ├── audio_bookmark_caption.gif ├── fav.png ├── favEdit.png └── workflows │ └── build.yaml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE.md ├── README.md ├── config.html ├── index.html ├── package.json ├── public └── tauri.svg ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── audio_api │ │ ├── device_changer.rs │ │ ├── mod.rs │ │ └── notifier.rs │ ├── audio_backend.rs │ ├── errors.rs │ ├── lib.rs │ ├── log.rs │ ├── main.rs │ ├── menu.rs │ └── systray.rs └── tauri.conf.json ├── src ├── App.css ├── App.tsx ├── ConfigElm.tsx ├── all_audio_info_hook.ts ├── assets │ ├── icon.png │ ├── mdi_close.svg │ └── mdi_window-minimize.svg ├── audio_type.ts ├── components │ ├── All.tsx │ ├── AudioCard.tsx │ ├── EditAudioModal.tsx │ ├── EditProfileAudioCard.tsx │ ├── EditProfileAudios.tsx │ ├── InvalidSnackbars.tsx │ ├── Main.tsx │ ├── ProfileAudioCard.tsx │ ├── ProfileAudios.tsx │ ├── ProfileRemoveDialog.tsx │ ├── ProfileTab.tsx │ ├── SliderPart.tsx │ ├── StartUpSwitch.tsx │ └── notification.ts ├── config.tsx ├── custom-titlebar.ts ├── main.tsx ├── notify_from_back_type.ts ├── profiles_hook.ts ├── query.ts ├── style.css ├── util.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | RUST_LOG=DEBUG -------------------------------------------------------------------------------- /.github/AllAudios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.github/AllAudios.png -------------------------------------------------------------------------------- /.github/audioEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.github/audioEdit.png -------------------------------------------------------------------------------- /.github/audio_bookmark_caption.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.github/audio_bookmark_caption.gif -------------------------------------------------------------------------------- /.github/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.github/fav.png -------------------------------------------------------------------------------- /.github/favEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.github/favEdit.png -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/README.md -------------------------------------------------------------------------------- /config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/config.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/package.json -------------------------------------------------------------------------------- /public/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/public/tauri.svg -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/src/audio_api/device_changer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/audio_api/device_changer.rs -------------------------------------------------------------------------------- /src-tauri/src/audio_api/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/audio_api/mod.rs -------------------------------------------------------------------------------- /src-tauri/src/audio_api/notifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/audio_api/notifier.rs -------------------------------------------------------------------------------- /src-tauri/src/audio_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/audio_backend.rs -------------------------------------------------------------------------------- /src-tauri/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/errors.rs -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/log.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/src/menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/menu.rs -------------------------------------------------------------------------------- /src-tauri/src/systray.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/src/systray.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/ConfigElm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/ConfigElm.tsx -------------------------------------------------------------------------------- /src/all_audio_info_hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/all_audio_info_hook.ts -------------------------------------------------------------------------------- /src/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/assets/icon.png -------------------------------------------------------------------------------- /src/assets/mdi_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/assets/mdi_close.svg -------------------------------------------------------------------------------- /src/assets/mdi_window-minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/assets/mdi_window-minimize.svg -------------------------------------------------------------------------------- /src/audio_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/audio_type.ts -------------------------------------------------------------------------------- /src/components/All.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/All.tsx -------------------------------------------------------------------------------- /src/components/AudioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/AudioCard.tsx -------------------------------------------------------------------------------- /src/components/EditAudioModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/EditAudioModal.tsx -------------------------------------------------------------------------------- /src/components/EditProfileAudioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/EditProfileAudioCard.tsx -------------------------------------------------------------------------------- /src/components/EditProfileAudios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/EditProfileAudios.tsx -------------------------------------------------------------------------------- /src/components/InvalidSnackbars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/InvalidSnackbars.tsx -------------------------------------------------------------------------------- /src/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/Main.tsx -------------------------------------------------------------------------------- /src/components/ProfileAudioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/ProfileAudioCard.tsx -------------------------------------------------------------------------------- /src/components/ProfileAudios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/ProfileAudios.tsx -------------------------------------------------------------------------------- /src/components/ProfileRemoveDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/ProfileRemoveDialog.tsx -------------------------------------------------------------------------------- /src/components/ProfileTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/ProfileTab.tsx -------------------------------------------------------------------------------- /src/components/SliderPart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/SliderPart.tsx -------------------------------------------------------------------------------- /src/components/StartUpSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/StartUpSwitch.tsx -------------------------------------------------------------------------------- /src/components/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/components/notification.ts -------------------------------------------------------------------------------- /src/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/config.tsx -------------------------------------------------------------------------------- /src/custom-titlebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/custom-titlebar.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/notify_from_back_type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/notify_from_back_type.ts -------------------------------------------------------------------------------- /src/profiles_hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/profiles_hook.ts -------------------------------------------------------------------------------- /src/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/query.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/style.css -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anotherhollow1125/audio-bookmark/HEAD/yarn.lock --------------------------------------------------------------------------------