Changeset 1942655
- Timestamp:
- 09/17/2018 02:17:14 PM (8 years ago)
- Location:
- pwa4wp/trunk
- Files:
-
- 4 edited
-
includes/class-pwa4wp.php (modified) (1 diff)
-
public/js/pwa4wp-cache-manager.js (modified) (2 diffs)
-
pwa4wp.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pwa4wp/trunk/includes/class-pwa4wp.php
r1939692 r1942655 79 79 $this->version = PWA4WP_VERSION; 80 80 } else { 81 $this->version = '1.0. 4';81 $this->version = '1.0.5'; 82 82 } 83 83 $this->pwa4wp = 'PWA for WordPress'; -
pwa4wp/trunk/public/js/pwa4wp-cache-manager.js
r1932738 r1942655 129 129 return response; 130 130 } 131 return fetchAndCache(request); 131 if(this.debug){ 132 console.log('call fetch&cache', request.url); 133 } 134 return this.fetchAndCache(request); 132 135 }); 133 136 }).catch(() => { … … 144 147 console.log('remoteFirstFetch', request.url); 145 148 } 146 return fetchAndCache(request).catch(() => {149 return this.fetchAndCache(request).catch(() => { 147 150 if(this.debug){ 148 151 console.log('fail to fetch. use cache'); -
pwa4wp/trunk/pwa4wp.php
r1939692 r1942655 17 17 * Plugin URI: https://github.com/ryu-compin/pwa4wp 18 18 * Description: Provides transformation for WordPress to PWA. 19 * Version: 1.0. 419 * Version: 1.0.5 20 20 * Author: PWA for WordPress Developers Group 21 21 * Author URI: https://github.com/ryu-compin/pwa4wp/ -
pwa4wp/trunk/readme.txt
r1939692 r1942655 5 5 Requires at least: 4.4 6 6 Tested up to: 4.9.8 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later … … 28 28 29 29 Prepare icon image file, image file must be png format. 30 Make offline page, this page will c cached with PWA installation and shown when PWA is offline.30 Make offline page, this page will cached with PWA installation and shown when PWA is offline. 31 31 Setup manifest file from Manifest Configuration page. 32 32 Image file will be resized to fit icon sizes automatically. … … 68 68 69 69 == Upgrade Notice == 70 = 1.0.4 = 71 When Manifest file generated, ServiceWorker re-generate only when ServiceWorker already exists. 72 Added donation button. :) 73 Edited CSS for admin page. 70 = 1.0.5 = 71 Fixed issue: 72 Fixed JavaScript error when fetching "online first". 74 73 75 74 == Changelog == 75 = 1.0.5 = 76 Release Date - 12 September, 2018 77 Fixed issue: 78 Readme typo. 79 Fixed JavaScript error when fetching "online first". 80 76 81 = 1.0.4 = 77 82 Release Date - 12 September, 2018
Note: See TracChangeset
for help on using the changeset viewer.