Plugin Directory

Changeset 1134674


Ignore:
Timestamp:
04/14/2015 05:23:57 PM (11 years ago)
Author:
fsdsolutions
Message:

new version release 1.6b

Location:
quickapp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • quickapp/trunk/admin/publish.php

    r927209 r1134674  
    9999
    100100</section><!--/wrap-->
     101
     102<div id="dialog-paypal" title="QuickApp"></div>
     103<!--Inquiry Form END-->
     104
     105<script>
     106jQuery(document).ready(function(){
     107    jQuery('#dialog-paypal').dialog({
     108        autoOpen: false,
     109        width: 600,
     110        modal: true,
     111        resizable: false,
     112        buttons: {
     113            "Buy": function() {
     114                document.paypal_form.submit();
     115            },
     116            "Ignore": function() {
     117                jQuery(this).dialog("close");
     118            }
     119        }
     120    });
     121});
     122</script>
    101123<script>
    102124jQuery.ajax({
     
    112134    data: {'action': 'compile_app'},
    113135    url: ajaxurl,
    114     dataType: "json",
     136    //dataType: "json",
    115137    cache: false,
    116138    success: function( str ) {
    117         jQuery('#AppVersion').html('APK File version: '+str);
     139        if(jQuery.isNumeric( str ) == true){
     140            jQuery('#AppVersion').html('APK File version: '+str);
     141        }else{
     142            jQuery('#dialog-paypal').html(str);
     143            jQuery('#AppVersion').html('Tokens Consumed');
     144            jQuery('#dialog-paypal').dialog('open');
     145        }
    118146    },
    119     error: function(xhr, textStatus, errorThrown){
     147    error: function(xhr, textStatus, errorThrown){     
     148       
    120149        jQuery('#btndownload').fadeTo("fast", .5).removeAttr("href");
    121150        jQuery('#AppVersion').html('Compilation Queued');
  • quickapp/trunk/lib/fsd.php

    r1013356 r1134674  
    232232        $data['app_id'] = get_option('fsd_appid');
    233233        $operation = 'generate_app';       
    234         echo fsd::_api_request($data, $operation);
     234        die(fsd::_api_request($data, $operation));
    235235    }
    236236   
  • quickapp/trunk/quickapp.php

    r1068602 r1134674  
    55* Description: Quickapp is a wordpress plugin that converts your blog or website into an HTML5 mobile app for all smartphones platforms including android. We offer a free version for small to medium website as well as custom apps for an affordable price. Our plugin can be used to generate files that you can self-publish as a native app to Apple App Store and Google Play Android market.
    66* Author: FSD Solutions LLC.
    7 * Version: 1.5b
     7* Version: 1.6b
    88* Author URI: http://www.fsdsolutions.com/
    99* Plugin URI: http://www.fsdsolutions.com/quickapp/
  • quickapp/trunk/readme.txt

    r1088167 r1134674  
    44Tags: android, mobile, HTML5 app, mobile app, mobile theme, smartphones, web app, wptouch, webapp, app generator, wp to mobile, wp mobile app, native app, wp blog app, android app
    55Requires at least: 3.0.1
    6 Tested up to: 4.0
     6Tested up to: 4.1
    77Stable tag: 1.5
    88License: GPLv2 or later
     
    6262
    6363== Changelog ==
     64= 1.6b =
     65* bug fixes and performance improvements.
    6466= 1.5b =
    6567* Template bug fixes.
     
    99101</ul>
    100102== Upgrade Notice ==
    101 * Template bug fixes.
    102 * App Compilation fixes.
     103* bug fixes and performance improvements.
Note: See TracChangeset for help on using the changeset viewer.