rename to aviod conflict with the original version
This commit is contained in:
parent
ac7a8896cf
commit
36b2750208
3 changed files with 9 additions and 17 deletions
15
README.md
15
README.md
|
@ -1,13 +1,4 @@
|
|||
# HateHeif
|
||||
A simple [maubot](https://github.com/maubot/maubot) plugin
|
||||
that converts HEIF media into something normal ;-) and sends back
|
||||
to the room.
|
||||
# Heic2Jpeg
|
||||
A [maubot](https://github.com/maubot/maubot) plugin that convert HEIC/HEIF into JPEG
|
||||
|
||||
- Works well in encrypted and unencrypted rooms.
|
||||
- Requires no configuration, plug & play!
|
||||
|
||||
## Support
|
||||
Join ```#maubot:sergevictor.eu``` room.
|
||||
|
||||
## License
|
||||
MIT License.
|
||||
Forked from [hateheif](https://github.com/ser/maubot-hateheif)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# Lain Iwakura <lain@serialexperiments.club>
|
||||
|
||||
from io import BytesIO
|
||||
from typing import Tuple
|
||||
|
@ -111,7 +112,7 @@ async def send_unencrypted_message(
|
|||
await client.send_message(room_id, content)
|
||||
|
||||
|
||||
class HateHeifBot(Plugin):
|
||||
class HeicToJpeg(Plugin):
|
||||
async def start(self) -> None:
|
||||
await super().start()
|
||||
self.config.load_and_update()
|
|
@ -1,11 +1,11 @@
|
|||
id: eu.sergevictor.hateheif
|
||||
version: 0.99.100
|
||||
id: club.serialexperiments.heic2jpeg
|
||||
version: 0.1.0
|
||||
license: MIT
|
||||
modules:
|
||||
- hateheif
|
||||
- heic2jpeg
|
||||
config: true
|
||||
extra_files:
|
||||
- base-config.yaml
|
||||
main_class: HateHeifBot
|
||||
main_class: HeicToJpeg
|
||||
dependencies:
|
||||
- pillow-heif
|
||||
|
|
Loading…
Add table
Reference in a new issue