Compare commits

..

4 Commits

12 changed files with 12 additions and 10 deletions

View File

@ -1,5 +1,6 @@
# Change Log
## 1.4.0
- nodejs: option to send directUrl
- opening file on client by directUrl
- offline viewer for anonymous

View File

@ -1,7 +1,7 @@
<?xml version="1.0"?>
<appSettings>
<clear />
<add key="version" value="1.3.0"/>
<add key="version" value="1.4.0"/>
<add key="filesize-max" value="52428800"/>
<add key="storage-path" value=""/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<appSettings>
<clear />
<add key="version" value="1.3.0"/>
<add key="version" value="1.4.0"/>
<add key="filesize-max" value="52428800"/>
<add key="storage-path" value=""/>

View File

@ -76,7 +76,7 @@ public class IndexController {
List<Boolean> isFillFormDoc = new ArrayList<>();
List<String> langsAndKeys = Arrays.asList(langs.split("\\|"));
Map<String, String> languages = new HashMap<>();
Map<String, String> languages = new LinkedHashMap<>();
langsAndKeys.forEach((str) -> {
String[] couple = str.split(":");

View File

@ -1,4 +1,4 @@
server.version=1.3.0
server.version=1.4.0
server.address=
server.port=4000

View File

@ -72,6 +72,7 @@ header img {
}
.main{
display: table;
height: calc(100% - 112px);
min-height: 536px;
}

View File

@ -577,7 +577,7 @@ public class DocumentManager
String langs = ConfigManager.GetProperty("files.docservice.languages");
List<String> langsAndKeys = Arrays.asList(langs.split("\\|"));
Map<String, String> languages = new HashMap<>();
Map<String, String> languages = new LinkedHashMap<>();
langsAndKeys.forEach((str) -> {
String[] couple = str.split(":");

View File

@ -1,4 +1,4 @@
version=1.3.0
version=1.4.0
filesize-max=5242880
storage-folder=app_data

View File

@ -1,5 +1,5 @@
{
"version": "1.3.0",
"version": "1.4.0",
"log": {
"appenders": [
{

View File

@ -1,6 +1,6 @@
<?php
$GLOBALS['version'] = "1.3.0";
$GLOBALS['version'] = "1.4.0";
$GLOBALS['FILE_SIZE_MAX'] = 5242880;
$GLOBALS['STORAGE_PATH'] = "";

View File

@ -1,6 +1,6 @@
import os
VERSION = '1.3.0'
VERSION = '1.4.0'
FILE_SIZE_MAX = 5242880
STORAGE_PATH = 'app_data'

View File

@ -26,7 +26,7 @@ module OnlineEditorsExampleRuby
end
end
Rails.configuration.version="1.3.0"
Rails.configuration.version="1.4.0"
Rails.configuration.fileSizeMax=5242880
Rails.configuration.storagePath="app_data"