Changeset 3400998
- Timestamp:
- 11/22/2025 03:22:04 PM (4 months ago)
- Location:
- image-copyright-manager
- Files:
-
- 2 added
- 12 deleted
- 11 edited
- 1 copied
-
assets/icon.svg (modified) (1 prop)
-
tags/1.2.2 (copied) (copied from image-copyright-manager/trunk)
-
tags/1.2.2/.distignore (deleted)
-
tags/1.2.2/.gitignore (deleted)
-
tags/1.2.2/CHANGELOG.txt (modified) (1 diff)
-
tags/1.2.2/admin (deleted)
-
tags/1.2.2/image-copyright-manager.php (modified) (1 diff)
-
tags/1.2.2/includes/class-imagcoma-admin-columns.php (added)
-
tags/1.2.2/includes/class-imagcoma-core.php (modified) (3 diffs)
-
tags/1.2.2/languages/image-copyright-manager.pot (modified) (1 diff)
-
tags/1.2.2/package.json (deleted)
-
tags/1.2.2/pnpm-lock.yaml (deleted)
-
tags/1.2.2/public (deleted)
-
tags/1.2.2/readme.txt (modified) (2 diffs)
-
trunk/.distignore (deleted)
-
trunk/.gitignore (deleted)
-
trunk/CHANGELOG.txt (modified) (1 diff)
-
trunk/admin (deleted)
-
trunk/image-copyright-manager.php (modified) (1 diff)
-
trunk/includes/class-imagcoma-admin-columns.php (added)
-
trunk/includes/class-imagcoma-core.php (modified) (3 diffs)
-
trunk/languages/image-copyright-manager.pot (modified) (1 diff)
-
trunk/package.json (deleted)
-
trunk/pnpm-lock.yaml (deleted)
-
trunk/public (deleted)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-copyright-manager/assets/icon.svg
-
Property
svn:mime-type
set to
image/svg+xml
-
Property
svn:mime-type
set to
-
image-copyright-manager/tags/1.2.2/CHANGELOG.txt
r3400971 r3400998 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5 5 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 7 ## [1.2.2] - 2025-11-22 8 ### Added 9 - Added sortable Copyright column to Media Library list view 10 - Improved admin interface for managing copyright information 11 6 12 7 13 ## [1.2.1] - 2025-11-22 -
image-copyright-manager/tags/1.2.2/image-copyright-manager.php
r3400971 r3400998 4 4 * Plugin URI: https://mahelwebdesign.com/image-copyright-manager/ 5 5 * Description: Adds a custom field for copyright information to WordPress media. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Requires at least: 6.4 8 8 * Requires PHP: 7.4 -
image-copyright-manager/tags/1.2.2/includes/class-imagcoma-core.php
r3400971 r3400998 12 12 class IMAGCOMA_Core { 13 13 14 const VERSION = '1.2. 1';14 const VERSION = '1.2.2'; 15 15 16 16 const TEXT_DOMAIN = 'image-copyright-manager'; … … 31 31 new IMAGCOMA_Settings(); 32 32 new IMAGCOMA_Display(); 33 new IMAGCOMA_Admin_Columns(); 33 34 } 34 35 … … 39 40 require_once IMAGCOMA_PLUGIN_DIR . 'includes/class-imagcoma-display.php'; 40 41 require_once IMAGCOMA_PLUGIN_DIR . 'includes/class-imagcoma-utils.php'; 42 require_once IMAGCOMA_PLUGIN_DIR . 'includes/class-imagcoma-admin-columns.php'; 41 43 } 42 44 -
image-copyright-manager/tags/1.2.2/languages/image-copyright-manager.pot
r3400971 r3400998 1 # Image Copyright Manager 2 # Copyright (C) 2025 Mahel Webdesign 1 # Copyright (C) 2025 Image Copyright Manager 3 2 # This file is distributed under the same license as the Image Copyright Manager package. 4 # Mahel Webdesign <info@mahelwebdesign.com>, 2025.5 #6 #, fuzzy7 3 msgid "" 8 4 msgstr "" 9 "Project-Id-Version: Image Copyright Manager 1.2.1\n" 10 "Report-Msgid-Bugs-To: info@mahelwebdesign.com\n" 11 "POT-Creation-Date: 2025-11-22 16:24+0100\n" 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 "Last-Translator: Mahel Webdesign <info@mahelwebdesign.com>\n" 14 "Language-Team: English <en@li.org>\n" 15 "Language: en\n" 5 "Project-Id-Version: Image Copyright Manager\n" 16 6 "MIME-Version: 1.0\n" 17 7 "Content-Type: text/plain; charset=UTF-8\n" 18 8 "Content-Transfer-Encoding: 8bit\n" 9 "POT-Creation-Date: 2025-11-22 15:11+0000\n" 10 "X-Poedit-Basepath: ..\n" 11 "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" 12 "X-Poedit-SearchPath-0: .\n" 13 "X-Poedit-SearchPathExcluded-0: *.js\n" 14 "X-Poedit-SourceCharset: UTF-8\n" 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 16 20 #: includes/class-imagcoma-shortcodes.php:22 17 #: ../image-copyright-manager.php:37, ../includes/class-imagcoma-core.php:49 18 msgid "Copyright: {copyright}" 19 msgstr "" 20 21 #: ../includes/class-imagcoma-admin-columns.php:29 22 msgid "Copyright" 23 msgstr "" 24 25 #: ../includes/class-imagcoma-meta-boxes.php:25 26 msgid "Copyright Info" 27 msgstr "" 28 29 #: ../includes/class-imagcoma-meta-boxes.php:28 30 msgid "Enter copyright information. HTML links are allowed." 31 msgstr "" 32 33 #: ../includes/class-imagcoma-meta-boxes.php:34 34 msgid "Display Copyright" 35 msgstr "" 36 37 #: ../includes/class-imagcoma-meta-boxes.php:36 38 msgid "Display copyright text under this image" 39 msgstr "" 40 41 #: ../includes/class-imagcoma-settings.php:21 42 msgid "Image Copyright Manager" 43 msgstr "" 44 45 #: ../includes/class-imagcoma-settings.php:22 46 msgid "Image Copyright" 47 msgstr "" 48 49 #: ../includes/class-imagcoma-settings.php:34 50 msgid "General Settings" 51 msgstr "" 52 53 #: ../includes/class-imagcoma-settings.php:41 54 msgid "Display Text Format" 55 msgstr "" 56 57 #: ../includes/class-imagcoma-settings.php:49 58 msgid "Enable CSS Styling" 59 msgstr "" 60 61 #: ../includes/class-imagcoma-settings.php:59 62 msgid "Image Copyright Manager Settings" 63 msgstr "" 64 65 #: ../includes/class-imagcoma-settings.php:70 66 msgid "Usage Instructions" 67 msgstr "" 68 69 #: ../includes/class-imagcoma-settings.php:71 70 msgid "1. Go to Media Library and edit any image to add copyright information." 71 msgstr "" 72 73 #: ../includes/class-imagcoma-settings.php:72 74 msgid "2. Use the [imagcoma] shortcode to display all images with copyright information." 75 msgstr "" 76 77 #: ../includes/class-imagcoma-settings.php:73 78 msgid "3. Copyright information will automatically display under images when enabled." 79 msgstr "" 80 81 #: ../includes/class-imagcoma-settings.php:80 82 msgid "Configure how copyright information is displayed on your website." 83 msgstr "" 84 85 #: ../includes/class-imagcoma-settings.php:93 86 msgid "Use {copyright} as placeholder for the actual copyright text" 87 msgstr "" 88 89 #: ../includes/class-imagcoma-settings.php:108 90 msgid "Enable CSS styling for copyright information." 91 msgstr "" 92 93 #: ../includes/class-imagcoma-settings.php:111 94 msgid "When disabled, copyright information will be displayed without custom styling." 95 msgstr "" 96 97 #: ../includes/class-imagcoma-shortcodes.php:22 21 98 msgid "Image Sources" 22 99 msgstr "" 23 100 24 #: includes/class-imagcoma-shortcodes.php:2425 msgid "No image sources with copyright information found."101 #: ../includes/class-imagcoma-shortcodes.php:24 102 msgid "No images with copyright information found." 26 103 msgstr "" 27 104 28 #: includes/class-imagcoma-shortcodes.php:25105 #: ../includes/class-imagcoma-shortcodes.php:25 29 106 msgid "Copyright:" 30 107 msgstr "" 31 108 32 #: includes/class-imagcoma-shortcodes.php:26109 #: ../includes/class-imagcoma-shortcodes.php:26 33 110 msgid "View Media" 34 111 msgstr "" 35 36 #: includes/class-imagcoma-settings.php:2137 msgid "Image Copyright Manager"38 msgstr ""39 40 #: includes/class-imagcoma-settings.php:2241 msgid "Image Copyright"42 msgstr ""43 44 #: includes/class-imagcoma-settings.php:3445 msgid "General Settings"46 msgstr ""47 48 #: includes/class-imagcoma-settings.php:4149 msgid "Display Text Format"50 msgstr ""51 52 #: includes/class-imagcoma-core.php:47 image-copyright-manager.php:3753 msgid "Copyright: {copyright}"54 msgstr ""55 56 #: includes/class-imagcoma-meta-boxes.php:2757 msgid "Copyright Information"58 msgstr "" -
image-copyright-manager/tags/1.2.2/readme.txt
r3400971 r3400998 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.2. 17 Stable tag: 1.2.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 1.2.2 = 90 - Added sortable Copyright column to Media Library list view 91 - Improved admin interface for managing copyright information 92 89 93 = 1.2.1 = 90 94 - Fixed build process to exclude development files from the production zip. -
image-copyright-manager/trunk/CHANGELOG.txt
r3400971 r3400998 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5 5 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 7 ## [1.2.2] - 2025-11-22 8 ### Added 9 - Added sortable Copyright column to Media Library list view 10 - Improved admin interface for managing copyright information 11 6 12 7 13 ## [1.2.1] - 2025-11-22 -
image-copyright-manager/trunk/image-copyright-manager.php
r3400971 r3400998 4 4 * Plugin URI: https://mahelwebdesign.com/image-copyright-manager/ 5 5 * Description: Adds a custom field for copyright information to WordPress media. 6 * Version: 1.2. 16 * Version: 1.2.2 7 7 * Requires at least: 6.4 8 8 * Requires PHP: 7.4 -
image-copyright-manager/trunk/includes/class-imagcoma-core.php
r3400971 r3400998 12 12 class IMAGCOMA_Core { 13 13 14 const VERSION = '1.2. 1';14 const VERSION = '1.2.2'; 15 15 16 16 const TEXT_DOMAIN = 'image-copyright-manager'; … … 31 31 new IMAGCOMA_Settings(); 32 32 new IMAGCOMA_Display(); 33 new IMAGCOMA_Admin_Columns(); 33 34 } 34 35 … … 39 40 require_once IMAGCOMA_PLUGIN_DIR . 'includes/class-imagcoma-display.php'; 40 41 require_once IMAGCOMA_PLUGIN_DIR . 'includes/class-imagcoma-utils.php'; 42 require_once IMAGCOMA_PLUGIN_DIR . 'includes/class-imagcoma-admin-columns.php'; 41 43 } 42 44 -
image-copyright-manager/trunk/languages/image-copyright-manager.pot
r3400971 r3400998 1 # Image Copyright Manager 2 # Copyright (C) 2025 Mahel Webdesign 1 # Copyright (C) 2025 Image Copyright Manager 3 2 # This file is distributed under the same license as the Image Copyright Manager package. 4 # Mahel Webdesign <info@mahelwebdesign.com>, 2025.5 #6 #, fuzzy7 3 msgid "" 8 4 msgstr "" 9 "Project-Id-Version: Image Copyright Manager 1.2.1\n" 10 "Report-Msgid-Bugs-To: info@mahelwebdesign.com\n" 11 "POT-Creation-Date: 2025-11-22 16:24+0100\n" 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 "Last-Translator: Mahel Webdesign <info@mahelwebdesign.com>\n" 14 "Language-Team: English <en@li.org>\n" 15 "Language: en\n" 5 "Project-Id-Version: Image Copyright Manager\n" 16 6 "MIME-Version: 1.0\n" 17 7 "Content-Type: text/plain; charset=UTF-8\n" 18 8 "Content-Transfer-Encoding: 8bit\n" 9 "POT-Creation-Date: 2025-11-22 15:11+0000\n" 10 "X-Poedit-Basepath: ..\n" 11 "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" 12 "X-Poedit-SearchPath-0: .\n" 13 "X-Poedit-SearchPathExcluded-0: *.js\n" 14 "X-Poedit-SourceCharset: UTF-8\n" 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 16 20 #: includes/class-imagcoma-shortcodes.php:22 17 #: ../image-copyright-manager.php:37, ../includes/class-imagcoma-core.php:49 18 msgid "Copyright: {copyright}" 19 msgstr "" 20 21 #: ../includes/class-imagcoma-admin-columns.php:29 22 msgid "Copyright" 23 msgstr "" 24 25 #: ../includes/class-imagcoma-meta-boxes.php:25 26 msgid "Copyright Info" 27 msgstr "" 28 29 #: ../includes/class-imagcoma-meta-boxes.php:28 30 msgid "Enter copyright information. HTML links are allowed." 31 msgstr "" 32 33 #: ../includes/class-imagcoma-meta-boxes.php:34 34 msgid "Display Copyright" 35 msgstr "" 36 37 #: ../includes/class-imagcoma-meta-boxes.php:36 38 msgid "Display copyright text under this image" 39 msgstr "" 40 41 #: ../includes/class-imagcoma-settings.php:21 42 msgid "Image Copyright Manager" 43 msgstr "" 44 45 #: ../includes/class-imagcoma-settings.php:22 46 msgid "Image Copyright" 47 msgstr "" 48 49 #: ../includes/class-imagcoma-settings.php:34 50 msgid "General Settings" 51 msgstr "" 52 53 #: ../includes/class-imagcoma-settings.php:41 54 msgid "Display Text Format" 55 msgstr "" 56 57 #: ../includes/class-imagcoma-settings.php:49 58 msgid "Enable CSS Styling" 59 msgstr "" 60 61 #: ../includes/class-imagcoma-settings.php:59 62 msgid "Image Copyright Manager Settings" 63 msgstr "" 64 65 #: ../includes/class-imagcoma-settings.php:70 66 msgid "Usage Instructions" 67 msgstr "" 68 69 #: ../includes/class-imagcoma-settings.php:71 70 msgid "1. Go to Media Library and edit any image to add copyright information." 71 msgstr "" 72 73 #: ../includes/class-imagcoma-settings.php:72 74 msgid "2. Use the [imagcoma] shortcode to display all images with copyright information." 75 msgstr "" 76 77 #: ../includes/class-imagcoma-settings.php:73 78 msgid "3. Copyright information will automatically display under images when enabled." 79 msgstr "" 80 81 #: ../includes/class-imagcoma-settings.php:80 82 msgid "Configure how copyright information is displayed on your website." 83 msgstr "" 84 85 #: ../includes/class-imagcoma-settings.php:93 86 msgid "Use {copyright} as placeholder for the actual copyright text" 87 msgstr "" 88 89 #: ../includes/class-imagcoma-settings.php:108 90 msgid "Enable CSS styling for copyright information." 91 msgstr "" 92 93 #: ../includes/class-imagcoma-settings.php:111 94 msgid "When disabled, copyright information will be displayed without custom styling." 95 msgstr "" 96 97 #: ../includes/class-imagcoma-shortcodes.php:22 21 98 msgid "Image Sources" 22 99 msgstr "" 23 100 24 #: includes/class-imagcoma-shortcodes.php:2425 msgid "No image sources with copyright information found."101 #: ../includes/class-imagcoma-shortcodes.php:24 102 msgid "No images with copyright information found." 26 103 msgstr "" 27 104 28 #: includes/class-imagcoma-shortcodes.php:25105 #: ../includes/class-imagcoma-shortcodes.php:25 29 106 msgid "Copyright:" 30 107 msgstr "" 31 108 32 #: includes/class-imagcoma-shortcodes.php:26109 #: ../includes/class-imagcoma-shortcodes.php:26 33 110 msgid "View Media" 34 111 msgstr "" 35 36 #: includes/class-imagcoma-settings.php:2137 msgid "Image Copyright Manager"38 msgstr ""39 40 #: includes/class-imagcoma-settings.php:2241 msgid "Image Copyright"42 msgstr ""43 44 #: includes/class-imagcoma-settings.php:3445 msgid "General Settings"46 msgstr ""47 48 #: includes/class-imagcoma-settings.php:4149 msgid "Display Text Format"50 msgstr ""51 52 #: includes/class-imagcoma-core.php:47 image-copyright-manager.php:3753 msgid "Copyright: {copyright}"54 msgstr ""55 56 #: includes/class-imagcoma-meta-boxes.php:2757 msgid "Copyright Information"58 msgstr "" -
image-copyright-manager/trunk/readme.txt
r3400971 r3400998 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1.2. 17 Stable tag: 1.2.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 87 87 == Changelog == 88 88 89 = 1.2.2 = 90 - Added sortable Copyright column to Media Library list view 91 - Improved admin interface for managing copyright information 92 89 93 = 1.2.1 = 90 94 - Fixed build process to exclude development files from the production zip.
Note: See TracChangeset
for help on using the changeset viewer.