Skip to content

Commit

Permalink
tdl v7.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eilvelia committed Sep 21, 2023
1 parent df9a7a7 commit 22552ac
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

<!-- Hi! -->

## tdl@7.3.2 (2023-09-21)

- Fixed `Symbol not found: node_register_module_v…` errors on some platforms.
- Fixed passing falsy values to `tdl.configure`.

## prebuilt-tdlib@td-1.8.14 (2023-06-26)

Changes were made to the building process of `prebuilt-tdlib`:
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function should be called before `tdl.createClient` or `tdl.execute`.
tdl.configure({
// Path to the library. By default, it is 'tdjson.dll' on Windows,
// 'libtdjson.dylib' on macOS, or 'libtdjson.so' otherwise.
tdjson: '...',
tdjson: 'libtdjson.so',
// Path to the library directory. By default, it is empty string.
libdir: '...',
// Verbosity level of TDLib. By default, it is 2.
Expand Down Expand Up @@ -246,12 +246,12 @@ await client.login(() => ({
The `getName` function is called if the user is not signed up.
It is possible (and advisable for larger apps) not to use the `client.login`
helper and implement the authorization process manually, handling
`authorizationStateWaitPhoneNumber` and other updates. This function supports
only a subset of authentication methods available on Telegram.
`client.login` supports only a subset of authentication methods available on
Telegram. It is possible (and advisable for larger apps) not to use the
`client.login` helper and implement the authorization process manually, handling
`authorizationStateWaitPhoneNumber` and other updates.
`client.login` accepts the following interface:
This function accepts the following interface:
```typescript
type LoginDetails = {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/tdl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tdl",
"version": "7.3.1",
"version": "7.3.2",
"description": "Node.js bindings to TDLib (Telegram Database library)",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit 22552ac

Please sign in to comment.