Skip to content

Commit d46dd32

Browse files
committed
Update to 2.8.0
1 parent 0001fe3 commit d46dd32

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# WProofreader Plugin for WordPress Changelog
22

3-
## 2.7.1 - 2024-10-01
3+
## 2.8.0 - 2025-06-25
4+
5+
* Fixed issue with user preferences not being remembered. A recent issue caused user-selected options (e.g., selected language, ignore settings, enabled check types) to reset on every page reload. Now, these preferences are stored.
6+
* Compact badge enabled by default. Users can now click directly on the badge to launch the proofreading dialog. In earlier versions, this required hovering over the badge and selecting the “proofread in dialog” option.
7+
* Improved suggestion mode in dialog. The dialog now opens in an extended view that shows all suggestions at once. Previously, users had to go through suggestions one by one.
8+
9+
## 2.7.1 - 2025-06-09
410
* Renamed WeDevs_Settings_API to WSC_Settings_API and WeDevs_Settings_API_Test to WSC_Settings to avoid naming conflicts with other plugins using similar settings API classes.
511

612
## 2.7.0 – 2025-02-18

assets/proofreaderConfig.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ window.WEBSPELLCHECKER_CONFIG = {
1616
settingsSections: WSCProofreaderConfig.settingsSections,
1717
serviceId: WSCProofreaderConfig.key_for_proofreader,
1818
lang: WSCProofreaderConfig.slang,
19-
globalBadge: true,
2019
badgeOffsetX: 300,
2120
badgeOffsetY: 34,
2221
enableBadgeButton: disableBadgeButton,
2322
actionItems: actionItems,
2423
disableAutoSearchIn: ['.wp-block-table__cell-content','.ui-autocomplete-input','#wp-link-url'],
24+
disableOptionsStorage: [],
25+
globalBadge: true,
26+
compactBadge: true,
27+
allSuggestionsMode: true,
2528
onLoad:
2629
function () {
2730
var self = this;

readme.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Donate link: https://www.webspellchecker.com/
55
Requires at least: 6.6
66
Tested up to: 6.7
77
Requires PHP: 7.4
8-
Stable tag: 2.7.0
8+
Stable tag: 2.8.0
99
License: GPL-2.0+
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.txt
1111

@@ -179,7 +179,12 @@ Sure, please let us know how we can make the plugin more useful for you. Create
179179
10. WProofreader WordPress plugin settings page.
180180

181181
== Changelog ==
182-
= 2.7.1 – 2025-02-18 =
182+
= 2.8.0 – 2025-06-25 =
183+
* Fixed issue with user preferences not being remembered. A recent issue caused user-selected options (e.g., selected language, ignore settings, enabled check types) to reset on every page reload. Now, these preferences are stored.
184+
* Compact badge enabled by default. Users can now click directly on the badge to launch the proofreading dialog. In earlier versions, this required hovering over the badge and selecting the “proofread in dialog” option.
185+
* Improved suggestion mode in dialog. The dialog now opens in an extended view that shows all suggestions at once. Previously, users had to go through suggestions one by one.
186+
187+
= 2.7.1 – 2025-06-09 =
183188
* Renamed WeDevs_Settings_API to WSC_Settings_API and WeDevs_Settings_API_Test to WSC_Settings to avoid naming conflicts with other plugins using similar settings API classes.
184189

185190
= 2.7.0 – 2025-02-18 =

webspellchecker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WProofreader
44
* Plugin URI: https://webspellchecker.com/
55
* Description: WProofreader checks spelling, grammar, and style in real-time while editing in WordPress.
6-
* Version: 2.7.1
6+
* Version: 2.8.0
77
* Author: WebSpellChecker
88
* Author URI: https://webspellchecker.com/
99
* Text Domain: webspellchecker
@@ -17,7 +17,7 @@ final class WProofreader {
1717
const TRIAL_CUSTOMER_ID = '1:cma3h3-HTiyU3-JL08g4-SRyuS1-a9c0F3-kH6Cu-OlMHS-thcSV2-HlGmv3-YzRCN2-qrKY42-uPc';
1818
const SLANG = 'en_US';
1919
const BADGE_BUTTON = 'on';
20-
const PLUGIN_VERSION = "2.7.1";
20+
const PLUGIN_VERSION = "2.8.0";
2121
private static $instance = null;
2222
private $js_added = false;
2323
private $settings;

0 commit comments

Comments
 (0)