Changeset 3448834
- Timestamp:
- 01/28/2026 04:03:59 PM (6 weeks ago)
- Location:
- academic-certificate-verification
- Files:
-
- 32 added
- 4 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/academic-certificate-verification.php (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/css (added)
-
tags/1.0.2/assets/css/admin.css (added)
-
tags/1.0.2/assets/css/certificate-maker.css (added)
-
tags/1.0.2/assets/css/frontend.css (added)
-
tags/1.0.2/assets/js (added)
-
tags/1.0.2/assets/js/admin.js (added)
-
tags/1.0.2/assets/js/frontend.js (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/class-academic-certificate-verification.php (added)
-
tags/1.0.2/includes/class-admin.php (added)
-
tags/1.0.2/includes/class-certificates-list-table.php (added)
-
tags/1.0.2/includes/class-database.php (added)
-
tags/1.0.2/includes/class-license-handler.php (added)
-
tags/1.0.2/includes/class-shortcodes.php (added)
-
tags/1.0.2/includes/class-verification.php (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/templates (added)
-
tags/1.0.2/templates/admin (added)
-
tags/1.0.2/templates/admin/add-batches.php (added)
-
tags/1.0.2/templates/admin/add-certificate.php (added)
-
tags/1.0.2/templates/admin/add-courses.php (added)
-
tags/1.0.2/templates/admin/certificate-maker.php (added)
-
tags/1.0.2/templates/admin/custom-fields.php (added)
-
tags/1.0.2/templates/admin/dashboard.php (added)
-
tags/1.0.2/templates/admin/import-certificates.php (added)
-
tags/1.0.2/templates/admin/settings.php (added)
-
tags/1.0.2/templates/certificate-template.php (added)
-
tags/1.0.2/templates/verification-form.php (added)
-
tags/1.0.2/templates/verification-result.php (added)
-
trunk/academic-certificate-verification.php (modified) (1 diff)
-
trunk/assets/js/admin.js (modified) (1 diff)
-
trunk/includes/class-academic-certificate-verification.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
academic-certificate-verification/trunk/academic-certificate-verification.php
r3437932 r3448834 4 4 * Plugin URI: https://tarikul.top/plugins/academic-certificate-verification/ 5 5 * Description: A WordPress plugin to verify certificates with unique IDs and codes through custom URLs and shortcodes. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Requires at least: 6.5 8 8 * Requires PHP: 7.2 -
academic-certificate-verification/trunk/assets/js/admin.js
r3437932 r3448834 16 16 } else { 17 17 $('#expiry_date_field').hide(); 18 $('#expiry_date').val(''); 18 19 } 19 20 }).trigger('change'); -
academic-certificate-verification/trunk/includes/class-academic-certificate-verification.php
r3437932 r3448834 33 33 * @since 1.0.0 34 34 */ 35 public string $version = '1.0. 1';35 public string $version = '1.0.2'; 36 36 37 37 /** -
academic-certificate-verification/trunk/readme.txt
r3441626 r3448834 1 1 === Academic Certificate Verification === 2 2 Contributors: riko910 3 Tags: certificate, verification, online course, course, education3 Tags: certificate, verification, validate, certificate verification, certificate validation 4 4 Requires at least: 6.5 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.2 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPL v2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 1.0.1 = 82 * New: Certificate filter 83 * New: Course create 84 * New: Batch create 85 * New: PDF download 86 * New: Certificate maker 87 88 = 1.0.0 = 89 * Initial release 90 * Certificate verification system 91 * Shortcode support 92 * Bulk import/export functionality 93 * Responsive design 81 ### 1.0.2 (January 28, 2026) 82 - **Update:** Security update 83 - **Fix:** Expiry date save from admin 84 ### 1.0.1 (January 15, 2026) 85 - **New:** Certificate filter 86 - **New:** Course create 87 - **New:** Batch create 88 - **New:** PDF download 89 - **New:** Certificate maker 90 ### 1.0.0 (January 07, 2026) 91 - Initial release with core features: 92 - **New:** Shortcode support 93 - **New:** Bulk import/export functionality 94 - **New:** Responsive design 94 95 95 96 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.