- Регистрация
- 22.01.2019
- Сообщения
- 2 096
- Реакции
- 4 556
- Баллы
- 113
Full changelog 2.6.0.0
Added:
+ Added an AI assistant to ProjectMaker. An integrated chat panel for communicating with large language models (OpenAI, Claude, Gemini, DeepSeek, Perplexity). Two operating modes are available:
- Assistant — read-only mode. The assistant answers questions, explains what the selected action block does, analyzes errors from the last run, and provides information about available parameters. The project is not modified, making this mode safe for production scenarios.
- Agent— full-access mode. The assistant can independently:
- add, modify, move, and delete action blocks of any type from the ZennoPoster catalog;
- create connections between them, including success and error branches, as well as create and rename groups;
- create and populate tables, lists, and variables, and link tables to Google Sheets;
- control the running browser: open and switch between tabs, navigate to URLs, read the DOM, click, enter text, and generate events;
- run individual action blocks and read their logs to iteratively debug the scenario;
- write code for OwnCode|CSharp blocks — the assistant knows the current C# API of the project, including IZennoPosterProjectModel, Instance, and other classes.
The AI assistant documentation in Markdown format is attached below.
Documentation: AI Assistant · MCP Setup
+ A new AI action block has also been added. This new action type allows you to call an LLM directly from a scenario. It supports the same providers as the chat, with centralized API key management in the program settings. It can be used for text generation, classification, data extraction, and translation, and can be integrated into existing projects without external scripts.
+ Added the ability to run ProjectMaker for ZennoDroid and ProjectMaker for ZennoPoster simultaneously (AI agents and MCP services do not interfere with each other).
+ Added support for the new emulator LDPlayer14 (based on Android 14).
+ Added the ability to execute commands that require superuser privileges without enabling the corresponding setting (Root).
+ Android interface animations are now disabled to improve performance.
+ All help information in the program now links to the new documentation.
+ The Action Builder has been moved to a separate dock panel. You can configure its position according to your preferences.
+ Scrcpy has been updated to version 4.1.0.
+ Added realistic touch emulation. It works on protected pages, touches are visible through getevent, and each touch has a size.
The feature can be enabled on the Settings tab using the “Use enhanced touches” option, or via C# code executed before connecting to the device:
instance.DroidInstance.Input.SetNativeEventMode(true);+ When using the Get application cookies action, encrypted values (`encrypted_value`) are now automatically decrypted.
+ Added new methods for working with cookies via C# code: retrieving, importing, and deleting:
string GetCookie(string packageName, string host, string name = null, bool persistentOnly = false, bool secureOnly = false, bool httpOnly = false);string ImportCookie(string packageName, string cookies, bool replaceAll = false);string DeleteCookie(string packageName, string host = null, string name = null, bool persistentOnly = false, bool secureOnly = false, bool httpOnly = false);Fixed:
* Fixed a bug that prevented the Clash whitelist/blacklist from being applied during the first installation.
* Fixed sending and receiving files with spaces in their names in LDPlayer.
* Fixed an issue that caused the template execution to stop when the connection to the device was lost.
* Fixed a ZennoDroid crash when stopping multiple templates simultaneously due to a lost Internet connection.
* Fixed Adb Shell command execution being interrupted after a timeout.
* Fixed a bug that could cause a mouse cursor to appear when using realistic touch emulation.
* Fixed a full reset when using the LDPlayer 14 emulator.
* Fixed high idle resource usage when installing ZennoBrowser.
Where to download?
ZennoDroid 2.6.0.0 is already available in your personal account!
You’ll also be prompted to update when launching ProjectMaker.
How to report bugs?
Please report all bugs using our form, along with a detailed description and a reproduction script. This will allow us to quickly diagnose and fix the issue.