Changeset 3392821
- Timestamp:
- 11/10/2025 09:43:26 AM (5 months ago)
- Location:
- wordpress-clock/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (4 diffs)
-
wp-clock.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-clock/trunk/readme.txt
r3392818 r3392821 1 === WordPress Clock===1 === Live Clock Widget === 2 2 Contributors: mervinpraison 3 3 Donate link: https://mer.vin … … 5 5 Requires at least: 4.0 6 6 Tested up to: 6.8 7 Stable tag: 2. 07 Stable tag: 2.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 10 11 Display a modern, responsive analog or digital clock on your WordPress site using shortcode or widget.11 Display a modern, responsive analog or digital clock using shortcode or widget. No Flash, pure JavaScript. 12 12 13 13 == Description == 14 14 15 WordPress Clockprovides a beautiful, modern clock display for your website. Choose between analog and digital styles, customize the size, and display it anywhere using a shortcode or widget.15 Live Clock Widget provides a beautiful, modern clock display for your website. Choose between analog and digital styles, customize the size, and display it anywhere using a shortcode or widget. 16 16 17 17 **Key Features:** … … 83 83 == Changelog == 84 84 85 = 2.1 = 86 * **CRITICAL:** Fixed trademark violation - renamed from "WordPress Clock" to "Live Clock Widget" 87 * Updated all text domains to 'live-clock-widget' 88 * Updated plugin URI and author URI 89 85 90 = 2.0 = 86 91 * **MAJOR UPDATE:** Complete rewrite from scratch … … 110 115 == Upgrade Notice == 111 116 117 = 2.1 = 118 CRITICAL: Plugin renamed to comply with WordPress trademark guidelines. Update immediately to avoid closure. 119 112 120 = 2.0 = 113 121 CRITICAL UPDATE: Flash removed for security. Complete rewrite with modern JavaScript. All users must update immediately. -
wordpress-clock/trunk/wp-clock.php
r3392818 r3392821 1 1 <?php 2 2 /* 3 Plugin Name: WordPress Clock4 Plugin URI: https://mer.vin/ wordpress-clock3 Plugin Name: Live Clock Widget 4 Plugin URI: https://mer.vin/live-clock-widget 5 5 Description: Displays a modern, responsive analog or digital clock using JavaScript. Use shortcode [wpclock] or widget. 6 Version: 2. 06 Version: 2.1 7 7 Author: Mervin Praison 8 8 Author URI: https://mer.vin 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 Text Domain: wordpress-clock11 Text Domain: live-clock-widget 12 12 Domain Path: /languages 13 13 */ … … 69 69 parent::__construct( 70 70 'wpclock_widget', 71 __(' WordPress Clock', 'wordpress-clock'),71 __('Live Clock Widget', 'live-clock-widget'), 72 72 array( 73 'description' => __('Displays a modern analog or digital clock', ' wordpress-clock'),73 'description' => __('Displays a modern analog or digital clock', 'live-clock-widget'), 74 74 'classname' => 'wpclock-widget' 75 75 ) … … 99 99 <p> 100 100 <label for="<?php echo esc_attr($this->get_field_id('title')); ?>"> 101 <?php esc_html_e('Title:', ' wordpress-clock'); ?>101 <?php esc_html_e('Title:', 'live-clock-widget'); ?> 102 102 </label> 103 103 <input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" … … 107 107 <p> 108 108 <label for="<?php echo esc_attr($this->get_field_id('type')); ?>"> 109 <?php esc_html_e('Clock Type:', ' wordpress-clock'); ?>109 <?php esc_html_e('Clock Type:', 'live-clock-widget'); ?> 110 110 </label> 111 111 <select class="widefat" id="<?php echo esc_attr($this->get_field_id('type')); ?>" 112 112 name="<?php echo esc_attr($this->get_field_name('type')); ?>"> 113 <option value="analog" <?php selected($type, 'analog'); ?>><?php esc_html_e('Analog', ' wordpress-clock'); ?></option>114 <option value="digital" <?php selected($type, 'digital'); ?>><?php esc_html_e('Digital', ' wordpress-clock'); ?></option>113 <option value="analog" <?php selected($type, 'analog'); ?>><?php esc_html_e('Analog', 'live-clock-widget'); ?></option> 114 <option value="digital" <?php selected($type, 'digital'); ?>><?php esc_html_e('Digital', 'live-clock-widget'); ?></option> 115 115 </select> 116 116 </p> 117 117 <p> 118 118 <label for="<?php echo esc_attr($this->get_field_id('size')); ?>"> 119 <?php esc_html_e('Size (px):', ' wordpress-clock'); ?>119 <?php esc_html_e('Size (px):', 'live-clock-widget'); ?> 120 120 </label> 121 121 <input class="widefat" id="<?php echo esc_attr($this->get_field_id('size')); ?>"
Note: See TracChangeset
for help on using the changeset viewer.