ux: replace generic cog admin-menu icon with closed-book (v3.3.5)
The WordPress admin sidebar showed "Logbook" with the generic cog wheel icon (dashicons-admin-generic) — fine for a settings page, off-brand for a plugin whose entire identity is "logbook". Swapped to dashicons-book-alt (closed book) — the most literal possible match in the Dashicons set, and visually reinforces the brand at the first place users see the plugin every day. Alternatives also viable (commented in the changelog for future reference): dashicons-edit (pencil), dashicons-clipboard, dashicons-welcome-write-blog, dashicons-format-aside. VERSION - wp-notes.php header 3.3.4 → 3.3.5 - WP_NOTES_VERSION constant 3.3.4 → 3.3.5 - About page version-history leads with v3.3.5; v3.3.4 demoted. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -9,6 +9,31 @@ Format: [Keep a Changelog 1.1.0](https://keepachangelog.com/en/1.1.0/) — versi
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## [3.3.5] — 2026-05-25
|
||||||
|
|
||||||
|
### Changed — Admin-menu icon
|
||||||
|
The WordPress admin sidebar icon for Logbook is now
|
||||||
|
**`dashicons-book-alt`** (a closed book) instead of the generic
|
||||||
|
cog wheel (`dashicons-admin-generic`). The closed-book glyph is the
|
||||||
|
most literal possible match for the word "logbook" in the Dashicons
|
||||||
|
set — reinforces the brand identity at the first place users see
|
||||||
|
the plugin every day.
|
||||||
|
|
||||||
|
If you'd prefer a different icon, the line lives in
|
||||||
|
`wp-notes.php → wp_notes_admin_menu()` as the 7th arg to
|
||||||
|
`add_menu_page()`. Alternatives worth considering:
|
||||||
|
`dashicons-edit` (pencil), `dashicons-clipboard` (clipboard),
|
||||||
|
`dashicons-welcome-write-blog` (pencil over paper),
|
||||||
|
`dashicons-format-aside` (notes glyph). Full list at
|
||||||
|
https://developer.wordpress.org/resource/dashicons/
|
||||||
|
|
||||||
|
### Version bump
|
||||||
|
- wp-notes.php header 3.3.4 → 3.3.5
|
||||||
|
- WP_NOTES_VERSION constant 3.3.4 → 3.3.5
|
||||||
|
- About page version-history leads with v3.3.5; v3.3.4 demoted.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## [3.3.4] — 2026-05-25
|
## [3.3.4] — 2026-05-25
|
||||||
|
|
||||||
**Repo renamed on Gitea: `a-wp-notes-v3` → `a-logbook`.** Also the
|
**Repo renamed on Gitea: `a-wp-notes-v3` → `a-logbook`.** Also the
|
||||||
|
|||||||
@@ -125,7 +125,11 @@ function wp_notes_about_page() {
|
|||||||
<h2>Version history</h2>
|
<h2>Version history</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<span class="ver">v3.3.4</span> — 25 May 2026 <span class="latest">latest</span><br>
|
<span class="ver">v3.3.5</span> — 25 May 2026 <span class="latest">latest</span><br>
|
||||||
|
New admin-menu icon: closed-book (<code>dashicons-book-alt</code>) replaces the generic cog wheel. Visually reinforces the “Logbook” identity in the WP sidebar.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<span class="ver">v3.3.4</span> — 25 May 2026<br>
|
||||||
Repo renamed on Gitea: <code>a-wp-notes-v3</code> → <code>a-logbook</code>. The plugin’s update checker and the “View on Gitea” / “View all releases” / “View full CHANGELOG” links now point at the new path. Local folder also renamed to <code>a-logbook</code>. The plugin’s internal storage and slugs are unchanged — no data migration.
|
Repo renamed on Gitea: <code>a-wp-notes-v3</code> → <code>a-logbook</code>. The plugin’s update checker and the “View on Gitea” / “View all releases” / “View full CHANGELOG” links now point at the new path. Local folder also renamed to <code>a-logbook</code>. The plugin’s internal storage and slugs are unchanged — no data migration.
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
+3
-3
@@ -5,7 +5,7 @@
|
|||||||
* Plugin Name: Logbook
|
* Plugin Name: Logbook
|
||||||
* Plugin URI: https://icanhelp.ie/wp-notes
|
* Plugin URI: https://icanhelp.ie/wp-notes
|
||||||
* Description: A lightweight task & logbook plugin for WordPress. Log your daily work, mark tasks done, and keep a tidy record inside the dashboard. Perfect for freelancers showing clients what's been delivered and students proving work to teachers.
|
* Description: A lightweight task & logbook plugin for WordPress. Log your daily work, mark tasks done, and keep a tidy record inside the dashboard. Perfect for freelancers showing clients what's been delivered and students proving work to teachers.
|
||||||
* Version: 3.3.4
|
* Version: 3.3.5
|
||||||
* Requires at least: 5.0
|
* Requires at least: 5.0
|
||||||
* Requires PHP: 7.2
|
* Requires PHP: 7.2
|
||||||
* Author: IR240474
|
* Author: IR240474
|
||||||
@@ -33,7 +33,7 @@ if (!isset($wp_notes_init)) {
|
|||||||
$wp_notes_init = true;
|
$wp_notes_init = true;
|
||||||
|
|
||||||
// Plugin Constants
|
// Plugin Constants
|
||||||
if (!defined('WP_NOTES_VERSION')) define('WP_NOTES_VERSION', '3.3.4');
|
if (!defined('WP_NOTES_VERSION')) define('WP_NOTES_VERSION', '3.3.5');
|
||||||
if (!defined('WP_NOTES_FILE')) define('WP_NOTES_FILE', __FILE__);
|
if (!defined('WP_NOTES_FILE')) define('WP_NOTES_FILE', __FILE__);
|
||||||
if (!defined('WP_NOTES_PATH')) define('WP_NOTES_PATH', plugin_dir_path(__FILE__));
|
if (!defined('WP_NOTES_PATH')) define('WP_NOTES_PATH', plugin_dir_path(__FILE__));
|
||||||
if (!defined('WP_NOTES_URL')) define('WP_NOTES_URL', plugin_dir_url(__FILE__));
|
if (!defined('WP_NOTES_URL')) define('WP_NOTES_URL', plugin_dir_url(__FILE__));
|
||||||
@@ -174,7 +174,7 @@ function wp_notes_admin_menu() {
|
|||||||
'manage_options',
|
'manage_options',
|
||||||
'wp-notes',
|
'wp-notes',
|
||||||
'wp_notes_page_callback',
|
'wp_notes_page_callback',
|
||||||
'dashicons-admin-generic',
|
'dashicons-book-alt', // closed book — reinforces the "logbook" identity
|
||||||
3
|
3
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user