Skip to content

Commit ed7f504

Browse files
authored
Merge pull request #5 from WizardLoop/dev
Dev
2 parents dc52df9 + 94b04da commit ed7f504

File tree

23 files changed

+8949
-2406
lines changed

23 files changed

+8949
-2406
lines changed

.gitattributes

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
# Force LF line endings
2-
* text=auto eol=lf
3-
4-
# Set file types
5-
*.php text
6-
*.sh text eol=lf
7-
*.md text
8-
*.yml text
9-
*.json text
10-
*.xml text
11-
*.env text
12-
13-
# Exclude tests and dev files from export
14-
/tests export-ignore
15-
phpunit.xml export-ignore
16-
phpcs.xml export-ignore
17-
php-cs-fixer.dist.php export-ignore
18-
Makefile export-ignore
19-
.dockerignore export-ignore
20-
composer.lock export-ignore
21-
22-
README.md export-ignore
23-
CHANGELOG.md export-ignore
24-
1+
# Force LF line endings
2+
* text=auto eol=lf
3+
4+
# Set file types
5+
*.php text
6+
*.sh text eol=lf
7+
*.md text
8+
*.yml text
9+
*.json text
10+
*.xml text
11+
*.env text
12+
13+
# Exclude tests and dev files from export
14+
phpcs.xml export-ignore
15+
php-cs-fixer.dist.php export-ignore
16+
.dockerignore export-ignore
17+
composer.lock export-ignore
18+
19+
README.md export-ignore
20+
CHANGELOG.md export-ignore

.github/CONTRIBUTING.md

Lines changed: 0 additions & 66 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ composer.lock
1717
.phpunit.result.cache
1818
/tests/output/
1919

20-
data/**/lang.txt
21-
data/**/user_config.json
22-
data/**/*.sqlite
23-
2420
/build/
2521
/dist/
2622

@@ -39,4 +35,5 @@ madeline.php
3935

4036
*.save
4137
*.save.1
42-
*.save.*
38+
39+
*.save.*

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,11 @@ All notable changes to the **GetAnyMessage** project will be documented in this
4848
- Change DB_HOST to use host.docker.internal.
4949

5050
---
51+
52+
## [v1.1.0] - 2026-03-08
53+
54+
### Added:
55+
- update to include the full source code!
56+
Includes login, copying of any type of chat including private/user/bot, and everything you need.
57+
58+
---

README.md

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# 📨🔓 GetAnyMessage
2-
### get any message from public chats!
3-
### Save Restricted Content Easily.
4-
**GetAnyMessage** is a powerful Telegram bot that lets you retrieve **restricted messages** (those that cannot be forwarded or copied).
2+
### Get Any Message Content from Any Chat Easily!
3+
**GetAnyMessage** is a powerful Telegram bot that lets you retrieve **restricted messages**.
54

65
[![AGPL License](https://img.shields.io/badge/license-AGPL--3.0-blue.svg)](LICENSE)
76
[![Made with ❤️](https://img.shields.io/badge/Made%20with-%E2%9D%A4%EF%B8%8F%20-blue)](https://github.com/WizardLoop/GetAnyMessage)
@@ -11,10 +10,11 @@
1110

1211
## 📦 Features
1312

14-
- 🔓 Retrieve restricted messages from public chat
15-
- 📁 file support up to 4GB
13+
- 🔓 Retrieve restricted messages from any chat
1614
- 🔁 Bypass Telegram forward/copy restrictions
17-
- (Soon the full bot includes copying messages from private chat and much more!)
15+
- 📁 file support up to 4GB
16+
- 💬 All types of messages
17+
1818
---
1919

2020
### 🛠 Installation Setup
@@ -93,13 +93,7 @@ cp .env.example .env
9393

9494
## 🧪 Testing & Code Quality
9595

96-
This project supports **PHPUnit**, **PHPCS**, and **PHP-CS-Fixer**.
97-
98-
### ✅ Run tests
99-
100-
```bash
101-
docker compose exec bot vendor/bin/phpunit
102-
```
96+
This project supports **PHPCS**, and **PHP-CS-Fixer**.
10397

10498
### 🎨 Code style
10599

@@ -125,7 +119,3 @@ Pull requests are welcome!
125119
## 📄 License
126120

127121
Licensed under the **GNU AGPL-3.0** see [`LICENSE`](LICENSE).
128-
129-
---
130-
131-
Questions? Suggestions? Contact [@WizardLoop](https://t.me/WizardLoop).

composer.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"type": "project",
55
"require": {
66
"php": "^8.4",
7-
"danog/madelineproto": "^8.6"
7+
"danog/madelineproto": "^8.6",
8+
"wizardloop/broadcastmanager": "^3.0"
89
},
910
"require-dev": {
1011
"phpunit/phpunit": "^10.0",
@@ -16,11 +17,6 @@
1617
"GetAnyMessage\\": "src/"
1718
}
1819
},
19-
"autoload-dev": {
20-
"psr-4": {
21-
"GetAnyMessage\\Tests\\": "tests/"
22-
}
23-
},
2420
"scripts": {
2521
"test": "phpunit --configuration phpunit.xml",
2622
"lint": "phpcs --standard=phpcs.xml",
@@ -32,4 +28,4 @@
3228
"name": "WizardLoop"
3329
}
3430
]
35-
}
31+
}

phpcs.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0"?>
2-
<ruleset name="JewishPulse">
3-
<description>PHP CodeSniffer configuration for JewishPulse</description>
2+
<ruleset name="GetAnyMessage">
3+
<description>PHP CodeSniffer configuration</description>
44
<file>src</file>
5-
<file>tests</file>
65
<exclude-pattern>vendor/*</exclude-pattern>
76
<rule ref="PSR12"/>
87
</ruleset>

phpunit.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)