Skip to content

Commit

Permalink
feat: update to v2.0.0 with major updates.
Browse files Browse the repository at this point in the history
- New deploy may required.
- No description for now, check CHANGELOG.md.

---------

Signed-off-by: 5hojib <[email protected]>
  • Loading branch information
5hojib authored Jan 18, 2025
1 parent b9a7f1f commit d466e26
Show file tree
Hide file tree
Showing 131 changed files with 17,220 additions and 12,335 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ruff_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:

jobs:
code-format:
runs-on: ubuntu-latest
permissions:
contents: write
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
config.env
config.py
*.pyc
data*
.vscode
Expand All @@ -11,11 +11,11 @@ accounts/*
MediaInfo/*
Images/*
Thumbnails/*
tanha/*
rclone/*
tokens/*
list_drives.txt
shorteners.txt
cookies.txt
downloads
bot.session
user.session
terabox.txt
rcl.conf
bot.session*
rclone.conf
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.12
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

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).

## v2.0.0 - 2025-01-18

### Breaking Changes

- Rebased the project on the latest MLTB version.

### Added

- 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

- Removed certain limit-related variables such as `MIRROR LIMIT` and `LEECH LIMIT`.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /usr/src/app
RUN chmod 777 /usr/src/app

COPY requirements.txt .
RUN pip3 install --break-system-packages --ignore-installed --no-cache-dir -r requirements.txt
RUN uv pip install --break-system-packages --system --no-cache-dir -r requirements.txt

COPY . .
CMD ["bash", "start.sh"]
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ Follow these steps to deploy Aeon to Heroku:
- **HEROKU_EMAIL**: Email address associated with your Heroku account.
- **HEROKU_API_KEY**: API key from your Heroku account.
- **HEROKU_TEAM_NAME** (Optional): Required only if deploying under a Heroku team account.

4. Run the workflow and wait for it to complete.

### 5. Finalize Setup
Expand All @@ -70,4 +69,8 @@ This project is licensed under the MIT License. Refer to the [LICENSE](LICENSE)
## Acknowledgements

- Special thanks to the original developers of the [Mirror-Leech-Telegram-Bot](https://github.com/anasty17/mirror-leech-telegram-bot).
- Gratitude to contributors from various repositories whose features have been integrated into Aeon.
- Gratitude to contributors from various repositories whose features have been integrated into Aeon.


## Recent activity [![Time period](https://images.repography.com/58464391/AeonOrg/Aeon-MLTB/recent-activity/MUUzwqnoU_5n6kL3Jc8TTWcA3UxPyCHC2emNNSTGJh8/4gYNvj3-wi0i5zQVemeNAbqB7TrkUx_7BxZxhReSIVg_badge.svg)](https://repography.com)
[![Timeline graph](https://images.repography.com/58464391/AeonOrg/Aeon-MLTB/recent-activity/MUUzwqnoU_5n6kL3Jc8TTWcA3UxPyCHC2emNNSTGJh8/4gYNvj3-wi0i5zQVemeNAbqB7TrkUx_7BxZxhReSIVg_timeline.svg)](https://github.com/AeonOrg/Aeon-MLTB/commits)
4 changes: 2 additions & 2 deletions alive.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging
import os
import time
import logging

import requests

Expand All @@ -18,7 +18,7 @@

def check_status():
try:
requests.get(BASE_URL).status_code
requests.get(BASE_URL)
except Exception as e:
logging.error(f"alive.py: {e}")
return False
Expand Down
Loading

0 comments on commit d466e26

Please sign in to comment.