From 955e443274fc204ff8cbd6de73a5e706206be721 Mon Sep 17 00:00:00 2001 From: Krystie Date: Mon, 8 Jun 2026 20:33:48 -0700 Subject: [PATCH] fix(v1.7.4): portable + cache-busted feed-header wordmark The header hardcoded https://sami-ahmed.net/... with no version string, so browsers/proxies kept serving the stale corrupted PNG. Load it from BEEP_URL with a ?v=BEEP_VERSION cache-buster and bump it to 30px. Co-Authored-By: Claude Opus 4.8 (1M context) --- beep.php | 4 ++-- includes/class-shortcode.php | 2 +- readme.txt | 6 +++++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/beep.php b/beep.php index c3243e7..6bd0083 100755 --- a/beep.php +++ b/beep.php @@ -2,7 +2,7 @@ /** * Plugin Name: Beep * Description: A Twitter-style microblog for WordPress, with likes, replies, and Gravatars. Use the [beep_feed] shortcode on any page. - * Version: 1.7.3 + * Version: 1.7.4 * Requires at least: 6.0 * Requires PHP: 7.4 * Author: Sami Ahmed @@ -14,7 +14,7 @@ if (!defined('ABSPATH')) { exit; } -define('BEEP_VERSION', '1.7.3'); +define('BEEP_VERSION', '1.7.4'); define('BEEP_FILE', __FILE__); define('BEEP_DIR', plugin_dir_path(__FILE__)); define('BEEP_URL', plugin_dir_url(__FILE__)); diff --git a/includes/class-shortcode.php b/includes/class-shortcode.php index 04c3aa7..e4fa10a 100755 --- a/includes/class-shortcode.php +++ b/includes/class-shortcode.php @@ -99,7 +99,7 @@ class Beep_Shortcode {
-
Messages from Beep!
+
Messages from Beep!
diff --git a/readme.txt b/readme.txt index 59a57b4..8958ab5 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: microblog, twitter, tweets, social, comments, polls, elementor Requires at least: 6.0 Tested up to: 6.9 Requires PHP: 7.4 -Stable tag: 1.7.3 +Stable tag: 1.7.4 License: GPLv2 or later A Twitter-style microblog for WordPress. Posts, likes, replies, polls, quotes, GIFs, and Gravatars. Use [beep_feed] shortcode or Elementor widget. @@ -40,6 +40,10 @@ Features: == Changelog == += 1.7.4 = +* Feed-header wordmark now loads from the plugin's own URL (was hardcoded to sami-ahmed.net) with a version-based cache-buster, so the clean logo shows immediately instead of a stale/corrupted cached image. +* Made the header wordmark a bit larger (30px). + = 1.7.3 = * Replaced the corrupted beep-wordmark.png assets with a clean, transparent render of the 3D "Beep!" logo (fixes the feed-header wordmark image). * Gave the inline-SVG wordmark extra descender room so the "p" never clips.