krau
38355dfd14
docs: Add documentation for various features including Aria2, direct download links, parsers, storage rules, silent mode, storage transfer, chat watching, and yt-dlp video download
...
- Created new markdown files for Aria2 download, direct download links, parsers, storage rules, silent mode, storage transfer, chat watching, and yt-dlp video download.
- Included usage examples, configuration instructions, and detailed explanations for each feature.
- Translated documentation into Chinese for accessibility.
v0.55.1
2026-03-11 19:37:25 +08:00
krau
0940258b4d
fix(watch): enhance group media handling
2026-03-11 19:11:44 +08:00
krau
602fc251d8
fix: upgrade deps and medernize codes
v0.55.0
2026-03-05 19:40:25 +08:00
krau
af28738235
test(api): add api tests
2026-03-05 19:30:23 +08:00
krau
3eb3b6e3c8
feat(api): implement task management API with handlers for creating, listing, retrieving, and canceling tasks
...
- Added Handlers struct and methods for task operations
- Implemented task progress tracking and storage
- Created server setup with middleware for logging and recovery
- Added support for Telegram file extraction and Telegraph image extraction
- Introduced webhook functionality for task status updates
- Defined request and response types for API interactions
2026-03-05 19:11:30 +08:00
krau
f377ee3ca4
chore: format code for consistency and readability
2026-03-05 17:20:45 +08:00
krau
70f7172162
docs: add rclone support to configuration guide
2026-01-31 21:17:30 +08:00
krau
091f581881
Merge branch 'main' of https://github.com/krau/SaveAny-Bot
v0.54.0
2026-01-30 13:34:56 +08:00
Krau
8b86330f5c
feat: add rclone storage backend ( #191 )
...
* fix: update StoragePath method to return specific path for single file
* feat: add Rclone storage support with configuration and file operations
* docs: add Rclone support to documentation for configuration and usage
2026-01-30 13:34:29 +08:00
krau
b431fa08e2
fix: update StoragePath method to return specific path for single file
2026-01-30 13:09:21 +08:00
krau
a02e8a8d90
fix: update storage path handling in Save method
v0.53.2
2026-01-30 12:43:47 +08:00
krau
4d2c345003
fix: enhance filename extraction logic for downloads and add unit tests
v0.53.1
2026-01-29 17:11:25 +08:00
krau
33a886fac9
docs: update with new features
2026-01-19 21:55:26 +08:00
krau
57539ec3da
docs: add file transfer capabilities between different storage backends in README
2026-01-19 21:48:57 +08:00
krau
82e1efb518
refactor: update logging messages for transfer task execution and progress tracking
v0.53.0
2026-01-19 21:34:57 +08:00
krau
9b52a3e0ce
refactor: simplify storage path handling across various tasks and storage implementations
2026-01-19 21:27:53 +08:00
krau
6990543c9f
feat: update transfer command to remove target path requirement and adjust usage instructions
2026-01-19 21:20:27 +08:00
krau
dd0dea8cb5
feat!: Refactor batch import task to transfer task
...
- Updated command usage in English and Simplified Chinese localization files to reflect changes in transfer command syntax.
- Removed batch import task implementation, replacing it with a new transfer task implementation.
- Introduced new task structure and progress tracking for file transfers.
- Updated task type enumeration to replace batch import with transfer.
- Added new fields in data structures to support transfer operations.
- Implemented file handling and progress reporting for the transfer task.
2026-01-19 21:14:01 +08:00
krau
3d20fbd0fe
feat: implement transfer command for file transfers between storages
2026-01-19 21:01:50 +08:00
krau
e6d8cc775a
feat: add yt-dlp to Dockerfile for enhanced media handling
2026-01-19 20:40:00 +08:00
krau
17e340fff1
fix: improve file listing and path handling in Webdav storage
v0.52.1
2026-01-19 20:35:48 +08:00
Krau
f92c43b9c8
feat: support import files from storages to telegram ( #183 )
...
* feat: add import command and batch import functionality
- Implemented the `/import` command to allow users to import files from storage to Telegram.
- Added support for listing files in storage and filtering based on regex patterns.
- Created a batch import task to handle multiple file uploads concurrently.
- Introduced progress tracking for batch imports, providing real-time updates to users.
- Enhanced storage interfaces to support file listing and reading capabilities.
- Updated localization files for the new import command and its usage instructions.
- Added utility functions for file size formatting and speed calculation.
- Refactored Telegram storage handling to support reading from non-seekable streams.
* feat: add i18n for import command
* feat: implement ListFiles and OpenFile methods for WebDAV and Alist storage
* Update common/i18n/locale/zh-Hans.yaml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update core/tasks/batchimport/progress.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update core/tasks/batchimport/execute.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update storage/alist/alist.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update common/i18n/locale/en.yaml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update pkg/storagetypes/fileinfo.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update common/i18n/locale/en.yaml
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update core/tasks/batchimport/execute.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update storage/webdav/webdav.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update storage/telegram/telegram.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update core/tasks/batchimport/execute.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* Update storage/webdav/webdav.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* fix: missing progress stats i18n
* refactor: use strutil to parse args
* chore: update generated code files for consistency
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
v0.52.0
2026-01-19 17:39:47 +08:00
Copilot
3e20dc2c5f
feat: add custom parameter support to /ytdlp command ( #185 ), close #184
...
* Initial plan
* Implement parameter support for /ytdlp command
Co-authored-by: krau <71133316+krau@users.noreply.github.com >
* Add comprehensive tests for ytdlp parameter parsing
Co-authored-by: krau <71133316+krau@users.noreply.github.com >
* Improve flag parsing logic and clarify argument order
Co-authored-by: krau <71133316+krau@users.noreply.github.com >
* Preserve critical defaults and improve comments
Co-authored-by: krau <71133316+krau@users.noreply.github.com >
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: krau <71133316+krau@users.noreply.github.com >
2026-01-19 13:10:21 +08:00
krau
3ce00884a0
feat: add yt-dlp support for downloading video/audio and enhance related commands
v0.50.0
2026-01-17 17:42:11 +08:00
krau
cd7cf4964d
fix: handle context cancellation during aria2 download and improve cleanup logic
v0.49.0
2026-01-17 15:22:41 +08:00
krau
bc3c841d1d
fix: update aria2 configuration to include KeepFile option and improve download handling
2026-01-17 15:19:49 +08:00
krau
743c15f1a5
fix: enhance aria2 download handling and logging for follow-up downloads
2026-01-17 15:10:37 +08:00
krau
b05d86509c
feat: basic aria2 integration
2026-01-17 14:57:03 +08:00
krau
f17a380579
fix: implement watch media group handler and enhance media processing logic
v0.48.4
2026-01-17 13:23:47 +08:00
krau
cabe1189e2
chore: delete copilot guideline
2026-01-16 22:27:40 +08:00
krau
a988d05e24
feat: add agent guidelines
2026-01-16 22:27:17 +08:00
krau
1af2c1f7c7
fix: upgrade deps
v0.48.3
2026-01-16 20:43:19 +08:00
krau
7b36fb45f5
refactor: simplify T function and remove unused localization functions
2026-01-16 20:41:05 +08:00
krau
62cceee592
fix: enhance handleBatchSave to support user context and improve message retrieval
v0.48.2
2026-01-08 13:25:59 +08:00
krau
6d315f7af2
refactor: simplify GetMessagesRange function and improve error message formatting
v0.48.1
2026-01-08 12:42:44 +08:00
krau
5352491c76
chore: update issue template
2026-01-06 10:05:59 +08:00
krau
3f914f7a64
docs: update proxy configuration comments for clarity in README and example config files
v0.48.0
2026-01-06 09:35:21 +08:00
krau
8972d8a169
feat: implement httpProxyDialer for HTTP CONNECT proxies and enhance newProxyDialer function
2026-01-06 09:29:45 +08:00
krau
1339c69dbf
feat: update fnametmpl help
v0.47.0
2026-01-06 09:21:05 +08:00
krau
63aeabb39b
feat: add msgraw var to filename template and update i18n for fnamest display
2026-01-06 09:19:32 +08:00
krau
e60e983229
docs: add lang settings guide
2026-01-05 11:56:19 +08:00
krau
75e5fd10ea
feat(aria2): add Aria2 download command and client integration
2026-01-03 17:40:55 +08:00
krau
c8d8a2e0eb
feat: add command to sync peer chats with userbot
2026-01-03 16:32:58 +08:00
krau
044e732084
chore: remove CLAUDE.md documentation file as it is incorrect
2026-01-01 10:36:53 +08:00
krau
0e951f641c
fix(storage): add panic recovery for malformed MP4 files
...
- Add defer/recover in getMP4Meta to catch panics from gomedia library
- Implement fallback to ffprobe when MP4 parsing fails
- Fixes "no vosdata" panic when processing certain MP4 files
Also add CLAUDE.md to provide architecture guidance for AI coding assistants.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com >
v0.46.2
2025-12-31 20:36:26 +08:00
krau
8dd6265d55
chore: modenrize it
2025-12-27 16:01:41 +08:00
krau
ad7e01f052
fix: improve text message handling by removing duplicates and empty lines
v0.46.1
2025-12-21 13:17:10 +08:00
krau
c069d1edc7
fix: format the generated i18n keys
2025-12-21 13:03:50 +08:00
krau
fd3b17a360
fix(i18n): add cancel button text
2025-12-21 12:59:14 +08:00
doomwithdon
a3162eff89
Add BotMsgCancelCancelTask key for bot messages ( #162 )
2025-12-21 12:56:42 +08:00