[pending-grade] v1.9.4: bird emblem bottom-left of beeps, badge removed from top-right

This commit is contained in:
Krystie
2026-09-07 17:48:04 -07:00
parent 7ca8a7d49f
commit a89ed3749e
4 changed files with 20 additions and 5 deletions
+13 -1
View File
@@ -1017,7 +1017,7 @@
font-variant-numeric: tabular-nums; font-variant-numeric: tabular-nums;
} }
/* ---------- Bottom bar (brand wordmark + delete) ---------- */ /* ---------- Bottom bar (bird emblem + brand wordmark + delete) ---------- */
.beep-embed .beep-bottom-bar { .beep-embed .beep-bottom-bar {
display: flex; display: flex;
align-items: center; align-items: center;
@@ -1026,6 +1026,18 @@
margin-top: 2px; margin-top: 2px;
} }
.beep-embed .beep-post-emblem {
width: 20px;
height: auto;
flex: 0 0 auto;
margin-right: auto;
opacity: 0.55;
transition: opacity 0.15s ease;
user-select: none;
}
.beep-embed .beep-post:hover .beep-post-emblem { opacity: 0.9; }
.beep-embed .beep-post-wordmark { .beep-embed .beep-post-wordmark {
opacity: 0.55; opacity: 0.55;
flex: 0 0 auto; flex: 0 0 auto;
+2 -2
View File
@@ -2,7 +2,7 @@
/** /**
* Plugin Name: Beep * Plugin Name: Beep
* Description: A Twitter-style microblog for WordPress, with likes, replies, and Gravatars. Use the [beep_feed] shortcode on any page. * Description: A Twitter-style microblog for WordPress, with likes, replies, and Gravatars. Use the [beep_feed] shortcode on any page.
* Version: 1.9.3 * Version: 1.9.4
* Requires at least: 6.0 * Requires at least: 6.0
* Requires PHP: 7.4 * Requires PHP: 7.4
* Author: Sami Ahmed * Author: Sami Ahmed
@@ -14,7 +14,7 @@ if (!defined('ABSPATH')) {
exit; exit;
} }
define('BEEP_VERSION', '1.9.3'); define('BEEP_VERSION', '1.9.4');
define('BEEP_FILE', __FILE__); define('BEEP_FILE', __FILE__);
define('BEEP_DIR', plugin_dir_path(__FILE__)); define('BEEP_DIR', plugin_dir_path(__FILE__));
define('BEEP_URL', plugin_dir_url(__FILE__)); define('BEEP_URL', plugin_dir_url(__FILE__));
+1 -1
View File
@@ -343,7 +343,6 @@ function beep_render_post($post, $args = []) {
datetime="<?php echo esc_attr($time_iso); ?>" datetime="<?php echo esc_attr($time_iso); ?>"
title="<?php echo esc_attr($time_full); ?>"><?php echo esc_html($time); ?></time> title="<?php echo esc_attr($time_full); ?>"><?php echo esc_html($time); ?></time>
<span class="beep-spacer"></span> <span class="beep-spacer"></span>
<?php echo beep_bird_svg( ['size' => 18, 'class' => 'beep-post-badge'] ); ?>
<?php if ($can_delete) : ?> <?php if ($can_delete) : ?>
<button class="beep-delete-link" <button class="beep-delete-link"
data-beep-delete="<?php echo (int) $post->ID; ?>" data-beep-delete="<?php echo (int) $post->ID; ?>"
@@ -422,6 +421,7 @@ function beep_render_post($post, $args = []) {
</button> </button>
</div> </div>
<div class="beep-bottom-bar"> <div class="beep-bottom-bar">
<img class="beep-post-emblem" src="<?php echo esc_url(BEEP_URL . 'assets/beep-bird-emblem.png?v=' . BEEP_VERSION); ?>" alt="" width="20" height="21" aria-hidden="true">
<?php echo beep_post_wordmark(); ?> <?php echo beep_post_wordmark(); ?>
</div> </div>
+4 -1
View File
@@ -4,7 +4,7 @@ Tags: microblog, twitter, tweets, social, comments, polls, elementor
Requires at least: 6.0 Requires at least: 6.0
Tested up to: 6.9 Tested up to: 6.9
Requires PHP: 7.4 Requires PHP: 7.4
Stable tag: 1.9.3 Stable tag: 1.9.4
License: GPLv2 or later 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. 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 == == Changelog ==
= 1.9.4 =
* Moved the bird badge from the top-right of beeps to a small emblem at the bottom-left, opposite the Beep! wordmark.
= 1.9.3 = = 1.9.3 =
* New header emblem: the Beep bird now marks the feed header where the X mark sits on X. * New header emblem: the Beep bird now marks the feed header where the X mark sits on X.