From 38941c37e8c75757b3574dc4df7c64e61b178163 Mon Sep 17 00:00:00 2001 From: TreJo Date: Fri, 17 Jan 2025 01:18:19 +0100 Subject: [PATCH 1/4] enable nextcloud 29 support --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 2114343..50ec92f 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -13,7 +13,7 @@ files https://git.verdigado.com/verdigado-public/nextcloud_groupfolder_filesystem_snapshots/issues - + pgsql sqlite mysql From 19362233f5482f0eea5ac3db0bdf89d6ccc634a7 Mon Sep 17 00:00:00 2001 From: Jonathan Treffler Date: Fri, 17 Jan 2025 01:22:49 +0100 Subject: [PATCH 2/4] bump version to 1.3.0 --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index 50ec92f..dd19fb1 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -5,7 +5,7 @@ Groupfolder Filesystem Snapshots Allows restoring a groupfolder to a previous snapshot in the filesystem App proving a PHP API for other apps, that allows (partially) restoring a groupfolder to a previous snapshot in the filesystem. Requires a filesystem with snapshot support (tested with and made for ZFS). It is made for other apps to integrate with, IT DOES NOT WORK STANDALONE - 1.2.0 + 1.3.0 agpl verdigado eG Jonathan Treffler From d8b0331d5e836f6f9fffeb2d8e367be8e9421477 Mon Sep 17 00:00:00 2001 From: TreJo Date: Wed, 19 Feb 2025 15:53:55 +0100 Subject: [PATCH 3/4] Add lib/Migration/Version131Date20250219152900.php --- .../Version131Date20250219152900.php | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib/Migration/Version131Date20250219152900.php diff --git a/lib/Migration/Version131Date20250219152900.php b/lib/Migration/Version131Date20250219152900.php new file mode 100644 index 0000000..51ff5fb --- /dev/null +++ b/lib/Migration/Version131Date20250219152900.php @@ -0,0 +1,35 @@ +getTable(self::RESULTS_TABLE); + + $table->modifyColumn('before_path', [ + 'length' => 2000, + ]); + $table->modifyColumn('current_path', [ + 'length' => 2000, + ]); + + return $schema; + } +} From dba0c38a1668cfdb52410fbfc36cd6a48bf3e62f Mon Sep 17 00:00:00 2001 From: TreJo Date: Wed, 19 Feb 2025 15:54:15 +0100 Subject: [PATCH 4/4] Update appinfo/info.xml --- appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appinfo/info.xml b/appinfo/info.xml index dd19fb1..7b0d2c6 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -5,7 +5,7 @@ Groupfolder Filesystem Snapshots Allows restoring a groupfolder to a previous snapshot in the filesystem App proving a PHP API for other apps, that allows (partially) restoring a groupfolder to a previous snapshot in the filesystem. Requires a filesystem with snapshot support (tested with and made for ZFS). It is made for other apps to integrate with, IT DOES NOT WORK STANDALONE - 1.3.0 + 1.3.1 agpl verdigado eG Jonathan Treffler