diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 153a3ce..6ff3ef0 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -16,7 +16,7 @@ jobs:
- name: Cache Composer packages
id: composer-cache
- uses: actions/cache@v2
+ uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
diff --git a/README.md b/README.md
index d1d9a9d..4c870b0 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ Provides compatibility between the [Gravity Forms Signature](https://www.gravity
### Notes
-* Tested with Gravity Forms Signature plugin version 4.6.0
+* Tested with Gravity Forms Signature plugin version 4.8.1
### Support, Feedback, & Contribute
diff --git a/changelog.txt b/changelog.txt
index 9023a0b..c6ccdee 100644
--- a/changelog.txt
+++ b/changelog.txt
@@ -1,3 +1,6 @@
== Changelog ==
+= 0.0.2 =
+* Tested with Gravity Forms Sugnature version 4.8.1
+
= 0.0.1 =
* Initial public release.
diff --git a/changes.md b/changes.md
index 74999db..fef8eac 100644
--- a/changes.md
+++ b/changes.md
@@ -1,3 +1,5 @@
-#### 0.0.1
+#### 0.0.2
+- Tested with Gravity Forms Sugnature version 4.8.1
+#### 0.0.1
- Initial public release.
diff --git a/class-gravity-forms-signature.php b/class-gravity-forms-signature.php
index e6e3e7c..8e6f82a 100644
--- a/class-gravity-forms-signature.php
+++ b/class-gravity-forms-signature.php
@@ -64,7 +64,7 @@ public function gform_save_field_value($value, $lead, $field, $form, $input_id)
}
$filesystem = new \WP_Filesystem_Direct( false );
- $res = $filesystem->move($old_path, $file_path, true);
+ $filesystem->move($old_path, $file_path, true);
}
$name = self::GF_SIGNATURE_PATH . $value;
diff --git a/readme.txt b/readme.txt
index 5b91523..d196a5f 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,12 +1,12 @@
=== WP-Stateless - Gravity Forms Signature Addon ===
-Contributors: usability_dynamics, andypotanin, ideric, maxim.peshkov, planvova, obolgun
+Contributors: usability_dynamics, andypotanin, ideric, planvova, obolgun
Donate link: https://udx.io
Tags: gravity forms signature, gravity forms signature addon extension, google cloud storage, stateless, wp-stateless
License: GPLv2 or later
Requires PHP: 8.0
Requires at least: 5.0
-Tested up to: 6.5.3
-Stable tag: 0.0.1
+Tested up to: 6.8
+Stable tag: 0.0.2
Provides compatibility between the Gravity Forms Signature and the WP-Stateless plugins.
@@ -20,7 +20,7 @@ Provides compatibility between the [Gravity Forms Signature](https://www.gravity
= Notes =
-* Tested with Gravity Forms Signature plugin version 4.6.0
+* Tested with Gravity Forms Signature plugin version 4.8.1
= Support, Feedback, & Contribute =
@@ -43,8 +43,9 @@ To ensure new releases cause as little disruption as possible, we rely on early
== Upgrade Notice ==
== Changelog ==
+= 0.0.2 =
+* Tested with Gravity Forms Sugnature version 4.8.1
= 0.0.1 =
-
* Initial public release.
diff --git a/wp-stateless-gravity-forms-signature-addon.php b/wp-stateless-gravity-forms-signature-addon.php
index 36d7b5e..950a870 100644
--- a/wp-stateless-gravity-forms-signature-addon.php
+++ b/wp-stateless-gravity-forms-signature-addon.php
@@ -5,12 +5,12 @@
* Plugin URI: https://stateless.udx.io/addons/gravity-forms-signature/
* Description: Provides compatibility between the Gravity Forms Signature and the WP-Stateless plugins.
* Author: UDX
- * Version: 0.0.1
- * Text Domain: slcagfs
+ * Version: 0.0.2
+ * Text Domain: wp-stateless-gravity-forms-signature-addon
* Author URI: https://udx.io
* License: GPLv2 or later
*
- * Copyright 2024 UDX (email: info@udx.io)
+ * Copyright 2025 UDX (email: info@udx.io)
*/
namespace SLCA\GravityFormSignature;
@@ -24,7 +24,7 @@
add_filter('plugin_row_meta', function ($plugin_meta, $plugin_file, $_, $__) {
if ($plugin_file !== join(DIRECTORY_SEPARATOR, [basename(__DIR__), basename(__FILE__)])) return $plugin_meta;
- $plugin_meta[] = sprintf('%s', __('This plugin requires WP-Stateless plugin version 3.4.0 or greater to be installed and active.', 'slcagfs'));
+ $plugin_meta[] = sprintf('%s', __('This plugin requires WP-Stateless plugin version 3.4.0 or greater to be installed and active.', 'wp-stateless-gravity-forms-signature-addon'));
return $plugin_meta;
}, 10, 4);
});