Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
5hojib committed Jan 18, 2025
1 parent 8d98b7c commit 4f16839
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
20 changes: 11 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [UNRELEASED]
## v2.0.0 - 2025-01-18

### Breaking changes
### Breaking Changes

- Rebased on MLTB latest.
- Rebased the project on the latest MLTB version.

### Added

- Added all new features from MLTB, except NZB and jDownloader
- Added watermark for video.
- Added RSS feed again
- Integrated all new features from MLTB, excluding NZB and jDownloader.
- Introduced watermark support for videos.
- Enabled the ability to use a user session string to download private media from Telegram.
- Reintroduced RSS feed support.
- Added versioning system.
- Added `CHANGELOG.md` to track changes.

### Removed

- Some limits related var like `MIRROR LIMIT`, `LEECH LIMIT` etc.
- Removed certain limit-related variables such as `MIRROR LIMIT` and `LEECH LIMIT`.
2 changes: 1 addition & 1 deletion bot/helper/ext_utils/files_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ async def _sevenz_progress(self):
or self._listener.subproc.stdout.at_eof()
):
try:
char = await wait_for(self._listener.subproc.stdout.read(1), 30)
char = await wait_for(self._listener.subproc.stdout.read(1), 60)
except Exception:
break
if not char:
Expand Down
2 changes: 1 addition & 1 deletion bot/helper/ext_utils/media_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ async def _ffmpeg_progress(self):
or self._listener.subproc.stdout.at_eof()
):
try:
line = await wait_for(self._listener.subproc.stdout.readline(), 10)
line = await wait_for(self._listener.subproc.stdout.readline(), 60)
except Exception:
break
line = line.decode().strip()
Expand Down
2 changes: 1 addition & 1 deletion bot/helper/mirror_leech_utils/rclone_utils/transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def _progress(self):
or self._listener.is_cancelled
):
try:
data = await wait_for(self._proc.stdout.readline(), 10)
data = await wait_for(self._proc.stdout.readline(), 60)
except Exception:
break
if not data:
Expand Down

0 comments on commit 4f16839

Please sign in to comment.