Skip to content

Commit

Permalink
fix nextcloud 24
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre R d'anzi committed Jun 8, 2022
1 parent b212094 commit 3d89f10
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Mac, with sync capabilities
- Statistics : words/sentences/characters
- Sync with ownCloud/NextCloud
- Online editor as a ownCloud/NextCloud App]]></description>
<version>0.24.4</version>
<version>0.24.5</version>
<licence>agpl</licence>
<author mail="[email protected]" >Phie</author>
<namespace>Carnet</namespace>
Expand All @@ -33,7 +33,7 @@ Mac, with sync capabilities
<filesystem/>
</types>
<dependencies>
<nextcloud min-version="13" max-version="23"/>
<nextcloud min-version="13" max-version="24"/>
<owncloud min-version="10" max-version="10"/>

</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions lib/Migration/Version002401Date20210711195249.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ public function changeSchema(IOutput $output, Closure $schemaClosure, array $opt
'notnull' => true,
'length' => 191,
]);
$table->addColumn('metadata', 'string', [
$table->addColumn('metadata', 'text', [
'notnull' => false,
'length' => 10000000,
]);
$table->addColumn('last_modification_file', 'integer', [
'notnull' => false,
]);
$table->addColumn('low_case_text', 'string', [
$table->addColumn('low_case_text', 'text', [
'notnull' => false,
'length' => 10000000,
]);
Expand Down
4 changes: 2 additions & 2 deletions to_stable_branch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ version=$(sed -n -e 's/.*<version>\(.*\)<\/version>.*/\1/p' appinfo/info.xml)
git branch -D stable
git push origin --delete stable
git push framagit --delete stable
git checkout master
git checkout main
git checkout -b stable
git push origin stable
git push framagit stable
git checkout -b stable-$version
git push origin stable-$version
git push framagit stable-$version
git checkout master
git checkout main
cd templates/CarnetElectron
git checkout -b nextcloud-stable-$version
git push origin nextcloud-stable-$version
Expand Down

0 comments on commit 3d89f10

Please sign in to comment.