Changeset 1375241
- Timestamp:
- 03/20/2016 11:35:57 PM (10 years ago)
- Location:
- mathematica-toolbox/trunk
- Files:
-
- 3 edited
-
Mathematica-Toolbox.php (modified) (1 diff)
-
README.txt (modified) (2 diffs)
-
public/Mathematica-WP-Toolbox-public.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mathematica-toolbox/trunk/Mathematica-Toolbox.php
r1244500 r1375241 14 14 * Plugin URI: https://wordpress.org/plugins/Mathematica-Toolbox/ 15 15 * Description: A "toolbox" of shortcodes for people who write articles about Mathematica code/the Wolfram Language. Includes source code highlighting for Mathematica code/Wolfram Language, automated CDF embedding, Wolfram Cloud API utility shortcode, and a seamless cached interface to Mathematica.Stackexchange.com. 16 * Version: 1.0. 216 * Version: 1.0.3 17 17 * Author: Calle Ekdahl 18 18 * License: GPL-2.0+ -
mathematica-toolbox/trunk/README.txt
r1244508 r1375241 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.2.2 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 124 124 == Changelog == 125 125 126 **Version 1.0.3** 127 128 Release date: 21st Mars, 2016 129 130 * Fixed a code highlighting problem. 131 126 132 **Version 1.0.2** 127 133 128 134 Release date: 13th September, 2015 129 135 130 * Fixed a problem with the `Wolfram CloudAPI` shortcode with custom parameters.136 * Fixed a problem with the `WolframAPI` shortcode with custom parameters. 131 137 132 138 **Version 1.0.1** -
mathematica-toolbox/trunk/public/Mathematica-WP-Toolbox-public.php
r1244467 r1375241 530 530 public function enqueue_styles() { 531 531 532 //wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/Mathematica-WP-Toolbox-public.css', array(), $this->version, 'all' );533 //wp_enqueue_style( 'prettify', plugin_dir_url( __FILE__ ) . 'css/prettify-mma.css', array(), $this->version, 'all' );534 wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/minified.css', array(), $this->version, 'all' );532 wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/Mathematica-WP-Toolbox-public.css', array(), $this->version, 'all' ); 533 wp_enqueue_style( 'prettify', plugin_dir_url( __FILE__ ) . 'css/prettify-mma.css', array(), $this->version, 'all' ); 534 //wp_enqueue_style( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'css/minified.css', array(), $this->version, 'all' ); 535 535 } 536 536 … … 542 542 public function enqueue_scripts() { 543 543 544 //wp_enqueue_script( 'lang-mma', plugin_dir_url( __FILE__ ) . 'js/lang-mma.js', array( 'prettify' ), $this->version, true );545 //wp_enqueue_script( 'prettify', plugin_dir_url( __FILE__ ) . 'js/prettify.js', array(), $this->version, true );544 wp_enqueue_script( 'lang-mma', plugin_dir_url( __FILE__ ) . 'js/lang-mma.js', array( 'prettify' ), $this->version, true ); 545 wp_enqueue_script( 'prettify', plugin_dir_url( __FILE__ ) . 'js/prettify.js', array(), $this->version, true ); 546 546 wp_enqueue_script( 'cdfplugin', plugin_dir_url( __FILE__ ) . 'js/cdfplugin.js', array(), $this->version, false ); 547 //wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/Mathematica-WP-Toolbox-public.js', array( 'jquery' ), $this->version, true );548 wp_enqueue_script( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'js/minified.js', array( 'jquery' ), $this->version, true );547 wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/Mathematica-WP-Toolbox-public.js', array( 'jquery' ), $this->version, true ); 548 //wp_enqueue_script( 'Mathematica-WP-Toolbox-public', plugin_dir_url( __FILE__ ) . 'js/minified.js', array( 'jquery' ), $this->version, true ); 549 549 } 550 550
Note: See TracChangeset
for help on using the changeset viewer.