Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
BingLingGroup committed Mar 18, 2020
2 parents 57b47f5 + 12960cf commit 9d06adf
Show file tree
Hide file tree
Showing 12 changed files with 837 additions and 535 deletions.
22 changes: 17 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## TOC

- [Unreleased](#unreleased)
- [Added](#addedunreleased)
- [Changed](#changedunreleased)
- [0.1.1-alpha - 2020-03-18](#011-alpha---2020-03-18)
- [Added](#added011-alpha)
- [Changed](#changed011-alpha)
- [0.1.0-alpha - 2020-03-11](#010-alpha---2020-03-11)
- [Added](#added040-alpha)
- [Added](#added010-alpha)

Click up arrow to go back to TOC.

### [Unreleased]
### Unreleased

### [0.1.1-alpha] - 2020-03-18

#### Added(0.1.1-alpha)

- Add option to input a group of options to avoid starting the delethon multiple times.

#### Changed(0.1.1-alpha)

- Fix print bugs.

### [0.1.0-alpha] - 2020-03-11

Expand All @@ -27,5 +38,6 @@ Click up arrow to go back to TOC.

<escape><a href = "#TOC">&nbsp;&nbsp;</a></escape>

[Unreleased]: https://github.com/BingLingGroup/autosub/compare/0.1.0-alpha...HEAD
[Unreleased]: https://github.com/BingLingGroup/autosub/compare/0.1.1-alpha...HEAD
[0.1.1-alpha]: https://github.com/BingLingGroup/autosub/compare/0.1.0-alpha...0.1.1-alpha
[0.1.0-alpha]: https://github.com/BingLingGroup/autosub/releases/tag/0.1.0-alpha
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ It can do:

It can not do:

- [ ] Delete the messages that's been cached or exported to the local storage.
- [ ] Delete the messages that's been cached, [anti-revoked](https://github.com/SpriteOvO/Telegram-Anti-Revoke) or exported to the local storage.
- [ ] Delete the messages in group's recent actions.
- [ ] Delete other people's messages for all in group chats unless you have the admin rights of the group.

Expand Down Expand Up @@ -79,10 +79,17 @@ pip install .

Include dependencies installation commands.

Install from `dev` branch.

```bash
apt install python3 python3-pip git -y
pip3 install git+https://github.com/BingLingGroup/delethon.git@dev
```

Install from `master` branch.

```bash
apt install python3 python-pip3 git -y
apt install python3 python3-pip git -y
pip3 install git+https://github.com/BingLingGroup/delethon.git@master
```

Expand All @@ -102,6 +109,15 @@ Choco installation command is for cmd.(not Powershell)
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
```

Install from `dev` branch.

```batch
choco install git python curl -y
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
pip install git+https://github.com/BingLingGroup/delethon.git@dev
```

Install from `master` branch.

```batch
Expand Down
Loading

0 comments on commit 9d06adf

Please sign in to comment.