Skip to content

Commit 862fd98

Browse files
committed
Merge branch 'release/4.0.3'
2 parents a913b9e + ac0b05b commit 862fd98

19 files changed

+2162
-1352
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
### v4.0.3 ( Jul 02, 2025 ) ###
2+
3+
- **fix:** Add gradient background style for fa-threads social icon.
4+
- **fix** Resolved an issue where array access warnings in vendor balance calculation were being triggered.
5+
- **fix** Resolved an issue where incorrect timestamp on sale price schedule hampering product sales schedule added from vendor dashboard.
6+
- **fix** Resolved an issue where stock quantity always shows 0 in vendor dashboard product edit screen.
7+
- **fix** Improved the format of payment methods in the withdrawal settings to ensure they are consistently returned as a zero-based indexed list in the REST API response.
8+
9+
110
### v4.0.2 ( Jun 03, 2025 ) ###
211

312
- **fix:** Resolved an issue where the single store page header style was broken on multiple themes.

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
**Requires at least:** 6.5
66
**Tested up to:** 6.8
77
**WC requires at least:** 8.5.0
8-
**WC tested up to:** 9.8.4
8+
**WC tested up to:** 9.9.5
99
**Requires PHP:** 7.4
10-
**Stable tag:** 4.0.2
10+
**Stable tag:** 4.0.3
1111
**License:** GPLv2 or later
1212
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
1313

@@ -348,6 +348,14 @@ A. Just install and activate the PRO version without deleting the free plugin. A
348348
19. Frontend → Product Delivery Schedules
349349

350350
## Changelog ##
351+
### v4.0.3 ( Jul 02, 2025 ) ###
352+
353+
- **fix:** Add gradient background style for fa-threads social icon.
354+
- **fix** Resolved an issue where array access warnings in vendor balance calculation were being triggered.
355+
- **fix** Resolved an issue where incorrect timestamp on sale price schedule hampering product sales schedule added from vendor dashboard.
356+
- **fix** Resolved an issue where stock quantity always shows 0 in vendor dashboard product edit screen.
357+
- **fix** Improved the format of payment methods in the withdrawal settings to ensure they are consistently returned as a zero-based indexed list in the REST API response.
358+
351359
### v4.0.2 ( Jun 03, 2025 ) ###
352360

353361
- **fix:** Resolved an issue where the single store page header style was broken on multiple themes.

assets/js/vue-admin.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/vue-bootstrap.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/src/less/store.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -521,6 +521,11 @@
521521
&.fa-flickr {
522522
color: #ff0084;
523523
}
524+
&.fa-threads {
525+
background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
526+
-webkit-background-clip: text;
527+
-webkit-text-fill-color: transparent;
528+
}
524529
}
525530
}
526531

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
}
1111
],
1212
"minimum-stability": "dev",
13+
"prefer-stable": true,
1314
"require": {
1415
"php": ">=7.4",
1516
"appsero/client": "^v2.0.4",

0 commit comments

Comments
 (0)