mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-24 18:40:03 +08:00
- Upgrade VitePress from 1.0.0-rc.4 to 1.6.4 (stable) - Update all dependencies (vue 3.5, typescript 5.6, @vue/tsconfig 0.5) - Remove defunct Documate AI integration and google-analytics plugin - Add Google Analytics via head config instead - Translate all 25+ documentation pages from Chinese to English - Add comprehensive REST API reference (docs/api/index.md) - Add v3.2 changelog to sidebar navigation (fixes dead link) - Update version string from v3.1 to v3.2 - Fix homepage changelog link to point to v3.2 - Update all WebUI screenshots with current v3.2 UI - Add new screenshots: calendar view, bangumi poster wall - Remove obsolete files: documate.json, deploy/windows.md, deploy/unix.md - Update CSS variables for VitePress 1.6.x compatibility Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# Torrent Search
|
|
|
|
Since v3.1, AB includes a search feature for quickly finding anime.
|
|
|
|
## Using the Search Feature
|
|
|
|
::: warning
|
|
The search feature relies on the main program's parser. The current version does not support parsing collections. A `warning` when parsing collections is normal behavior.
|
|
:::
|
|
|
|
The search bar is located in the AB top bar. You can select the source site on the right side of the search bar, such as: Mikan Project, Nyaa, etc.
|
|
|
|
Select the source site, enter keywords, and AB will automatically parse and display search results. To add an anime, click the add button on the right side of the card.
|
|
|
|
::: tip
|
|
When the source is **Mikan**, AB uses the `mikan` parser by default. For other sources, the TMDB parser is used.
|
|
:::
|
|
|
|
## Adding Custom Sources
|
|
|
|
Users can manually add source sites by editing `config/search_provider.json`.
|
|
|
|
Default configuration:
|
|
```json
|
|
{
|
|
"mikan": "https://mikanani.me/RSS/Search?searchstr=%s",
|
|
"nyaa": "https://nyaa.si/?page=rss&q=%s&c=0_0&f=0",
|
|
"dmhy": "http://dmhy.org/topics/rss/rss.xml?keyword=%s",
|
|
"bangumi.moe": "https://bangumi.moe/rss/search/%s"
|
|
}
|
|
```
|