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