View | Details | Raw Unified | Return to bug 273910
Collapse All | Expand All

(-)onlyoffice-documentserver/files/patch-server_Common_sources_constants.js (+11 lines)
Line 0 Link Here
1
--- server/Common/sources/constants.js.orig	2023-09-07 13:17:16 UTC
2
+++ server/Common/sources/constants.js
3
@@ -85,7 +85,7 @@ exports.LICENSE_RESULT = {
4
   NotBefore: 16
5
 };
6
 
7
-exports.LICENSE_CONNECTIONS = 20;
8
+exports.LICENSE_CONNECTIONS = 2000;
9
 exports.LICENSE_EXPIRE_USERS_ONE_DAY = 24 * 60 * 60; // day in seconds
10
 
11
 exports.AVS_OFFICESTUDIO_FILE_UNKNOWN =  0x0000;
(-)onlyoffice-documentserver/files/patch-web-apps_apps_documenteditor_mobile_src_lib_patch.jsx (+11 lines)
Line 0 Link Here
1
--- web-apps/apps/documenteditor/mobile/src/lib/patch.jsx.orig	2023-09-07 13:14:46 UTC
2
+++ web-apps/apps/documenteditor/mobile/src/lib/patch.jsx
3
@@ -4,7 +4,7 @@ const EditorUIController = () => {
4
 };
5
 
6
 EditorUIController.isSupportEditFeature = () => {
7
-    return false
8
+    return true
9
 };
10
 
11
 EditorUIController.getToolbarOptions = () => {
(-)onlyoffice-documentserver/files/patch-web-apps_apps_presentationeditor_mobile_src_lib_patch.jsx (+10 lines)
Line 0 Link Here
1
--- web-apps/apps/presentationeditor/mobile/src/lib/patch.jsx.orig	2023-09-07 13:15:25 UTC
2
+++ web-apps/apps/presentationeditor/mobile/src/lib/patch.jsx
3
@@ -1,6 +1,6 @@
4
 
5
 const EditorUIController = () => null;
6
 
7
-EditorUIController.isSupportEditFeature = () => false;
8
+EditorUIController.isSupportEditFeature = () => true;
9
 
10
 export default EditorUIController;
(-)onlyoffice-documentserver/files/patch-web-apps_apps_spreadsheeteditor_mobile_src_lib_patch.jsx (+10 lines)
Line 0 Link Here
1
--- web-apps/apps/spreadsheeteditor/mobile/src/lib/patch.jsx.orig	2023-09-07 13:16:07 UTC
2
+++ web-apps/apps/spreadsheeteditor/mobile/src/lib/patch.jsx
3
@@ -1,6 +1,6 @@
4
 
5
 const EditorUIController = () => null;
6
 
7
-EditorUIController.isSupportEditFeature = () => false;
8
+EditorUIController.isSupportEditFeature = () => true;
9
 
10
 export default EditorUIController;

Return to bug 273910