-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rephrase passage about current version and add its git SHA #501
Conversation
@@ -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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WDYT about setting the concrete version instead of "greater or equal to" since 1.8.38
is not supported yet?
also added SHA to help with installation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too many variables, simple string like "1.8.39-056963e" is better, also, it resembles what M-x telega-version RET
returns
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how about a compromise: one extra var as simple string for manual but code stays intact?
1038632
to
8c10c82
Compare
8c10c82
to
10d1b6e
Compare
10d1b6e
to
a51e38b
Compare
@@ -11,7 +11,8 @@ | |||
;; 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-version-with-sha "1.8.29-12c1689b5") | |||
(defconst telega-tdlib-min-version (car (split-string telega-tdlib-min-version-with-sha "-"))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait, we have sha1 in the etc/Dockerfile
, let's extract it from there while generating docs!
This avoids adding sha1 into multiple different places
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sounds good, closing this then.
- [upd] README.md update TDLib version - [enh] For documentation, extract TDLib version and branch from etc/Dockerfile, fixes #501 - [fix] Handle `avatar' palette context ignorance while reandering telega cat eyers, fixes - [enh] Use sender of message at point as default member for `telega-completing-read-chat-member', fixes #504 Version -> 0.8.391
No description provided.