release: 3.3.3 → 3.3.4 — rename Gitea repo a-wp-notes-v3 → a-logbook
The repo's old name was a holdover from the v3-of-A-WP-Notes archival era. With the plugin firmly identifying as "Logbook" now, the repo and the local working folder should match. CHANGES IN-CODE - inc/wp-notes-updater.php: WP_NOTES_GITEA_REPO constant a-wp-notes-v3 → a-logbook. Update checker now hits https://git.davidtkeane.com/api/v1/repos/ranger/a-logbook/... on every check. Override-able via define() in wp-config.php if the repo ever moves again. - inc/wp-notes-about.php: "View the full CHANGELOG.md →" link on the version-history card now points at the new repo path. - Local working folder on M3 renamed /Users/ranger/scripts/Gitea/a-wp-notes-v3-archive → a-logbook. .git/config survived; remote URL will be updated separately. UNCHANGED (zero-migration commitment continues) - Plugin slug 'wp-notes'. - Plugin text domain 'a-wp-notes'. - All wp_notes_* function names, WP_NOTES_* constants, DB option keys, user_meta keys, file names inside the plugin folder. - Historical CHANGELOG references to a-wp-notes-v3 stay as truthful history of the v3.2.0 era. VERSION BUMP - wp-notes.php header Version: 3.3.3 → 3.3.4 - WP_NOTES_VERSION constant: 3.3.3 → 3.3.4 - About page version-history leads with v3.3.4; v3.3.3 demoted. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+2
-2
@@ -5,7 +5,7 @@
|
||||
* Plugin Name: Logbook
|
||||
* 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.
|
||||
* Version: 3.3.3
|
||||
* Version: 3.3.4
|
||||
* Requires at least: 5.0
|
||||
* Requires PHP: 7.2
|
||||
* Author: IR240474
|
||||
@@ -33,7 +33,7 @@ if (!isset($wp_notes_init)) {
|
||||
$wp_notes_init = true;
|
||||
|
||||
// Plugin Constants
|
||||
if (!defined('WP_NOTES_VERSION')) define('WP_NOTES_VERSION', '3.3.3');
|
||||
if (!defined('WP_NOTES_VERSION')) define('WP_NOTES_VERSION', '3.3.4');
|
||||
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_URL')) define('WP_NOTES_URL', plugin_dir_url(__FILE__));
|
||||
|
||||
Reference in New Issue
Block a user