Plugin Directory

Changeset 1642723


Ignore:
Timestamp:
04/22/2017 12:10:36 AM (9 years ago)
Author:
agusph
Message:

Update trunk to prepare version 1.2.2

Location:
aph-prism-highlighter/trunk
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • aph-prism-highlighter/trunk/aph-prism-highlighter.php

    r1616715 r1642723  
    33 * Plugin Name: APH Prism Syntax Highlighter
    44 * Description: Bringing Prism Syntax Highlighter (Prismjs.com) into Wordpress easily, please go to <a href="options-general.php?page=aph-prism-highlighter" target="_blank">Settings &raquo; Prism Highlighter</a> to change some options, or you can leave it as is.
    5  * Version: 1.2
     5 * Version: 1.2.2
    66 * Author: Agus Prawoto Hadi
    77 * Author URI: http://www.webdevzoom.com
  • aph-prism-highlighter/trunk/includes/aphph-build.php

    r1616715 r1642723  
    3333            "pre.aphph-adddarkplain,
    3434pre.aphph-addlightplain {
    35     padding: 10px 20px;
     35    padding: 7px 15px;
    3636    display: block;
    3737    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    38     white-space: pre-wrap;
    39     white-space: -moz-pre-wrap;
    40     white-space: -o-pre-wrap;
    41     white-space: -pre-wrap;
    4238    word-wrap: break-word;
    43     line-height: 25px;
    4439    font-size: 95%;
    4540    text-align: left
    4641}
    4742pre.aphph-addlightplain {
    48     background: #ececec;
    49     color: #52565d;
     43    background: #f9f9f9; !important;
     44    color: #4a4a4a;
    5045}
    5146pre.aphph-adddarkplain {
    52     background: #131313;
     47    background: #131313 !important;
    5348    color: #CACACA;
    5449}";
     
    113108            Theme
    114109        */
    115         // Cleanup theme directory
    116         $theme_path = APHPH_PLUGIN_PATH . APHPH_DS . 'css' . APHPH_DS . 'prism';
    117         $files = scandir($theme_path);
    118        
    119         foreach ($files as $file) {
    120             if ($file == '.' || $file == '..')
    121                 continue;
    122             unlink ($theme_path . APHPH_DS . $file);
    123         }
    124110       
    125111        // Get theme css
  • aph-prism-highlighter/trunk/readme.txt

    r1616720 r1642723  
    44Requires at least: 3.5
    55Tested up to: 4.7
    6 Stable tag: 1.2
     6Stable tag: 1.2.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3232* Support TinyMCE Visual mode and Text Mode (Quick Tags), it also supports the Quick tags used in the admin comment page (screenshot 5)
    3333* Use similar pattern with <a href="https://wordpress.org/plugins/aph-syntax-highlighter/" title="APH Syntax Highlighter" target="_blank">APH Syntax Highlighter</a> and <a href="https://wordpress.org/plugins/crayon-syntax-highlighter/" title="Crayon Syntax Highlighter" target="_blank">Crayon Syntax Highlighter</a> plugins, so your code will still work using those plugins
     34* Language added: Light plain and dark plain
    3435
    3536== Installation ==
     
    5556== Changelog ==
    5657
    57 = 1.2.1 (March 18, 2017) =
     58= 1.2.2 April 22, 2017) =
     59Bug Fixed: Light Plain and Dark Plain is not responsive
    5860
    59 * Bug Fixed
     61= 1.2.1 April 22, 2017) =
     62Minor bug fixed
    6063
    6164= 1.2 (March 18, 2017) =
  • aph-prism-highlighter/trunk/uninstall.php

    r1616715 r1642723  
    88delete_option(APHPH_OPTION_PHDATA);
    99delete_option(APHPH_OPTION_VERSION);
     10delete_option(APHPH_OPTION_NOTICE);
    1011
    1112$upload_dir = wp_upload_dir();
Note: See TracChangeset for help on using the changeset viewer.