gitextract_1s2z3e_6/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── release_cli.yml │ ├── release_gui.yml │ └── rust-clippy.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-MIT ├── LICENSE-UNLICENSE ├── README.md ├── TODO.md ├── build/ │ ├── build-host-release │ ├── build-host-release.ps1 │ ├── build-release │ └── build-release-zigbuild ├── config.toml ├── crates/ │ ├── cli/ │ │ ├── CHANGELOG.md │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src/ │ │ ├── common.rs │ │ ├── config.rs │ │ ├── main.rs │ │ └── util.rs │ ├── core/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── common.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── live/ │ │ │ ├── afreeca.rs │ │ │ ├── bili.rs │ │ │ ├── cc.rs │ │ │ ├── douyin.rs │ │ │ ├── douyu.rs │ │ │ ├── flex.rs │ │ │ ├── huajiao.rs │ │ │ ├── huya.rs │ │ │ ├── inke.rs │ │ │ ├── kk.rs │ │ │ ├── ks.rs │ │ │ ├── mht.rs │ │ │ ├── mod.rs │ │ │ ├── now.rs │ │ │ ├── panda.rs │ │ │ ├── qf.rs │ │ │ ├── twitch.rs │ │ │ ├── wink.rs │ │ │ └── yqs.rs │ │ └── util.rs │ ├── danmu/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── danmu/ │ │ │ ├── afreeca.rs │ │ │ ├── bili.rs │ │ │ ├── cc.rs │ │ │ ├── douyin.rs │ │ │ ├── douyu.rs │ │ │ ├── flex.rs │ │ │ ├── huajiao.rs │ │ │ ├── huya.rs │ │ │ ├── inke.rs │ │ │ ├── kk.rs │ │ │ ├── ks.rs │ │ │ ├── mht.rs │ │ │ ├── mod.rs │ │ │ ├── now.rs │ │ │ ├── panda.rs │ │ │ ├── qf.rs │ │ │ ├── wink.rs │ │ │ └── yqs.rs │ │ ├── error.rs │ │ └── lib.rs │ ├── gui/ │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── .vscode/ │ │ │ └── extensions.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── index.html │ │ ├── package.json │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.tsx │ │ │ ├── components/ │ │ │ │ ├── Control.tsx │ │ │ │ ├── GoodItem.tsx │ │ │ │ ├── Live.tsx │ │ │ │ ├── Panel.tsx │ │ │ │ ├── SideBar.tsx │ │ │ │ ├── SideItem.tsx │ │ │ │ └── TopBar.tsx │ │ │ ├── css/ │ │ │ │ ├── Chart.css │ │ │ │ ├── Control.css │ │ │ │ ├── Good.css │ │ │ │ ├── GoodItem.css │ │ │ │ ├── Home.css │ │ │ │ ├── Live.css │ │ │ │ ├── Panel.css │ │ │ │ ├── Setting.css │ │ │ │ ├── SideBar.css │ │ │ │ ├── SideItem.css │ │ │ │ └── TopBar.css │ │ │ ├── icon/ │ │ │ │ └── icon.tsx │ │ │ ├── index.tsx │ │ │ ├── model/ │ │ │ │ ├── Live.tsx │ │ │ │ ├── Record.tsx │ │ │ │ └── Resp.tsx │ │ │ ├── pages/ │ │ │ │ ├── Chart.tsx │ │ │ │ ├── Good.tsx │ │ │ │ ├── Home.tsx │ │ │ │ └── Setting.tsx │ │ │ └── styles.css │ │ ├── src-tauri/ │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── icons/ │ │ │ │ └── icon.icns │ │ │ ├── src/ │ │ │ │ ├── command/ │ │ │ │ │ ├── live.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── refresh.rs │ │ │ │ │ └── subscribe.rs │ │ │ │ ├── common.rs │ │ │ │ ├── config.rs │ │ │ │ ├── database/ │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── subscribe.rs │ │ │ │ ├── main.rs │ │ │ │ ├── manager/ │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── refresh.rs │ │ │ │ ├── model.rs │ │ │ │ ├── resp.rs │ │ │ │ ├── service/ │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── subscribe.rs │ │ │ │ ├── setup.rs │ │ │ │ └── util.rs │ │ │ └── tauri.conf.json │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── marcos/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ └── status/ │ ├── Cargo.toml │ └── src/ │ ├── common.rs │ ├── error.rs │ ├── lib.rs │ └── status/ │ ├── bili.rs │ ├── cc.rs │ ├── douyin.rs │ └── mod.rs ├── doc/ │ ├── 配置说明.md │ └── 额外安装.md ├── justfile └── script/ └── gui_version.lua