Skip to content

Commit 72ebe4a

Browse files
committed
v6.2.1
1 parent 8beaba9 commit 72ebe4a

File tree

2 files changed

+33
-6
lines changed

2 files changed

+33
-6
lines changed

changelog.md

Lines changed: 32 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,38 @@
1212

1313
---
1414

15-
### v6.0.0 *(soon)*
16-
17-
- On the work, huge refactor, a lot of bug fixes and new features will come around the summer...
18-
19-
### v5.3.1 **[LATEST STABLE RELEASE]**
15+
### v6.2.0 **[LATEST STABLE RELEASE]**
16+
17+
- Added a new command : /merge (and /done)
18+
- Allows to merge splitted archives in .XXX format
19+
- Upload of thumbnails on telegra.ph now handles errors
20+
21+
### v6.1.0
22+
23+
- URL's also shows a progressbar + ETA when possible
24+
- Downloads are 28 times faster
25+
- Some databases are cleared upon restart
26+
- Attempt to implement #137
27+
- New boot sequence
28+
29+
### v6.0.0
30+
31+
- Dependencies update
32+
- tgz and zst archives are now supported
33+
- Thumbnail change tasks are now removed from DB after completion
34+
- Dockerfile have been updated : Add of ffmpeg and venv
35+
- Uploading videos as media is fixed ! #133
36+
- Added Docker instructions on the README
37+
- Added GitHub Actions for Docker publishing and deployment
38+
- Updated the FUNDING.yml
39+
- New command : /donate, plus donate button appears on /start and after a task is processed
40+
- Tell users that they can rate the bot after a task is processed
41+
- #33 is gone (no longer useless alerts)
42+
- ETA is now correct
43+
- Tried to add a way to cancel tasks, but it's not working
44+
- Files above 2 GB are now splitted
45+
46+
### v5.3.1
2047

2148
- Added /gitpull command to try the latest updates (removed at each restart)
2249
- /delthumb also works locally

unzipper/modules/callbacks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ async def unzipper_cb(unzip_bot: Client, query: CallbackQuery):
235235
if message.document is None:
236236
pass
237237
else:
238-
if message.from_user.id == user_id:
238+
if message.from_user.id == user_id: # avoid getting files from other users, tho idk why this could happen
239239
newarray.append(message)
240240
length = len(newarray)
241241
if length == 0:

0 commit comments

Comments
 (0)