[grade=A] v1.9.3: Beep bird emblem in the feed header (transparent-bg PNG cropped from the brand logo, 36px)

This commit is contained in:
Krystie
2026-09-07 17:42:54 -07:00
parent ecb7f871f9
commit 7ca8a7d49f
5 changed files with 13 additions and 3 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

+6
View File
@@ -94,6 +94,12 @@
-webkit-backdrop-filter: blur(12px);
}
.beep-embed .beep-feed-emblem {
width: 36px;
height: auto;
flex: 0 0 auto;
}
.beep-embed .beep-feed-header-title {
font-size: 17px;
font-weight: 800;
+2 -2
View File
@@ -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.9.2
* Version: 1.9.3
* Requires at least: 6.0
* Requires PHP: 7.4
* Author: Sami Ahmed
@@ -14,7 +14,7 @@ if (!defined('ABSPATH')) {
exit;
}
define('BEEP_VERSION', '1.9.2');
define('BEEP_VERSION', '1.9.3');
define('BEEP_FILE', __FILE__);
define('BEEP_DIR', plugin_dir_path(__FILE__));
define('BEEP_URL', plugin_dir_url(__FILE__));
+1
View File
@@ -100,6 +100,7 @@ class Beep_Shortcode {
?>
<div class="beep-feed beep-embed beep-theme-<?php echo esc_attr($theme); ?>" data-beep-feed>
<header class="beep-feed-header">
<img class="beep-feed-emblem" src="<?php echo esc_url(BEEP_URL . 'assets/beep-bird-emblem.png?v=' . BEEP_VERSION); ?>" alt="Beep!" width="36" height="37">
<?php if ($atts['header'] !== '') : ?>
<span class="beep-feed-header-title"><?php echo esc_html($atts['header']); ?></span>
<?php endif; ?>
+4 -1
View File
@@ -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.9.2
Stable tag: 1.9.3
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.
@@ -46,6 +46,9 @@ Features:
== Changelog ==
= 1.9.3 =
* New header emblem: the Beep bird now marks the feed header where the X mark sits on X.
= 1.9.2 =
* YouTube links no longer display as raw hyperlinks above the video card - the card replaces the URL text (posts, replies, and quoted beeps).