diff --git a/appinfo/info.xml b/appinfo/info.xml
index f6345dc..05777ca 100755
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -19,7 +19,7 @@ Mac, with sync capabilities
- Statistics : words/sentences/characters
- Sync with ownCloud/NextCloud
- Online editor as a ownCloud/NextCloud App]]>
- 0.24.4
+ 0.24.5
agpl
Phie
Carnet
@@ -33,7 +33,7 @@ Mac, with sync capabilities
-
+
diff --git a/lib/Migration/Version002401Date20210711195249.php b/lib/Migration/Version002401Date20210711195249.php
index 9e8c7eb..47f446e 100644
--- a/lib/Migration/Version002401Date20210711195249.php
+++ b/lib/Migration/Version002401Date20210711195249.php
@@ -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,
]);
diff --git a/to_stable_branch.sh b/to_stable_branch.sh
index d685d73..ff5a1ba 100644
--- a/to_stable_branch.sh
+++ b/to_stable_branch.sh
@@ -4,14 +4,14 @@ version=$(sed -n -e 's/.*\(.*\)<\/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