Changeset 1134674
- Timestamp:
- 04/14/2015 05:23:57 PM (11 years ago)
- Location:
- quickapp/trunk
- Files:
-
- 4 edited
-
admin/publish.php (modified) (2 diffs)
-
lib/fsd.php (modified) (1 diff)
-
quickapp.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quickapp/trunk/admin/publish.php
r927209 r1134674 99 99 100 100 </section><!--/wrap--> 101 102 <div id="dialog-paypal" title="QuickApp"></div> 103 <!--Inquiry Form END--> 104 105 <script> 106 jQuery(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> 101 123 <script> 102 124 jQuery.ajax({ … … 112 134 data: {'action': 'compile_app'}, 113 135 url: ajaxurl, 114 dataType: "json",136 //dataType: "json", 115 137 cache: false, 116 138 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 } 118 146 }, 119 error: function(xhr, textStatus, errorThrown){ 147 error: function(xhr, textStatus, errorThrown){ 148 120 149 jQuery('#btndownload').fadeTo("fast", .5).removeAttr("href"); 121 150 jQuery('#AppVersion').html('Compilation Queued'); -
quickapp/trunk/lib/fsd.php
r1013356 r1134674 232 232 $data['app_id'] = get_option('fsd_appid'); 233 233 $operation = 'generate_app'; 234 echo fsd::_api_request($data, $operation);234 die(fsd::_api_request($data, $operation)); 235 235 } 236 236 -
quickapp/trunk/quickapp.php
r1068602 r1134674 5 5 * 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. 6 6 * Author: FSD Solutions LLC. 7 * Version: 1. 5b7 * Version: 1.6b 8 8 * Author URI: http://www.fsdsolutions.com/ 9 9 * Plugin URI: http://www.fsdsolutions.com/quickapp/ -
quickapp/trunk/readme.txt
r1088167 r1134674 4 4 Tags: 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 5 5 Requires at least: 3.0.1 6 Tested up to: 4. 06 Tested up to: 4.1 7 7 Stable tag: 1.5 8 8 License: GPLv2 or later … … 62 62 63 63 == Changelog == 64 = 1.6b = 65 * bug fixes and performance improvements. 64 66 = 1.5b = 65 67 * Template bug fixes. … … 99 101 </ul> 100 102 == 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.