Skip to content

Commit f878585

Browse files
author
Brett Gilio
authored
Merge pull request #248 from zevlg/master
Merge Master into Releases
2 parents e6d6219 + f74d685 commit f878585

33 files changed

+2821
-396
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
44
patreon: # Replace with a single Patreon username
5-
open_collective: # Replace with a single Open Collective username
65
ko_fi: # Replace with a single Ko-fi username
76
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
87
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
98
liberapay: # Replace with a single Liberapay username
109
issuehunt: # Replace with a single IssueHunt username
1110
otechie: # Replace with a single Otechie username
11+
open_collective: telega
1212
custom: ['https://www.donationalerts.com/r/zevlg']

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![CI test](https://github.com/zevlg/telega.el/workflows/CI/badge.svg)](https://github.com/zevlg/telega.el/actions) [![Telegram chat](https://img.shields.io/badge/chat-%40emacs__telega-%2335ADE1)](https://t.me/emacs_telega) [![TDLib](https://img.shields.io/badge/tdlib-v1.7.0-%2335ADE1)](https://github.com/tdlib/td) [![MELPA](https://melpa.org/packages/telega-badge.svg)](https://melpa.org/#/telega) [![MELPA Stable](http://stable.melpa.org/packages/telega-badge.svg)](http://stable.melpa.org/#/telega) [![GNU Guix](https://img.shields.io/badge/GNU%20Guix-0.7.1-blue)](https://guix.gnu.org/packages/emacs-telega-0.7.1-1.1d28dc2/)
1+
[![CI test](https://github.com/zevlg/telega.el/workflows/CI/badge.svg)](https://github.com/zevlg/telega.el/actions) [![Telegram chat](https://img.shields.io/badge/chat-%40emacs__telega-%2335ADE1?logo=telegram)](https://t.me/emacs_telega) [![TDLib](https://img.shields.io/badge/TDLib-v1.7.0-%2335ADE1)](https://github.com/tdlib/td) [![MELPA](https://melpa.org/packages/telega-badge.svg)](https://melpa.org/#/telega) [![MELPA Stable](http://stable.melpa.org/packages/telega-badge.svg)](http://stable.melpa.org/#/telega) [![GNU Guix](https://img.shields.io/badge/GNU%20Guix-0.7.1-blue)](https://guix.gnu.org/packages/emacs-telega-0.7.1-1.1d28dc2/) [![Open Collective](https://opencollective.com/telega/tiers/badge.svg)](https://opencollective.com/telega)
22

33
# ![logo](etc/telega-logo.svg) telega.el
44

@@ -37,7 +37,7 @@ In some random order:
3737
- [x] Forwarding messages
3838
- [x] D-Bus notifications on incoming messages in chats with enabled
3939
notifications
40-
- [ ] VoIP calls, including D-Bus call notification
40+
- [ ] Voice/Video calls
4141
- [x] Downloading files from the cloud
4242
- [x] Uploading files/media (also pasting images from clipboard) to the cloud
4343
- [x] Display chat actions, such as "@user is typing..."
@@ -67,6 +67,8 @@ In some random order:
6767
- [ ] Cloud themes, see [TDLib#691](https://github.com/tdlib/td/issues/691)
6868
- [x] Telegram Folders (since TDLib 1.6.6)
6969
- [x] Disable/Enable message notification on receiver side
70+
- [x] Sticker Outlines (since TDLib 1.7.X+), see Emacs Story - https://t.me/emacs_stories/73
71+
- [ ] Voice Chats (since TDLib 1.7.X+)
7072

7173
## Unique features
7274

@@ -77,6 +79,7 @@ In some random order:
7779
- [x] Get diff for the message edits, see [screenshot](https://zevlg.github.io/telega/screen-13.png)
7880
- [x] [Messages squashing](https://zevlg.github.io/telega.el/#telega-squash-message-mode) minor mode.
7981
- [x] [Highlight code blocks](https://zevlg.github.io/telega.el/#telega-mnzel--display-emacs-content-inside-telega-messages) minor mode.
82+
- [x] [Emacs Stories](https://zevlg.github.io/telega.el/#telega-storiesel--display-emacs-stories-in-the-dashboard) - share your Emacs experience with other Emacs users.
8083

8184
And much more.
8285

contrib/telega-dashboard.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"Add at most LIST-SIZE important telega chats."
6161
(when (and (display-graphic-p)
6262
dashboard-set-heading-icons)
63-
;; Insert telega log icon
63+
;; Insert telega logo icon
6464
(unless telega-dashboard--cached-icon
6565
(setq telega-dashboard--cached-icon
6666
(find-image
@@ -95,9 +95,9 @@
9595
(insert "\n ")
9696
(let ((telega-root-fill-column (- dashboard-banner-length 4)))
9797
(telega-button--insert 'telega-chat chat
98-
:inserter telega-dashboard-chat-inserter)))
99-
(dashboard-insert-shortcut
100-
(dashboard-get-shortcut 'telega-chats) "Telega Chats:")))))
98+
:inserter telega-dashboard-chat-inserter)))))
99+
(dashboard-insert-shortcut
100+
(dashboard-get-shortcut 'telega-chats) "Telega Chats:")))
101101

102102
(provide 'telega-dashboard)
103103

0 commit comments

Comments
 (0)