Merge remote-tracking branch 'remotes/origin/develop' into feature/diagrams-editor

# Conflicts:
#	.gitmodules
#	CHANGELOG.md
This commit is contained in:
Sergey Linnik
2025-02-11 18:14:51 +03:00
67 changed files with 142 additions and 70 deletions

View File

@ -22,7 +22,7 @@ from src.common import string
class ConfigurationManager:
version = '1.12.0'
version = '1.13.0'
def getVersion(self) -> str:
return self.version

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 168 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -107,6 +107,10 @@
innerAlert("Document editor closed successfully");
};
var onUserActionRequired = function () {
console.log("User action required");
};
// the meta information of the document is changed via the meta command
var onMetaChange = function (event) {
if (event.data.favorite !== undefined) {
@ -367,6 +371,7 @@
config.events = {
'onAppReady': onAppReady,
'onDocumentStateChange': onDocumentStateChange,
'onUserActionRequired': onUserActionRequired,
'onError': onError,
'onOutdatedVersion': onOutdatedVersion,
'onMakeActionLink': onMakeActionLink,