Plugin Directory

Changeset 3392821


Ignore:
Timestamp:
11/10/2025 09:43:26 AM (5 months ago)
Author:
mervinpraison
Message:

Version 2.1: CRITICAL - Fix trademark violation

TRADEMARK COMPLIANCE:

This update addresses the closure notice received on October 5, 2025 for trademark violation per WordPress.org guidelines.

All functionality remains the same - only the display name has changed to comply with trademark guidelines.

Location:
wordpress-clock/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wordpress-clock/trunk/readme.txt

    r3392818 r3392821  
    1 === WordPress Clock ===
     1=== Live Clock Widget ===
    22Contributors: mervinpraison
    33Donate link: https://mer.vin
     
    55Requires at least: 4.0
    66Tested up to: 6.8
    7 Stable tag: 2.0
     7Stable tag: 2.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 Display a modern, responsive analog or digital clock on your WordPress site using shortcode or widget.
     11Display a modern, responsive analog or digital clock using shortcode or widget. No Flash, pure JavaScript.
    1212
    1313== Description ==
    1414
    15 WordPress Clock 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.
     15Live 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.
    1616
    1717**Key Features:**
     
    8383== Changelog ==
    8484
     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
    8590= 2.0 =
    8691* **MAJOR UPDATE:** Complete rewrite from scratch
     
    110115== Upgrade Notice ==
    111116
     117= 2.1 =
     118CRITICAL: Plugin renamed to comply with WordPress trademark guidelines. Update immediately to avoid closure.
     119
    112120= 2.0 =
    113121CRITICAL UPDATE: Flash removed for security. Complete rewrite with modern JavaScript. All users must update immediately.
  • wordpress-clock/trunk/wp-clock.php

    r3392818 r3392821  
    11<?php
    22/*
    3 Plugin Name: WordPress Clock
    4 Plugin URI: https://mer.vin/wordpress-clock
     3Plugin Name: Live Clock Widget
     4Plugin URI: https://mer.vin/live-clock-widget
    55Description: Displays a modern, responsive analog or digital clock using JavaScript. Use shortcode [wpclock] or widget.
    6 Version: 2.0
     6Version: 2.1
    77Author: Mervin Praison
    88Author URI: https://mer.vin
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
    11 Text Domain: wordpress-clock
     11Text Domain: live-clock-widget
    1212Domain Path: /languages
    1313*/
     
    6969        parent::__construct(
    7070            'wpclock_widget',
    71             __('WordPress Clock', 'wordpress-clock'),
     71            __('Live Clock Widget', 'live-clock-widget'),
    7272            array(
    73                 'description' => __('Displays a modern analog or digital clock', 'wordpress-clock'),
     73                'description' => __('Displays a modern analog or digital clock', 'live-clock-widget'),
    7474                'classname' => 'wpclock-widget'
    7575            )
     
    9999        <p>
    100100            <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'); ?>
    102102            </label>
    103103            <input class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>"
     
    107107        <p>
    108108            <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'); ?>
    110110            </label>
    111111            <select class="widefat" id="<?php echo esc_attr($this->get_field_id('type')); ?>"
    112112                    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>
    115115            </select>
    116116        </p>
    117117        <p>
    118118            <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'); ?>
    120120            </label>
    121121            <input class="widefat" id="<?php echo esc_attr($this->get_field_id('size')); ?>"
Note: See TracChangeset for help on using the changeset viewer.