Skip to content

Commit

Permalink
1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LinneyS committed Jun 29, 2023
1 parent 01d1dc4 commit 50a4ddb
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Change Log

## 1.6.0
- nodejs: setUsers for region protection
- si skin languages
- fix "no" skin languages
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<appSettings>
<clear />
<add key="version" value="1.5.1"/>
<add key="version" value="1.6.0"/>

<add key="filesize-max" value="52428800"/>
<add key="storage-path" value=""/>
Expand Down
2 changes: 1 addition & 1 deletion web/documentserver-example/csharp/settings.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<appSettings>
<clear />
<add key="version" value="1.5.1"/>
<add key="version" value="1.6.0"/>

<add key="filesize-max" value="52428800"/>
<add key="storage-path" value=""/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
server.version=1.5.1
server.version=1.6.0

server.address=
server.port=4000
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=1.5.1
version=1.6.0

filesize-max=5242880
storage-folder=app_data
Expand Down
2 changes: 1 addition & 1 deletion web/documentserver-example/nodejs/config/default.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.1",
"version": "1.6.0",
"log": {
"appenders": [
{
Expand Down
2 changes: 1 addition & 1 deletion web/documentserver-example/php/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.1",
"version": "1.6.0",

"fileSizeMax": 5242880,
"storagePath": "",
Expand Down
2 changes: 1 addition & 1 deletion web/documentserver-example/python/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

VERSION = '1.5.1'
VERSION = '1.6.0'

FILE_SIZE_MAX = 5242880
STORAGE_PATH = 'app_data'
Expand Down
2 changes: 1 addition & 1 deletion web/documentserver-example/ruby/config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Application < Rails::Application
end
end

Rails.configuration.version="1.5.1"
Rails.configuration.version="1.6.0"

Rails.configuration.fileSizeMax=5242880
Rails.configuration.storagePath="app_data"
Expand Down

0 comments on commit 50a4ddb

Please sign in to comment.