Crayon Syntax Highlighter - Version 1.0.2

Version Description

Download this release

Release Info

Developer akarmenia
Plugin Icon wp plugin Crayon Syntax Highlighter
Version 1.0.2
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.2

Files changed (3) hide show
  1. crayon_wp.class.php +1 -1
  2. global.php +2 -2
  3. readme.txt +3 -1
crayon_wp.class.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: http://ak.net84.net/
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text. <a href="options-general.php?page=crayon_settings">View Settings.</a>
6
- Version: 1.0.1
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  License: GPL2
3
  Plugin Name: Crayon Syntax Highlighter
4
  Plugin URI: http://ak.net84.net/
5
  Description: Supports multiple languages, themes, highlighting from a URL, local file or post text. <a href="options-general.php?page=crayon_settings">View Settings.</a>
6
+ Version: 1.0.2
7
  Author: Aram Kocharyan
8
  Author URI: http://ak.net84.net/
9
  License: GPL2
global.php CHANGED
@@ -1,14 +1,14 @@
1
  <?php
2
 
3
  // Switches
4
- define('CRAYON_DEBUG', FALSE); // Enable to show exceptions on screen
5
 
 
6
 
7
  // Constants
8
 
9
  $uid = CRAYON_DEBUG ? uniqid() : ''; // Prevent caching in debug mode
10
 
11
- define('CRAYON_VERSION', '1.0.1' . $uid);
12
  define('CRAYON_DATE', '10th August, 2011');
13
  define('CRAYON_AUTHOR', 'Aram Kocharyan');
14
  // TODO These will be changed once I set up a site for docs
1
  <?php
2
 
3
  // Switches
 
4
 
5
+ define('CRAYON_DEBUG', FALSE); // Enable to show exceptions on screen
6
 
7
  // Constants
8
 
9
  $uid = CRAYON_DEBUG ? uniqid() : ''; // Prevent caching in debug mode
10
 
11
+ define('CRAYON_VERSION', '1.0.2' . $uid);
12
  define('CRAYON_DATE', '10th August, 2011');
13
  define('CRAYON_AUTHOR', 'Aram Kocharyan');
14
  // TODO These will be changed once I set up a site for docs
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://ak.net84.net/
4
  Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
5
  Requires at least: 3.0
6
  Tested up to: 3.2.1
7
- Stable tag: 1.0.1
8
 
9
  Syntax Highlighter supporting multiple languages, themes, highlighting from a URL, local file or post text.
10
 
@@ -15,6 +15,8 @@ It can highlight from a URL, a local file or Wordpress post text. Crayon makes i
15
  custom language elements with regular expressions.
16
  It also supports some neat features like mobile/touchscreen device detection, mouse interactions, toggled plain code, toggled line numbers, tab sizes, error logging and file extension detection just to name a few.
17
 
 
 
18
  == Installation ==
19
 
20
  Download the .zip of the plugin and extract the contents. Upload it to the Wordpress plugin directory and activate the plugin.
4
  Tags: syntax highlighter, syntax, highlighter, highlighting, crayon, code highlighter
5
  Requires at least: 3.0
6
  Tested up to: 3.2.1
7
+ Stable tag: 1.0.2
8
 
9
  Syntax Highlighter supporting multiple languages, themes, highlighting from a URL, local file or post text.
10
 
15
  custom language elements with regular expressions.
16
  It also supports some neat features like mobile/touchscreen device detection, mouse interactions, toggled plain code, toggled line numbers, tab sizes, error logging and file extension detection just to name a few.
17
 
18
+ Live Demo: <a href="http://bit.ly/poKNqs" target="_blank">http://bit.ly/poKNqs</a>
19
+
20
  == Installation ==
21
 
22
  Download the .zip of the plugin and extract the contents. Upload it to the Wordpress plugin directory and activate the plugin.