Changeset 1894033
- Timestamp:
- 06/17/2018 03:05:17 AM (8 years ago)
- Location:
- code-editor-and-compiler/trunk
- Files:
-
- 3 deleted
- 5 edited
-
admin/compilebin-admin.php (modified) (2 diffs)
-
assets/compilebin_screenshot_1.png (deleted)
-
assets/compilebin_screenshot_2.png (deleted)
-
assets/compilebin_screenshot_3.png (deleted)
-
common/css/editor-style.css (modified) (1 diff)
-
compilebin.php (modified) (1 diff)
-
public/compilebin-public.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
code-editor-and-compiler/trunk/admin/compilebin-admin.php
r1893890 r1894033 7 7 public function __construct() { 8 8 $this->plugin_name = "code-editor-and-compiler"; 9 $this->plugin_version = "1.2. 0";9 $this->plugin_version = "1.2.1"; 10 10 $this->enqueueScripts(); 11 11 $this->enqueueStyles(); … … 43 43 public function enqueueStyles() { 44 44 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'); 46 46 } 47 47 -
code-editor-and-compiler/trunk/common/css/editor-style.css
r1893890 r1894033 48 48 margin-bottom: 5px; 49 49 min-height: 50px; 50 max-height: 53vh;50 max-height: 48vh; 51 51 overflow: auto; 52 52 } -
code-editor-and-compiler/trunk/compilebin.php
r1893662 r1894033 10 10 * Plugin URI: https://www.compilebin.com 11 11 * Description: Execute code online. 12 * Version: 1.2. 012 * Version: 1.2.1 13 13 * Author: Compilebin 14 14 * Author URI: https://www.compilebin.com/about -
code-editor-and-compiler/trunk/public/compilebin-public.php
r1893662 r1894033 7 7 public function __construct() { 8 8 $this->plugin_name = "code-editor-and-compiler"; 9 $this->plugin_version = "1.2. 0";9 $this->plugin_version = "1.2.1"; 10 10 $this->enqueueScripts(); 11 11 $this->enqueueStyles(); … … 23 23 public function enqueueStyles() { 24 24 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'); 26 26 } 27 27 -
code-editor-and-compiler/trunk/readme.txt
r1893911 r1894033 5 5 Requires at least: 3.1 6 6 Tested up to: 4.9.4 7 Stable tag: 1.2. 07 Stable tag: 1.2.1 8 8 Requires PHP: 5.2.4 9 9 License: GPLv2 or later … … 17 17 2) Ace code editor 18 18 Please visit https://www.compilebin.com for more information about the service. 19 Note 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. 20 Please report issues to support@compilebin.com 21 This plugin is actively maintained and we will fix the reported issues as soon as possible. 19 22 20 23 == Installation == … … 22 25 2. Activate the plugin through the 'Plugins' screen in WordPress. 23 26 3. Use 'Insert code' button to launch code editor and signup on https://www.compilebin.com to get your API key. 27 4. 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. 24 28 25 29 == 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.30 1. /assets/screenshot-1.png - Editor to write, save and execute code. 31 2. /assets/screenshot-2.png - Insert code button on the admin page. 32 3. /assets/screenshot-3.png - Dialog box to update API key. 33 4. /assets/screenshot-4.png - Dialog box to set preferences. 30 34 31 35 == Changelog == 36 1.2.1 37 Bug Fixes. 38 32 39 1.2.0 33 Custom settings inroduced to set preferences like hiding run button, default editor, default theme and program ing language.40 Custom settings inroduced to set preferences like hiding run button, default editor, default theme and programming language. 34 41 35 42 1.1.0
Note: See TracChangeset
for help on using the changeset viewer.