Plugin Directory

Changeset 1942655


Ignore:
Timestamp:
09/17/2018 02:17:14 PM (8 years ago)
Author:
ryushindo
Message:

version 1.0.5 release

Location:
pwa4wp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • pwa4wp/trunk/includes/class-pwa4wp.php

    r1939692 r1942655  
    7979            $this->version = PWA4WP_VERSION;
    8080        } else {
    81             $this->version = '1.0.4';
     81            $this->version = '1.0.5';
    8282        }
    8383        $this->pwa4wp = 'PWA for WordPress';
  • pwa4wp/trunk/public/js/pwa4wp-cache-manager.js

    r1932738 r1942655  
    129129                        return response;
    130130                    }
    131                     return fetchAndCache(request);
     131                    if(this.debug){
     132                        console.log('call fetch&cache', request.url);
     133                    }
     134                    return this.fetchAndCache(request);
    132135                });
    133136            }).catch(() => {
     
    144147            console.log('remoteFirstFetch', request.url);
    145148        }
    146         return fetchAndCache(request).catch(() => {
     149        return this.fetchAndCache(request).catch(() => {
    147150            if(this.debug){
    148151                console.log('fail to fetch. use cache');
  • pwa4wp/trunk/pwa4wp.php

    r1939692 r1942655  
    1717 * Plugin URI:        https://github.com/ryu-compin/pwa4wp
    1818 * Description:       Provides transformation for WordPress to PWA.
    19  * Version:           1.0.4
     19 * Version:           1.0.5
    2020 * Author:            PWA for WordPress Developers Group
    2121 * Author URI:        https://github.com/ryu-compin/pwa4wp/
  • pwa4wp/trunk/readme.txt

    r1939692 r1942655  
    55Requires at least: 4.4
    66Tested up to: 4.9.8
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    2828
    2929Prepare icon image file, image file must be png format.
    30 Make offline page, this page will ccached with PWA installation and shown when PWA is offline.
     30Make offline page, this page will cached with PWA installation and shown when PWA is offline.
    3131Setup manifest file from Manifest Configuration page.
    3232Image file will be resized to fit icon sizes automatically.
     
    6868
    6969== 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 =
     71Fixed issue:
     72Fixed JavaScript error when fetching "online first".
    7473
    7574== Changelog ==
     75= 1.0.5 =
     76Release Date - 12 September, 2018
     77Fixed issue:
     78Readme typo.
     79Fixed JavaScript error when fetching "online first".
     80
    7681= 1.0.4 =
    7782Release Date - 12 September, 2018
Note: See TracChangeset for help on using the changeset viewer.