Changeset 1942698
- Timestamp:
- 09/17/2018 03:18:57 PM (8 years ago)
- Location:
- pwa4wp/trunk
- Files:
-
- 5 edited
-
admin/class-pwa4wp-service-worker-generator.php (modified) (1 diff)
-
admin/partials/pwa4wp-admin-sw.php (modified) (2 diffs)
-
includes/class-pwa4wp.php (modified) (1 diff)
-
pwa4wp.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pwa4wp/trunk/admin/class-pwa4wp-service-worker-generator.php
r1942655 r1942698 5 5 6 6 private $plugin_root_url; 7 private $version = ' 0.0.2';7 private $version = '1.0.6'; 8 8 9 9 public function __construct( $plugin_root ) { -
pwa4wp/trunk/admin/partials/pwa4wp-admin-sw.php
r1942655 r1942698 52 52 <span class="field"> 53 53 <label> 54 <input type="radio" name="cache_plan" value="cachefirst" <?php if($cacheSettings['cache_plan'] == "cachefirst"){echo "checked=\"checked\"";} ?>>Cache first54 <input type="radio" name="cache_plan" value="cachefirst" <?php if($cacheSettings['cache_plan'] != "onlinefirst"){echo "checked=\"checked\"";} ?>>Cache first 55 55 </label><br> 56 56 <label> … … 200 200 </label><br> 201 201 <label> 202 <input type="radio" name="debug_msg" value="OFF" <?php if(( $cacheSettings['debug_msg'] == "OFF")||(empty($cacheSettings['debug_msg']))){echo "checked=\"checked\"";} ?>>OFF202 <input type="radio" name="debug_msg" value="OFF" <?php if((empty($cacheSettings['debug_msg'])||($cacheSettings['debug_msg'] != "ON"))){echo "checked=\"checked\"";} ?>>OFF 203 203 </label><br><br> 204 204 <?php _e("Switch to show debug messages.","pwa4wp"); ?><br> -
pwa4wp/trunk/includes/class-pwa4wp.php
r1942655 r1942698 79 79 $this->version = PWA4WP_VERSION; 80 80 } else { 81 $this->version = '1.0. 5';81 $this->version = '1.0.6'; 82 82 } 83 83 $this->pwa4wp = 'PWA for WordPress'; -
pwa4wp/trunk/pwa4wp.php
r1942655 r1942698 17 17 * Plugin URI: https://github.com/ryu-compin/pwa4wp 18 18 * Description: Provides transformation for WordPress to PWA. 19 * Version: 1.0. 519 * Version: 1.0.6 20 20 * Author: PWA for WordPress Developers Group 21 21 * Author URI: https://github.com/ryu-compin/pwa4wp/ … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'PWA4WP_VERSION', '1.0. 3' );38 define( 'PWA4WP_VERSION', '1.0.6' ); 39 39 40 40 define( 'PWA4WP_SERVICEWORKER_FILE', 'pwa4wp-sw-'.get_current_blog_id().'.js'); -
pwa4wp/trunk/readme.txt
r1942655 r1942698 5 5 Requires at least: 4.4 6 6 Tested up to: 4.9.8 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later … … 68 68 69 69 == Upgrade Notice == 70 = 1.0.5 =70 = 1.0.5 / 1.0.6 = 71 71 Fixed issue: 72 72 Fixed JavaScript error when fetching "online first". 73 73 74 74 == Changelog == 75 = 1.0.5 =75 = 1.0.5 / 1.0.6 = 76 76 Release Date - 12 September, 2018 77 77 Fixed issue:
Note: See TracChangeset
for help on using the changeset viewer.