Skip to content

Commit eadd8de

Browse files
Merge pull request #203 from vitalygashkov/next
Support Kinopoisk login via SMS confirm or without 2FA
2 parents 60111fc + 24d239b commit eadd8de

File tree

8 files changed

+6
-14
lines changed

8 files changed

+6
-14
lines changed

README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,13 @@ Streamyx is a tool that allows you to download videos for offline-viewing.
1717

1818
<div align="left">
1919
<span>English</span> •
20-
<a href="https://github.com/vitalygashkov/streamyx/tree/main/docs/README.ru.md">Pусский</a>
20+
<a href="https://github.com/vitalygashkov/streamyx/tree/main/README.ru.md">Pусский</a>
2121
</div>
2222

2323
## Installation
2424

2525
Download build from [latest release](https://github.com/vitalygashkov/streamyx/releases/latest) (for Windows: `streamyx-win-x64.zip`) and unzip.
2626

27-
> [!NOTE]
28-
> Custom **Widevine client** data are required for DRM-protected content. Usually it is two files - `device_client_id_blob` and `device_private_key`. They should be placed in `files` folder next to the executable file.
29-
3027
## Getting Started
3128

3229
Open terminal from the folder where the executable file is located and run the application.

docs/README.ru.md renamed to README.ru.md

-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ Streamyx - программа для скачивания видео для по
2424

2525
Скачайте сборку из [последнего релиза](https://github.com/vitalygashkov/streamyx/releases/latest) (для Windows: `streamyx-win-x64.zip`) и разархивируйте.
2626

27-
> [!NOTE]
28-
> Для скачивания защищенного контента необходимы данные пользовательского **клиента Widevine**. Обычно это два файла - `device_client_id_blob` и `device_private_key`. Их следует поместить в папку `files` рядом с запускаемой утилитой.
29-
3027
## Запуск
3128

3229
Откройте терминал в папке, где находится скачанный исполняемый файл и вызовите утилиту из терминала:

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "streamyx",
3-
"version": "4.0.0-beta.63",
3+
"version": "4.0.0-beta.64",
44
"author": "Vitaly Gashkov <[email protected]>",
55
"description": "Powerful media downloader",
66
"main": "dist/src/app/main.js",

packages/esor

Submodule esor updated from d6a455f to 04e44f1

src/app

Submodule app updated from d6375c9 to eb43ddc

src/core/lib/prompt.ts

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export class Prompt extends EventEmitter implements IPrompt {
2525
const response = new Promise<PromptFormResponse>((resolve) => {
2626
this.emit('form', form);
2727
this.addListener('form:response', (response) => {
28-
console.log({ response });
2928
resolve(response);
3029
});
3130
});

src/core/lib/service.ts

-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ export const registerService = <T extends RegisterService<T>>(
122122
const name = instance.name;
123123
core.http = new Http();
124124
core.store = createStore(name);
125-
core.log.debug(`Service registered: ${name}`);
126125
instance.core = core;
127126
return instance as ServiceInstance<ReturnType<ReturnType<T>>['api']> & {
128127
api: NonNullable<ReturnType<ReturnType<T>>['api']>;

0 commit comments

Comments
 (0)