Plugin Directory

Changeset 2724669

Timestamp:
05/16/2022 03:18:14 PM (2 years ago)
Author:
aaronfc
Message:

SyntaxHighlighter Evolved 3.6.2

Location:
syntaxhighlighter/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • syntaxhighlighter/trunk/readme.txt

    r2636910 r2724669  
    33Donate link: https://alex.blog/2019/03/13/in-memory-of-alex-donation-link-update/
    44Tags: code, source, sourcecode, php, syntax highlighting, syntax, highlight, highlighting, highlighter, WordPress.com
    5 Requires at least: 5.6
    6 Tested up to: 5.8
    7 Stable tag: 3.6.1
     5Requires at least: 5.
     6Tested up to: 5.
     7Stable tag: 3.6.
    88
    99Easily post syntax-highlighted code to your site without having to modify the code at all. As seen on WordPress.com.
     
    4040
    4141== ChangeLog ==
     42
     43
     44
     45
    4246
    4347= Version 3.6.1 =
  • syntaxhighlighter/trunk/syntaxhighlighter.php

    r2636910 r2724669  
    55Plugin Name:  SyntaxHighlighter Evolved
    66Plugin URI:   https://alex.blog/wordpress-plugins/syntaxhighlighter/
    7 Version:      3.6.1
     7Version:      3.6.
    88Description:  Easily post syntax-highlighted code to your site without having to modify the code at all. Uses Alex Gorbatchev's <a href="http://alexgorbatchev.com/SyntaxHighlighter/">SyntaxHighlighter</a>. Includes a new editor block.
    99Author:       Alex Mills (Viper007Bond)
     
    1212License:      GPL2
    1313License URI:  https://www.gnu.org/licenses/gpl-2.0.html
    14 Requires at least: 5.6
    15 Tested up to: 5.8
     14Requires at least: 5.
     15Tested up to: 5.
    1616Requires PHP: 7.0
    1717
     
    2020class SyntaxHighlighter {
    2121    // All of these variables are private. Filters are provided for things that can be modified.
    22     public $pluginver            = '3.6.1';  // Plugin version
     22    public $pluginver            = '3.6.';  // Plugin version
    2323    public $agshver              = false;    // Alex Gorbatchev's SyntaxHighlighter version (dynamically set below due to v2 vs v3)
    2424    public $shfolder             = false;    // Controls what subfolder to load SyntaxHighlighter from (v2 or v3)
     
    151151        wp_register_script( 'syntaxhighlighter-brush-scala',      plugins_url( $this->shfolder . '/scripts/shBrushScala.js',      __FILE__ ), array( 'syntaxhighlighter-core' ), $this->agshver );
    152152        wp_register_script( 'syntaxhighlighter-brush-sql',        plugins_url( $this->shfolder . '/scripts/shBrushSql.js',        __FILE__ ), array( 'syntaxhighlighter-core' ), $this->agshver );
     153
    153154        wp_register_script( 'syntaxhighlighter-brush-vb',         plugins_url( $this->shfolder . '/scripts/shBrushVb.js',         __FILE__ ), array( 'syntaxhighlighter-core' ), $this->agshver );
    154155        wp_register_script( 'syntaxhighlighter-brush-xml',        plugins_url( $this->shfolder . '/scripts/shBrushXml.js',        __FILE__ ), array( 'syntaxhighlighter-core' ), $this->agshver );
     
    233234            'scala'         => 'scala',
    234235            'sql'           => 'sql',
     236
    235237            'vb'            => 'vb',
    236238            'vbnet'         => 'vb',
     
    274276            'ruby'       => __( 'Ruby / Ruby on Rails',      'syntaxhighlighter' ),
    275277            'scala'      => __( 'Scala',                     'syntaxhighlighter' ),
     278
    276279            'sql'        => __( 'SQL',                       'syntaxhighlighter' ),
    277280            'vb'         => __( 'Visual Basic',              'syntaxhighlighter' ),
Note: See TracChangeset for help on using the changeset viewer.