A Compose Desktop application for browsing and downloading Strinova wiki resources.
一个基于 Compose Desktop 构建的桌面应用,用于浏览与下载卡拉彼丘 Wiki 资源。
- 🔍 Smart Search: Search character categories (voice-only or all resource types), or switch to file search mode (namespace 6).
- ⚡ Concurrent Downloads: Scan category trees and download files with built-in concurrency control.
- 🖼️ Rich Preview: Live image previews for
PNG,JPG,WebP, and animatedGIF. Click to enlarge, scroll to zoom. - 🎵 Audio Playback: In-app playback for
WAV,OGG,FLAC, andMP3files directly from search results. - 🔄 MP3/FLAC → WAV Conversion: Batch-convert downloaded
MP3orFLACfiles to WAV with configurable sample rate and bit depth. - ⌨️ Keyboard Shortcuts:
Ctrl+Ffocus search,F5re-search,Ctrl+Ddownload,Ctrl+A/Ctrl+Shift+Aselect all / deselect,↑↓navigate list, and more. - 🎛️ Windows Backdrop: Switch between Mica, Tabbed, Acrylic, Aero, and other Windows 11 backdrop styles at runtime.
- 🪟 Custom Title Bar: Borderless native window with custom caption buttons and drag-to-move support.
- 🖥️ Compatibility: Gracefully falls back on non-Windows-11 devices.
- Core: Kotlin, Coroutines
- UI: Compose Desktop, Compose Fluent UI, ComposeWindowStyler
- Network & Data: OkHttp, kotlinx.serialization
- Audio:
javax.sound.sampled(WAV/OGG/FLAC),mp3spi(MP3),jflac-codec(FLAC decode) - Image:
javax.imageio.ImageIO(GIF frame decoding)
- 🔍 智能搜索: 支持分类搜索(仅语音 / 所有类型),也可切换为文件搜索模式(命名空间 6)。
- ⚡ 并发下载: 扫描分类树并并发下载文件,内置完善的并发控制。
- 🖼️ 丰富预览: 支持
PNG、JPG、WebP静态图与GIF逐帧动画预览。点击放大,滚轮缩放。 - 🎵 音频播放: 可直接在搜索结果中播放
WAV、OGG、FLAC及MP3格式音频。 - 🔄 MP3/FLAC 转 WAV: 下载后批量将
MP3或FLAC转换为WAV,支持自定义采样率与位深。 - ⌨️ 键盘快捷键:
Ctrl+F聚焦搜索,F5重新搜索,Ctrl+D开始下载,Ctrl+A/Ctrl+Shift+A全选 / 取消全选,↑↓导航列表,以及更多。 - 🎛️ 窗口特效: 运行时动态切换 Mica、Tabbed、Acrylic、Aero 等 Windows 11 背景特效。
- 🪟 自定义标题栏: 无边框原生窗口,自定义标题栏按钮,支持拖拽移动。
- 🖥️ 兼容性: 非 Windows 11 设备自动降级,标题栏背景跟随主题色保证可读性。
- 核心: Kotlin、协程 (Coroutines)
- UI 框架: Compose Desktop、Compose Fluent UI、ComposeWindowStyler
- 网络与数据: OkHttp、kotlinx.serialization
- 音频:
javax.sound.sampled(WAV/OGG/FLAC)、mp3spi(MP3)、jflac-codec(FLAC 解码) - 图像:
javax.imageio.ImageIO(GIF 多帧解码动画)
src/main/kotlin/
├── data/ # 🌐 Wiki access, image/audio loading (数据与网络请求层)
├── viewmodel/ # 🧠 ViewModel layer: state + actions (视图模型层)
├── ui/
│ ├── screens/ # 🖥️ Screen composables (页面组件)
│ └── components/# 🧩 Reusable UI components (可复用 UI 组件)
├── util/ # 🛠️ Utilities (工具类)
You can build and run the application via Gradle.
Windows PowerShell examples / Windows 命令行示例:
# Build the project / 构建项目
./gradlew.bat build
# Run Compose Desktop app / 运行桌面应用
./gradlew.bat run(For macOS/Linux, use ./gradlew instead of ./gradlew.bat)
- 📡 API Dependency: The app depends on Bilibili wiki endpoints; availability may vary depending on network conditions. / 本应用依赖于 Bilibili Wiki 的 API 接口,可用性可能受网络环境影响。
See LICENSE.txt for more information.
