Add note about correct OpenSSL version for Node.js on Linux.
GitOrigin-RevId: 64647e21f5ba3e985c7dd50ea055a5cdb031b6cf
This commit is contained in:
parent
b78db4d902
commit
7f325dbd04
@ -491,6 +491,9 @@ function onOptionsChanged() {
|
||||
var compiler = use_clang ? 'clang++ >= 3.4' : 'g++ >= 4.9.2';
|
||||
pre_text.push('Install Git, ' + compiler + ', make, CMake >= 3.0.2, OpenSSL, zlib, gperf, PHP' + jdk + ' using your package manager.');
|
||||
}
|
||||
if (os_linux && os.includes('Node.js')) {
|
||||
pre_text.push('Note that for Node.js ≤ 9.11.2 you must build TDLib with OpenSSL 1.0.* and for Node.js ≥ 10 with OpenSSL 1.1.* instead, so you may need to modify the following commands to install a proper OpenSSL version.');
|
||||
}
|
||||
if (os_freebsd) {
|
||||
pre_text.push('Note that following instruction is for FreeBSD 11.');
|
||||
pre_text.push('Note that following calls to <code>pkg</code> needs to be run as <code>root</code>.');
|
||||
|
@ -17,4 +17,3 @@ which shouldn't be used in the JSON interface. The object type name is stored in
|
||||
Fields of Bool type are stored as Boolean, fields of int32, int53 and double types are stored as Number, fields of int64 and string types are stored as String,
|
||||
fields of bytes type are base64 encoded and then stored as String, fields of vector type are stored as Array.
|
||||
You can also add a field '@extra' to any query to TDLib and the response will contain field '@extra' with exactly the same value.
|
||||
|
||||
|
@ -1956,7 +1956,7 @@ pushMessageContentContactRegistered = PushMessageContent;
|
||||
//@description A document message (a general file) @document Message content; may be null @is_pinned True, if the message is a pinned message with the specified content
|
||||
pushMessageContentDocument document:document is_pinned:Bool = PushMessageContent;
|
||||
|
||||
//@description A message with a game @title Game title @is_pinned True, if the message is a pinned message with the specified content
|
||||
//@description A message with a game @title Game title, empty for pinned game message @is_pinned True, if the message is a pinned message with the specified content
|
||||
pushMessageContentGame title:string is_pinned:Bool = PushMessageContent;
|
||||
|
||||
//@description A new high score was achieved in a game @title Game title, empty for pinned message @score New score, 0 for pinned message @is_pinned True, if the message is a pinned message with the specified content
|
||||
|
Loading…
Reference in New Issue
Block a user