Plugin Directory

Changeset 1714484


Ignore:
Timestamp:
08/17/2017 06:58:39 AM (9 years ago)
Author:
aaronrutley
Message:

version 1.3.2

Location:
acf-theme-code/trunk
Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • acf-theme-code/trunk/acf_theme_code.php

    r1658038 r1714484  
    44Plugin URI: http://www.hookturn.io
    55Description: Generates theme code for ACF field groups to speed up development.
    6 Version: 1.3.1
     6Version: 1.3.2
    77Author: Aaron Rutley, Ben Pearson
    88Author URI: http://www.hookturn.io
     
    1515
    1616// Define the version number
    17 define( 'ACFTC_VERSION', '1.3.1' );
     17define( 'ACFTC_VERSION', '1.3.2' );
    1818
    1919// Check for dashboard or admin panel
  • acf-theme-code/trunk/core/core.php

    r1658038 r1714484  
    257257
    258258            // Clipboard
    259             wp_enqueue_script( 'acftc_clipboard_js', self::$plugin_url . 'assets/clipboard.js', '' , self::$plugin_version);
     259            wp_enqueue_script( 'acftc_clipboard_js', self::$plugin_url . 'assets/clipboard.min.js', '' , self::$plugin_version);
    260260
    261261            // Plugin js
    262             wp_enqueue_script( 'acftc_js', self::$plugin_url . 'assets/acf-theme-code.js', array( 'acftc_clipboard_js' ), self::$plugin_version );
     262            wp_enqueue_script( 'acftc_js', self::$plugin_url . 'assets/acf-theme-code.js', array( 'acftc_clipboard_js' ), self::$plugin_version, 'true' );
    263263
    264264        }
  • acf-theme-code/trunk/readme.txt

    r1707366 r1714484  
    44Requires at least: 4.8
    55Tested up to: 4.8.1
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77License: GPL2+
    88
     
    8989== Changelog ==
    9090
     91= 1.3.2 =
     92* Fix: Updated clipboard.js & bug fix for the copy to clipboard feature
     93
    9194= 1.3.1 =
    9295* Fix: Updates to array count functionality for PHP 5.4
Note: See TracChangeset for help on using the changeset viewer.