Plugin Directory

Changeset 2694868


Ignore:
Timestamp:
03/16/2022 02:21:43 PM (4 years ago)
Author:
ClearcodeHQ
Message:

Version 1.2.3

Location:
cc-syntax-highlight
Files:
178 added
4 edited

Legend:

Unmodified
Added
Removed
  • cc-syntax-highlight/trunk/README.txt

    r2177443 r2694868  
    44Requires PHP: 7.0
    55Requires at least: 4.6.1
    6 Tested up to: 5.2.4
     6Tested up to: 5.9.2
    77Stable tag: trunk
    88License: GPLv3
     
    6060== Changelog ==
    6161
     62= 1.2.3 =
     63*Release date: 16.03.2022*
     64
     65* Added PHP 8.0 support.
     66
    6267= 1.2.2 =
    6368*Release date: 22.10.2019*
  • cc-syntax-highlight/trunk/class-plugin.php

    r2177443 r2694868  
    22
    33/*
    4     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-syntax-highlight/trunk/class-singleton.php

    r2177443 r2694868  
    22
    33/*
    4     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
     
    2727if ( ! class_exists( __NAMESPACE__ . '\Singleton' ) ) {
    2828    abstract class Singleton {
    29         final private function __clone() {}
    30         final private function __wakeup() {}
    31        
    3229        protected function __construct() {}
    33 
    3430        public static function instance() {
    3531            static $instance = null;
  • cc-syntax-highlight/trunk/plugin.php

    r2177443 r2694868  
    55    Plugin URI: https://wordpress.org/plugins/cc-syntax-highlight
    66    Description: This plugin allows you very simply syntax highlight source code in your content using highlight.js or google-code-prettify libraries.
    7     Version: 1.2.2
     7    Version: 1.2.3
    88    Author: Clearcode.cc
    99    Author URI: http://clearcode.cc
     
    1313    License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    1414
    15     Copyright (C) 2019 by Clearcode <http://clearcode.cc>
     15    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    1616    and associates (see AUTHORS.txt file).
    1717
Note: See TracChangeset for help on using the changeset viewer.