Plugin Directory

Changeset 1942698


Ignore:
Timestamp:
09/17/2018 03:18:57 PM (8 years ago)
Author:
ryushindo
Message:

version 1.0.6 release

Location:
pwa4wp/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • pwa4wp/trunk/admin/class-pwa4wp-service-worker-generator.php

    r1942655 r1942698  
    55
    66    private $plugin_root_url;
    7     private $version = '0.0.2';
     7    private $version = '1.0.6';
    88
    99    public function __construct( $plugin_root ) {
  • pwa4wp/trunk/admin/partials/pwa4wp-admin-sw.php

    r1942655 r1942698  
    5252                <span class="field">
    5353                    <label>
    54                     <input type="radio" name="cache_plan" value="cachefirst" <?php if($cacheSettings['cache_plan'] == "cachefirst"){echo "checked=\"checked\"";} ?>>Cache first
     54                    <input type="radio" name="cache_plan" value="cachefirst" <?php if($cacheSettings['cache_plan'] != "onlinefirst"){echo "checked=\"checked\"";} ?>>Cache first
    5555                    </label><br>
    5656                    <label>
     
    200200                    </label><br>
    201201                    <label>
    202                         <input type="radio" name="debug_msg" value="OFF" <?php if(($cacheSettings['debug_msg'] == "OFF")||(empty($cacheSettings['debug_msg']))){echo "checked=\"checked\"";} ?>>OFF
     202                        <input type="radio" name="debug_msg" value="OFF" <?php if((empty($cacheSettings['debug_msg'])||($cacheSettings['debug_msg'] != "ON"))){echo "checked=\"checked\"";} ?>>OFF
    203203                    </label><br><br>
    204204                <?php _e("Switch to show debug messages.","pwa4wp"); ?><br>
  • pwa4wp/trunk/includes/class-pwa4wp.php

    r1942655 r1942698  
    7979            $this->version = PWA4WP_VERSION;
    8080        } else {
    81             $this->version = '1.0.5';
     81            $this->version = '1.0.6';
    8282        }
    8383        $this->pwa4wp = 'PWA for WordPress';
  • pwa4wp/trunk/pwa4wp.php

    r1942655 r1942698  
    1717 * Plugin URI:        https://github.com/ryu-compin/pwa4wp
    1818 * Description:       Provides transformation for WordPress to PWA.
    19  * Version:           1.0.5
     19 * Version:           1.0.6
    2020 * Author:            PWA for WordPress Developers Group
    2121 * Author URI:        https://github.com/ryu-compin/pwa4wp/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'PWA4WP_VERSION', '1.0.3' );
     38define( 'PWA4WP_VERSION', '1.0.6' );
    3939
    4040define( 'PWA4WP_SERVICEWORKER_FILE', 'pwa4wp-sw-'.get_current_blog_id().'.js');
  • pwa4wp/trunk/readme.txt

    r1942655 r1942698  
    55Requires at least: 4.4
    66Tested up to: 4.9.8
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    6868
    6969== Upgrade Notice ==
    70 = 1.0.5 =
     70= 1.0.5 / 1.0.6 =
    7171Fixed issue:
    7272Fixed JavaScript error when fetching "online first".
    7373
    7474== Changelog ==
    75 = 1.0.5 =
     75= 1.0.5 / 1.0.6 =
    7676Release Date - 12 September, 2018
    7777Fixed issue:
Note: See TracChangeset for help on using the changeset viewer.