Skip to content

Commit

Permalink
Commit 1
Browse files Browse the repository at this point in the history
  • Loading branch information
blueset committed Mar 7, 2017
1 parent b55dda8 commit 6522620
Show file tree
Hide file tree
Showing 26 changed files with 913 additions and 328 deletions.
17 changes: 17 additions & 0 deletions Untitled
@@ -0,0 +1,17 @@
1.6.0: Thanks to the donations from an anonymous EFB user and zong meng.

# Notice
* ETM: Backup your database (`plugins/eh_telegram_master/tgdata.db`) before upgrading.

# EFB framework
* New required method for slave channels: `get_chat`

# EFB Telegram Master
* Add detailed error dispatching mechanism
* Add mute feature
* Enhancements on multiple remote chat linking
* Multiple remote chat linking is now enabled by default. (Flag `multiple_slave_chats` now has a default value of `True`.)
* New command: `/info` — show information about the current Telegram conversation.

# EFB WeChat Slave
* New flag: `imgcat_qr` — Render QR code in terminal in [iTerm's Image Protocol](https://www.iterm2.com/documentation-images.html).
279 changes: 0 additions & 279 deletions channel.py

This file was deleted.

7 changes: 7 additions & 0 deletions docs/API/channel.rst
@@ -0,0 +1,7 @@
EFBChannel
==========

This is the documentation for a EFB :term:`Channel`.

.. autoclass:: ehforwarderbot.channel.EFBChannel
:members:
4 changes: 4 additions & 0 deletions docs/API/chat.rst
@@ -0,0 +1,4 @@
EFBChat
=======
.. autoclass:: ehforwarderbot.chat.EFBChat
:members:
6 changes: 6 additions & 0 deletions docs/API/constants.rst
@@ -0,0 +1,6 @@
Constants
=========

.. automodule:: ehforwarderbot.constants
:members:
:undoc-members:
7 changes: 7 additions & 0 deletions docs/API/index.rst
@@ -0,0 +1,7 @@
API Documentations
==================

.. toctree::
:glob:

*
4 changes: 4 additions & 0 deletions docs/API/message.rst
@@ -0,0 +1,4 @@
EFBMsg
======
.. autoclass:: ehforwarderbot.message.EFBMsg
:members:
2 changes: 1 addition & 1 deletion docs/channel.md
Expand Up @@ -76,7 +76,7 @@ Returns a `list` of `dict`s for available chats in the channel. Each `dict` shou
"name": "Name of the chat",
"alias": "Alternative name of the chat (alias, nickname, remark name, contact name, etc)", # None if N/A
"uid": "Unique ID of the chat",
"type": MsgSource.User # or MsgSource.Group
"type": ChatType.User # or ChatType.Group
}
```

Expand Down

0 comments on commit 6522620

Please sign in to comment.