diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fabd32..68fc7b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -All notable changes to **WP Logbook** (formerly **A-WP-Notes** through v3.1.0) are documented here. +All notable changes to **Logbook** (formerly **A-WP-Notes** through v3.1.0, then **WP Logbook** in v3.2.0–v3.3.0) are documented here. Format: [Keep a Changelog 1.1.0](https://keepachangelog.com/en/1.1.0/) — versioning: [SemVer](https://semver.org/). --- @@ -9,6 +9,40 @@ Format: [Keep a Changelog 1.1.0](https://keepachangelog.com/en/1.1.0/) — versi --- +## [3.3.1] — 2026-05-25 + +**Naming: dropped the `WP` prefix. The plugin is now just `Logbook`.** + +David's call after a short discussion about WordPress.org marketplace +considerations — WP.org's trademark policy historically discourages +plugins implying official endorsement via a `WP` prefix and has been +known to request a rename during submission review. Dropping it now +makes the name cleaner *and* sidesteps that future hurdle if/when +the plugin lands on the marketplace. + +### Changed +- All user-facing brand mentions: `WP Logbook` → `Logbook` across + plugin header, admin menu, admin bar, dashboard widget, settings + H1, main page H1, About page intro, About page card heading, + feedback email subjects/body, error_log prefix, updater panel + copy, and styles docblock. +- About page version-history card gets a new top entry for v3.3.1 + with the green "latest" pill; v3.3.0 demoted to the previous slot. +- CHANGELOG header line updated to track the full naming lineage: + *A-WP-Notes (≤v3.1.0) → WP Logbook (v3.2.0–v3.3.0) → Logbook + (v3.3.1+)*. + +### Notably NOT changed +- Historical CHANGELOG entries for v3.2.0 (the original "WP + Logbook" rebrand) still say "WP Logbook" — that was the correct + name at the time and rewriting it would be revisionist. +- Same zero-migration commitment as the v3.2.0 rebrand: internal + function names, constants, DB option keys, user_meta keys, file + paths, plugin slug, and text domain all unchanged. Pure + user-facing string change. + +--- + ## [3.3.0] — 2026-05-25 **New feature: self-hosted update checker.** WP Logbook is hosted on diff --git a/inc/admin-bar.php b/inc/admin-bar.php index 075ed0f..f9c8f67 100644 --- a/inc/admin-bar.php +++ b/inc/admin-bar.php @@ -40,10 +40,10 @@ function wp_notes_admin_bar_menu($wp_admin_bar) { $notes = get_option('wp_notes', array()); $count = count($notes); - // Main WP Logbook menu item + // Main Logbook menu item $wp_admin_bar->add_node(array( 'id' => 'wp-notes', - 'title' => sprintf('WP Logbook %d', $count), + 'title' => sprintf('Logbook %d', $count), 'href' => admin_url('admin.php?page=wp-notes'), )); diff --git a/inc/wp-notes-about.php b/inc/wp-notes-about.php index b13bd17..b74505f 100644 --- a/inc/wp-notes-about.php +++ b/inc/wp-notes-about.php @@ -2,7 +2,7 @@ // wp-notes-about.php /** - * Function to display the "About" page for WP Logbook plugin. + * Function to display the "About" page for Logbook plugin. */ function wp_notes_about_page() { ?> @@ -53,11 +53,11 @@ function wp_notes_about_page() {
+ alt="Logbook banner">
WP Logbook is a lightweight task & logbook plugin for WordPress. Log your daily work, mark tasks as done, and keep a tidy record right inside the dashboard — perfect for freelancers showing clients what's been delivered.
+Logbook is a lightweight task & logbook plugin for WordPress. Log your daily work, mark tasks as done, and keep a tidy record right inside the dashboard — perfect for freelancers showing clients what's been delivered.
@@ -101,10 +101,10 @@ function wp_notes_about_page() { } - +WP Logbook is a lightweight task & logbook plugin that lives entirely inside the WordPress admin. Type a note, format it with colour / size / font / emoji, mark it done when the work is finished, restore it later if you need to revisit. Everything is stored in the site's own database — nothing leaves your server.
+Logbook is a lightweight task & logbook plugin that lives entirely inside the WordPress admin. Type a note, format it with colour / size / font / emoji, mark it done when the work is finished, restore it later if you need to revisit. Everything is stored in the site's own database — nothing leaves your server.
I built it for my own client work as a transparent “here's what I did this week” logbook, so customers can see clearly what they're paying for. It turned out to be just as useful for any small team or single user who wants notes attached to the WordPress dashboard rather than a separate app.
WP prefix — the plugin is now just Logbook. Cleaner name, also clears a potential WordPress.org trademark-policy hurdle if/when the plugin ever lands on the marketplace.
+ - WP Logbook is self-hosted on Gitea. Click Check now to ask the repo whether there's a newer release than the one you're running. + Logbook is self-hosted on Gitea. Click Check now to ask the repo whether there's a newer release than the one you're running.
diff --git a/wp-notes.php b/wp-notes.php index a6618ae..328568c 100644 --- a/wp-notes.php +++ b/wp-notes.php @@ -1,11 +1,11 @@