Skip to content

Commit 72b8d1f

Browse files
committed
[enh] secretchats: Use first 32 bytes to print key_hash in hex
Docs regenerated Version -> 0.7.15
1 parent 7528045 commit 72b8d1f

6 files changed

Lines changed: 35 additions & 29 deletions

File tree

docs/ROADMAP.org

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,8 @@ plist like:
458458

459459
** Tramp-alike files opening from Telegram cloud :important:
460460

461-
See ~file-name-handler-alist~
461+
- See ~file-name-handler-alist~
462+
- See ~url-handler-mode~
462463

463464
Specify it as part of interal =telega= link, like:
464465
~/telega:@zevlg#167430~

docs/index-master.html

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/telega-manual.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#+OPTIONS: timestamp:nil \n:t num:nil ellit-cid:t
2-
#+TITLE: Telega Manual (v0.7.14)
2+
#+TITLE: Telega Manual (v0.7.15)
33
#+AUTHOR: Zajcev Evgeny
44
#+startup: showall
55

telega-info.el

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,12 @@ If OFFLINE-P is non-nil, then do not send a request to telega-server."
374374
(telega-ins (propertize telega-symbol-square
375375
'face (nth kk efaces))))))
376376
(telega-ins "\n")
377-
(dotimes (ki (length ekey))
377+
378+
;; NOTE: TDLib docs: Alternatively, the first 32 bytes of
379+
;; the hash can be converted to the hexadecimal format and
380+
;; printed as 32 2-digit hex numbers
381+
(cl-assert (<= 32 (length ekey)))
382+
(dotimes (ki 32)
378383
(cond ((and (> ki 0) (= (% ki 8) 0))
379384
(telega-ins "\n"))
380385
((= (% ki 8) 4)

telega.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
;; Keywords: comm
99
;; Package-Requires: ((emacs "26.1") (visual-fill-column "1.9") (rainbow-identifiers "0.2.2"))
1010
;; URL: https://github.com/zevlg/telega.el
11-
;; Version: 0.7.14
12-
(defconst telega-version "0.7.14")
11+
;; Version: 0.7.15
12+
(defconst telega-version "0.7.15")
1313
(defconst telega-server-min-version "0.7.4")
1414
(defconst telega-tdlib-min-version "1.7.0")
1515
(defconst telega-tdlib-max-version nil)

0 commit comments

Comments
 (0)