Plugin Directory

Changeset 567456


Ignore:
Timestamp:
07/04/2012 04:51:26 PM (14 years ago)
Author:
jazzigor
Message:

Further additions to v0.9.9

Location:
jazzy-forms/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • jazzy-forms/trunk/jazzy-forms.php

    r566668 r567456  
    44Plugin URI: http://www.jazzyforms.com/
    55Description: Online form builder with an emphasis on calculation
    6 Version: 0.9.8
     6Version: 0.9.9
    77Author: Igor Prochazka
    88Author URI: http://www.l90r.com/
     
    2828*/
    2929
    30 define(JZZF_VERSION, 0.0908);
     30define(JZZF_VERSION, 0.0909);
     31define(JZZF_VERSION_STRING, "0.0909");
    3132define(JZZF_OPTION_VERSION, 'jzzf_version');
    3233
     
    4849
    4950function jzzf_head() {
    50     wp_register_script( 'mustache', plugins_url('jazzy-forms/3rdparty/mustache.js', null, '0.3.0'));
    51     wp_register_script( 'jzzf-tabs', plugins_url('jazzy-forms/back/tabs.js', null, '1.0'));
    52     wp_register_script( 'jzzf-elements', plugins_url('jazzy-forms/back/elements.js', null, '1.0'));
    53     wp_register_script( 'jzzf-id', plugins_url('jazzy-forms/back/id.js', null, '1.0'));
    54     wp_register_script( 'jzzf-admin-js', plugins_url('jazzy-forms/back/gui.js'), array('mustache', 'jzzf-id', 'jzzf-elements', 'jzzf-tabs', 'jquery-ui-draggable'), '1.0' );
    55     wp_register_style( 'jzzf-admin-css', plugins_url('jazzy-forms/back/gui.css'));
    56     wp_enqueue_script('jquery-ui-sortable');
    57     wp_enqueue_script('jzzf-admin-js');
    58     wp_enqueue_style('jzzf-admin-css');
     51    wp_register_script( 'mustache', plugins_url('jazzy-forms/3rdparty/mustache.js'), null, '0.3.0');
     52    wp_register_script( 'jzzf-tabs', plugins_url('jazzy-forms/back/tabs.js'), null, JZZF_VERSION_STRING);
     53    wp_register_script( 'jzzf-elements', plugins_url('jazzy-forms/back/elements.js'), null, JZZF_VERSION_STRING);
     54    wp_register_script( 'jzzf-id', plugins_url('jazzy-forms/back/id.js'), null, JZZF_VERSION_STRING);
     55    wp_register_script( 'jzzf-admin-js', plugins_url('jazzy-forms/back/gui.js'), array('jquery-ui-draggable', 'jquery-ui-sortable'), JZZF_VERSION_STRING );
     56    wp_register_style( 'jzzf-admin-css', plugins_url('jazzy-forms/back/gui.css'), null, JZZF_VERSION_STRING);
     57    wp_enqueue_script('mustache', '0.3.0');
     58    wp_enqueue_script('jzzf-id', null, null, JZZF_VERSION_STRING);
     59    wp_enqueue_script('jzzf-elements', null, null, JZZF_VERSION_STRING);
     60    wp_enqueue_script('jzzf-tabs', null, null, JZZF_VERSION_STRING);
     61    wp_enqueue_script('jzzf-admin-js', null, null, JZZF_VERSION_STRING);
     62    wp_enqueue_style('jzzf-admin-css', null, null, JZZF_VERSION_STRING);
    5963}
    6064
     
    154158
    155159function jzzf_enqueue() {
    156     wp_register_script('jazzy-forms', plugins_url('jazzy-forms/front/jazzy-forms.js'), array('jquery'), '1.0');
     160    wp_register_script('jazzy-forms', plugins_url('jazzy-forms/front/jazzy-forms.js'), array('jquery'), JZZF_VERSION_STRING);
    157161    wp_enqueue_script('jquery');
    158     wp_enqueue_script('jazzy-forms');
     162    wp_enqueue_script('jazzy-forms', null, null, JZZF_VERSION_STRING);
    159163}
    160164
  • jazzy-forms/trunk/readme.txt

    r544665 r567456  
    44Tags: forms, form generator, calculator, price calculator, cost estimate, quote, email
    55Requires at least: 3.2.1
    6 Tested up to: 3.3.1
    7 Stable tag: 0.9.8
     6Tested up to: 3.4.1
     7Stable tag: 0.9.9
    88
    9 Jazzy Forms is an online form generator that performs instant calculations. It's ideal for inter-active price calculators and for sending out cost estimates by email.
     9Jazzy Forms is an online form generator that performs instant calculations. It's ideal for inter-active price calculators.
    1010
    1111== Description ==
     
    2121* Rich number formatting
    2222* Flexible (vertical or side-by-side) layout
     23* Formula placeholders in text output elements
    2324* Email
    2425
     
    9495While the author is still working on a proper documentation, you can preview a list of available functions at https://gist.github.com/1779127
    9596
     97= Can I use results in text output fields? =
     98
     99Yes, you can use text, heading and HTML elements with formulas. Wrap these formulas in double curly braces like in the following example:
     100
     101`Dear {{name}}, your cost estimate is {{total+fee}}.`
     102
    96103= Do you accept donations? =
    97104
     
    111118
    112119== Changelog ==
     120
     121= 0.9.9 =
     122* Real-time templating (evaluate placeholders in text/heading/html elements)
     123* Enhance analaysis and logging tools under the hood
     124* Avoid issues with outdated cached JS scripts
    113125
    114126= 0.9.8 =
Note: See TracChangeset for help on using the changeset viewer.