Skip to content

Commit 701d1a2

Browse files
authored
Merge pull request #5 from udx/latest
Latest => 0.0.1
2 parents a29cd3f + efdd11f commit 701d1a2

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- name: Cache Composer packages
1818
id: composer-cache
19-
uses: actions/cache@v2
19+
uses: actions/cache@v4
2020
with:
2121
path: vendor
2222
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Provides compatibility between the [Gravity Forms Signature](https://www.gravity
88

99
### Notes
1010

11-
* Tested with Gravity Forms Signature plugin version 4.6.0
11+
* Tested with Gravity Forms Signature plugin version 4.8.1
1212

1313
### Support, Feedback, & Contribute
1414

changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
== Changelog ==
2+
= 0.0.2 =
3+
* Tested with Gravity Forms Sugnature version 4.8.1
4+
25
= 0.0.1 =
36
* Initial public release.

changes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
#### 0.0.1
1+
#### 0.0.2
2+
- Tested with Gravity Forms Sugnature version 4.8.1
23

4+
#### 0.0.1
35
- Initial public release.

class-gravity-forms-signature.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function gform_save_field_value($value, $lead, $field, $form, $input_id)
6464
}
6565

6666
$filesystem = new \WP_Filesystem_Direct( false );
67-
$res = $filesystem->move($old_path, $file_path, true);
67+
$filesystem->move($old_path, $file_path, true);
6868
}
6969

7070
$name = self::GF_SIGNATURE_PATH . $value;

readme.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
=== WP-Stateless - Gravity Forms Signature Addon ===
2-
Contributors: usability_dynamics, andypotanin, ideric, maxim.peshkov, planvova, obolgun
2+
Contributors: usability_dynamics, andypotanin, ideric, planvova, obolgun
33
Donate link: https://udx.io
44
Tags: gravity forms signature, gravity forms signature addon extension, google cloud storage, stateless, wp-stateless
55
License: GPLv2 or later
66
Requires PHP: 8.0
77
Requires at least: 5.0
8-
Tested up to: 6.5.3
9-
Stable tag: 0.0.1
8+
Tested up to: 6.8
9+
Stable tag: 0.0.2
1010

1111
Provides compatibility between the Gravity Forms Signature and the WP-Stateless plugins.
1212

@@ -20,7 +20,7 @@ Provides compatibility between the [Gravity Forms Signature](https://www.gravity
2020

2121
= Notes =
2222

23-
* Tested with Gravity Forms Signature plugin version 4.6.0
23+
* Tested with Gravity Forms Signature plugin version 4.8.1
2424

2525
= Support, Feedback, & Contribute =
2626

@@ -43,8 +43,9 @@ To ensure new releases cause as little disruption as possible, we rely on early
4343
== Upgrade Notice ==
4444

4545
== Changelog ==
46+
= 0.0.2 =
47+
* Tested with Gravity Forms Sugnature version 4.8.1
4648

4749
= 0.0.1 =
48-
4950
* Initial public release.
5051

wp-stateless-gravity-forms-signature-addon.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
* Plugin URI: https://stateless.udx.io/addons/gravity-forms-signature/
66
* Description: Provides compatibility between the Gravity Forms Signature and the WP-Stateless plugins.
77
* Author: UDX
8-
* Version: 0.0.1
9-
* Text Domain: slcagfs
8+
* Version: 0.0.2
9+
* Text Domain: wp-stateless-gravity-forms-signature-addon
1010
* Author URI: https://udx.io
1111
* License: GPLv2 or later
1212
*
13-
* Copyright 2024 UDX (email: info@udx.io)
13+
* Copyright 2025 UDX (email: info@udx.io)
1414
*/
1515

1616
namespace SLCA\GravityFormSignature;
@@ -24,7 +24,7 @@
2424

2525
add_filter('plugin_row_meta', function ($plugin_meta, $plugin_file, $_, $__) {
2626
if ($plugin_file !== join(DIRECTORY_SEPARATOR, [basename(__DIR__), basename(__FILE__)])) return $plugin_meta;
27-
$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'));
27+
$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'));
2828
return $plugin_meta;
2929
}, 10, 4);
3030
});

0 commit comments

Comments
 (0)