Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
== Changelog ==
= 0.0.2 =
* Tested with Gravity Forms Sugnature version 4.8.1

= 0.0.1 =
* Initial public release.
4 changes: 3 additions & 1 deletion changes.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion class-gravity-forms-signature.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
11 changes: 6 additions & 5 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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 =

Expand All @@ -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.

8 changes: 4 additions & 4 deletions wp-stateless-gravity-forms-signature-addon.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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('<span style="color:red;">%s</span>', __('This plugin requires WP-Stateless plugin version 3.4.0 or greater to be installed and active.', 'slcagfs'));
$plugin_meta[] = sprintf('<span style="color:red;">%s</span>', __('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);
});