Skip to content

Commit

Permalink
fix schema for oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
icewind1991 committed Jul 6, 2021
1 parent 2174ecd commit 48b051a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 33 deletions.
29 changes: 0 additions & 29 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,32 +31,3 @@ clean:
version:
VERSION=$$(grep -ozP "DocsAPI\.DocEditor\.version\s*=\s*function\(\) *\{\n\s+return\s\'\K(\d+.\d+.\d+)" 3rdparty/onlyoffice/documentserver/web-apps/apps/api/documents/api.js) ;\
sed -i "s/return '[0-9.]*'/return '$$VERSION'/" lib/OnlyOffice/WebVersion.php

appstore: clean 3rdparty/onlyoffice/documentserver version
mkdir -p $(sign_dir)
rsync -a \
--exclude=/docs \
--exclude=/build/sign \
--exclude=/translationfiles \
--exclude=/.tx \
--exclude=/tests \
--exclude=/.git \
--exclude=/.github \
--exclude=/l10n/l10n.pl \
--exclude=/CONTRIBUTING.md \
--exclude=/issue_template.md \
--exclude=/README.md \
--exclude=/screenshots \
--exclude=/node_modules \
--exclude=/.gitattributes \
--exclude=/.gitignore \
--exclude=/.scrutinizer.yml \
--exclude=/.travis.yml \
--exclude=/Makefile \
$(project_dir)/ $(sign_dir)/$(app_name)
tar -czf $(build_dir)/$(app_name).tar.gz \
-C $(sign_dir) $(app_name)
@if [ -f $(cert_dir)/$(app_name).key ]; then \
echo "Signing package…"; \
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64; \
fi
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The community document server will automatically be configured if no other docum
Additionally, the community document server only supports running on x86-64 Linux servers.]]>
</description>
<version>0.1.9</version>
<version>0.1.10</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<namespace>DocumentServer</namespace>
Expand All @@ -31,7 +31,7 @@ Additionally, the community document server only supports running on x86-64 Linu
<screenshot>https://raw.githubusercontent.com/nextcloud/documentserver_community/master/screenshots/main.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/documentserver_community/master/screenshots/new.png</screenshot>
<dependencies>
<nextcloud min-version="20" max-version="21"/>
<nextcloud min-version="20" max-version="22"/>
</dependencies>

<background-jobs>
Expand Down
4 changes: 2 additions & 2 deletions lib/Migration/Version001000Date20190806104527.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
'length' => 64,
]);
$table->addColumn('processing', 'boolean', [
'notnull' => true,
'notnull' => false,
'default' => false
]);
$table->setPrimaryKey(['change_id']);
Expand Down Expand Up @@ -73,7 +73,7 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
'length' => 6
]);
$table->addColumn('readonly', 'boolean', [
'notnull' => true
'notnull' => false
]);
$table->addColumn('user_index', 'bigint', [
'notnull' => true,
Expand Down

0 comments on commit 48b051a

Please sign in to comment.