Changeset 3430862
- Timestamp:
- 01/02/2026 05:18:25 AM (3 months ago)
- Location:
- citation-note
- Files:
-
- 14 added
- 2 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/assets (added)
-
tags/1.1.1/assets/css (added)
-
tags/1.1.1/assets/css/citation-note-editor.css (added)
-
tags/1.1.1/assets/css/citation-note-style.css (added)
-
tags/1.1.1/assets/js (added)
-
tags/1.1.1/assets/js/citation-note-editor.js (added)
-
tags/1.1.1/assets/js/citation-note.js (added)
-
tags/1.1.1/citation-note.php (added)
-
tags/1.1.1/lib (added)
-
tags/1.1.1/lib/class-citenote-admin-settings.php (added)
-
tags/1.1.1/lib/class-citenote-data.php (added)
-
tags/1.1.1/lib/class-citenote-editor-fields.php (added)
-
tags/1.1.1/readme.txt (added)
-
trunk/citation-note.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
citation-note/trunk/citation-note.php
r3425938 r3430862 10 10 * Requires PHP: 8.0 11 11 * Tested up to: 6.9 12 * Version: 1.1. 012 * Version: 1.1.1 13 13 * Author: santoshtmp7 14 14 * License: GPLv2 or later … … 48 48 new \citenote\CITENOTE_Editor_Fields(); 49 49 50 add_action(' init', [$this, 'citenote_register_scripts']);50 add_action('wp_enqueue_scripts', [$this, 'enqueue_citenote_scripts']); 51 51 } 52 52 … … 54 54 * 55 55 */ 56 function citenote_register_scripts() {56 function enqueue_citenote_scripts() { 57 57 wp_register_style( 58 58 "citation-note-style", -
citation-note/trunk/readme.txt
r3425938 r3430862 6 6 Requires PHP: 8.0 7 7 Tested up to: 6.9 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 62 62 63 63 == Changelog == 64 = 1.1.1 = 65 * Fix JS issue 66 64 67 = 1.1.0 = 65 68 * Compatible to 6.9 66 69 * Fix citenoteplaceholder tag 70 67 71 = 1.0.0 = 68 72 * Initial release of Citation Note.
Note: See TracChangeset
for help on using the changeset viewer.