Plugin Directory

Changeset 1894033


Ignore:
Timestamp:
06/17/2018 03:05:17 AM (8 years ago)
Author:
rahburma
Message:

Bug fixes

Location:
code-editor-and-compiler/trunk
Files:
3 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • code-editor-and-compiler/trunk/admin/compilebin-admin.php

    r1893890 r1894033  
    77   public function __construct() {
    88      $this->plugin_name = "code-editor-and-compiler";
    9       $this->plugin_version = "1.2.0";
     9      $this->plugin_version = "1.2.1";
    1010      $this->enqueueScripts();
    1111      $this->enqueueStyles();
     
    4343   public function enqueueStyles() {
    4444      wp_enqueue_style('wp-jquery-ui-dialog');
    45       wp_enqueue_style('editor-style', plugins_url() . '/' . $this->plugin_name .  '/common/css/editor-style.css', array(), '', 'all');
     45      wp_enqueue_style('editor-style', plugins_url() . '/' . $this->plugin_name .  '/common/css/editor-style.css', array(), $this->version, 'all');
    4646   }
    4747
  • code-editor-and-compiler/trunk/common/css/editor-style.css

    r1893890 r1894033  
    4848    margin-bottom: 5px;
    4949    min-height: 50px;
    50     max-height: 53vh;
     50    max-height: 48vh;
    5151    overflow: auto;
    5252}
  • code-editor-and-compiler/trunk/compilebin.php

    r1893662 r1894033  
    1010 * Plugin URI:        https://www.compilebin.com
    1111 * Description:       Execute code online.
    12  * Version:           1.2.0
     12 * Version:           1.2.1
    1313 * Author:            Compilebin
    1414 * Author URI:        https://www.compilebin.com/about
  • code-editor-and-compiler/trunk/public/compilebin-public.php

    r1893662 r1894033  
    77   public function __construct() {
    88      $this->plugin_name = "code-editor-and-compiler";
    9       $this->plugin_version = "1.2.0";
     9      $this->plugin_version = "1.2.1";
    1010      $this->enqueueScripts();
    1111      $this->enqueueStyles();
     
    2323   public function enqueueStyles() {
    2424      wp_enqueue_style('wp-jquery-ui-dialog');
    25       wp_enqueue_style('editor-style', plugins_url() . '/' . $this->plugin_name .  '/common/css/editor-style.css', array(), '', 'all');
     25      wp_enqueue_style('editor-style', plugins_url() . '/' . $this->plugin_name .  '/common/css/editor-style.css', array(), $this->version, 'all');
    2626   }
    2727 
  • code-editor-and-compiler/trunk/readme.txt

    r1893911 r1894033  
    55Requires at least: 3.1
    66Tested up to: 4.9.4
    7 Stable tag: 1.2.0
     7Stable tag: 1.2.1
    88Requires PHP: 5.2.4
    99License: GPLv2 or later
     
    17172) Ace code editor
    1818Please visit https://www.compilebin.com for more information about the service.
     19Note that this plugin can also be used purely as a syntax highlighter only by hiding the run button on your code snippets. This mode of usage is free of any charges. Run button would be visible on admin view but not on public view.
     20Please report issues to support@compilebin.com
     21This plugin is actively maintained and we will fix the reported issues as soon as possible.
    1922
    2023== Installation ==
     
    22252. Activate the plugin through the 'Plugins' screen in WordPress.
    23263. Use 'Insert code' button  to launch code editor and signup on https://www.compilebin.com to get your API key.
     274. You don't need any key in case you are using only syntax highlighting feature and do not want users to execute code on your website.
    2428
    2529== Screenshots ==
    26 1. /assets/compilebin_screenshot_1.png - Editor to write, save and execute code.
    27 2. /assets/compilebin_screenshot_2.png - Insert code button on the admin page.
    28 3. /assets/compilebin_screenshot_3.png - Dialog box to update API key.
    29 4. /assets/compilebin_screenshot_4.png - Dialog box to set preferences.
     301. /assets/screenshot-1.png - Editor to write, save and execute code.
     312. /assets/screenshot-2.png - Insert code button on the admin page.
     323. /assets/screenshot-3.png - Dialog box to update API key.
     334. /assets/screenshot-4.png - Dialog box to set preferences.
    3034
    3135== Changelog ==
     361.2.1
     37Bug Fixes.
     38
    32391.2.0
    33 Custom settings inroduced to set preferences like hiding run button, default editor, default theme and programing language.
     40Custom settings inroduced to set preferences like hiding run button, default editor, default theme and programming language.
    3441
    35421.1.0
Note: See TracChangeset for help on using the changeset viewer.