Skip to content

Commit

Permalink
add v.2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixthrush committed Sep 27, 2024
1 parent 2176679 commit 2734c8a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,8 @@ These are automatically installed when you install AniWorld Downloader via pip.
- [x] Add an option for Syncplay room passwords.
- [ ] Fix yt-dlp progress bar on Windows
- [ ] Fix empty output when the selected language is unavailable.
- [ ] Use anime title instead of slug on episode list
- [ ] Optimize performance: less requests and no duplicate function calls
- [ ] Fix Aniskip for seasons other than the first.
- [ ] Support Doodstream.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "aniworld"
version = "2.0.1"
version = "2.1.0"
authors = [
{ name="Phoenixthrush UwU", email="contact@phoenixthrush.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/aniworld/common/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def fetch_url_content(url: str, proxy: Optional[str] = None, check: bool = True)
}

try:
response = requests.get(url, headers=headers, proxies=proxies, timeout=5)
response = requests.get(url, headers=headers, proxies=proxies, timeout=10)
response.raise_for_status()

if "Deine Anfrage wurde als Spam erkannt." in response.text:
Expand Down

0 comments on commit 2734c8a

Please sign in to comment.