Skip to content

Commit

Permalink
set 1.8.29 as current version, add git sha for installation
Browse files Browse the repository at this point in the history
  • Loading branch information
macovsky committed Nov 2, 2024
1 parent aa891d2 commit 10d1b6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/telega-ellit.org
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ Thanks to [[https://t.me/ritsch_master][=@ritsch_master=]]
** Building TDLib

[[https://core.telegram.org/tdlib][TDLib]] is the library for building Telegram clients. It requires a
large amount of memory to be built. Make sure you are using TDLib
version greater or equal to {{{eval(telega-tdlib-min-version, t)}}}.
large amount of memory to be built. Make sure you are using TDLib version
~{{{eval(telega-tdlib-min-version, t)}}}~ (SHA ~{{{eval(telega-tdlib-min-sha, t)}}}~).

On MacOS you can install a pre-built =TDLib= package using homebrew
from [[https://brew.sh][brew.sh]]. Just run:
Expand Down
4 changes: 3 additions & 1 deletion telega.el
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
;; Version: 0.8.293
(defconst telega-version "0.8.293")
(defconst telega-server-min-version "0.7.7")
(defconst telega-tdlib-min-version "1.8.29")
(defconst telega-tdlib-min '("1.8.29" . "12c1689b5"))
(defconst telega-tdlib-min-version (car telega-tdlib-min))
(defconst telega-tdlib-min-sha (cdr telega-tdlib-min))
(defconst telega-tdlib-max-version nil)

(defconst telega-tdlib-releases '("1.8.0" . "1.9.0")
Expand Down

0 comments on commit 10d1b6e

Please sign in to comment.