Skip to content

Commit 4fedc48

Browse files
phucbmclaude
andcommitted
webp: set version back to 1.0.0 — no release cut yet
Fast mode was staged as 1.1.0, but 1.0.0 has never been tagged or published, so it belongs in the first release. Fold the Fast mode changelog bullets into 1.0.0 and drop the 1.1.0 section. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JUkZAhVg3tPuJ5y2Vu2cJx
1 parent 3399ecd commit 4fedc48

3 files changed

Lines changed: 12 additions & 18 deletions

File tree

.claude/plans/fast-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Fast mode — tab-driven conversion
22

3-
Status: **shipped** in 1.1.0. Implementation notes below the design match the
3+
Status: **shipped** in 1.0.0. Implementation notes below the design match the
44
code; the "Files touched" table is what actually landed.
55

66
A second way to run the bulk conversion: the browser tab drives the encode loop

perxel-image-optimizer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Perxel Image Optimizer
44
* Plugin URI: https://github.com/perxel/wp-image-optimizer
55
* Description: Local WebP conversion for your media library. No third-party CDN or external service, free, and it runs in the background. Serves WebP via a managed .htaccess block with a picture-tag fallback.
6-
* Version: 1.1.0
6+
* Version: 1.0.0
77
* Requires at least: 6.5
88
* Requires PHP: 7.4
99
* Author: Perxel
@@ -17,7 +17,7 @@
1717
exit;
1818
}
1919

20-
define( 'PERXEL_IMAGE_OPTIMIZER_VERSION', '1.1.0' );
20+
define( 'PERXEL_IMAGE_OPTIMIZER_VERSION', '1.0.0' );
2121
define( 'PERXEL_IMAGE_OPTIMIZER_FILE', __FILE__ );
2222
define( 'PERXEL_IMAGE_OPTIMIZER_DIR', plugin_dir_path( __FILE__ ) );
2323
define( 'PERXEL_IMAGE_OPTIMIZER_URL', plugin_dir_url( __FILE__ ) );

readme.txt

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: webp, images, performance, optimization, media
44
Requires at least: 6.5
55
Tested up to: 7.1
66
Requires PHP: 7.4
7-
Stable tag: 1.1.0
7+
Stable tag: 1.0.0
88
License: GPL-2.0-or-later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -58,23 +58,17 @@ The `.htaccess` swap is Apache-only. On nginx the plugin rewrites `<img>` tags t
5858

5959
== Changelog ==
6060

61-
= 1.1.0 =
62-
* Fast mode - an opt-in second way to run the bulk conversion, chosen on the
63-
prepare screen. The browser tab drives the encode loop directly, so the
64-
server works continuously instead of waiting on WP-Cron; on shared hosting
65-
with no working loopback this is dramatically faster.
66-
* Fast mode pauses itself when the host starts throttling (slow batches, memory
67-
pressure) and resumes after a cooldown that lengthens if it keeps happening.
68-
* Live Gentle / Balanced / Turbo speed control on the running monitor.
69-
* Closing the tab, Stop, or Cancel never reverts converted files - the run
70-
parks and resumes from where it left off.
71-
* Background mode is unchanged and remains the default.
72-
7361
= 1.0.0 =
7462
* First public release.
7563
* Local WebP conversion via WP_Image_Editor - no CDN, no external service, free.
76-
* Month-scoped background bulk run on Action Scheduler: pause, resume, cancel,
77-
durable progress, optional completion email.
64+
* Month-scoped bulk run with two drivers: a background run on Action Scheduler
65+
(pause, resume, cancel, durable progress, optional completion email) and an
66+
opt-in Fast mode where the browser tab drives the encode loop directly, for
67+
shared hosting with no working WP-Cron loopback. Fast mode self-pauses when
68+
the host throttles and resumes after an escalating cooldown; a live Gentle /
69+
Balanced / Turbo control sits on the running monitor.
70+
* Closing the tab, Stop, or Cancel never reverts converted files - the run
71+
parks and resumes from where it left off.
7872
* Per-attachment Convert / Reconvert / Remove buttons in the Media library, and
7973
automatic conversion of new uploads.
8074
* Serving via a managed `.htaccess` block on Apache/LiteSpeed, with an `<img>` to

0 commit comments

Comments
 (0)