Plugin Directory

Changeset 3180529


Ignore:
Timestamp:
11/02/2024 10:48:34 PM (15 months ago)
Author:
rickey29
Message:

4.2.0

Location:
hyper-pwa/trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • hyper-pwa/trunk/admin/admin.php

    r3172446 r3180529  
    565565                        if ( ! empty( $value ) )
    566566                        {
    567                             $options_markup .= sprintf( '<input id="%1$s_%6$s" name="%1$s[]" type="%2$s" value="%3$s" %4$s /><label for="%1$s_%6$s"> %5$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), checked( $value[ array_search( $key, $value, TRUE ) ], $key, FALSE ), esc_html( $label ), esc_attr( $iterator ) );
     567                            $options_markup .= sprintf( '<input id="%1$s_%6$s" name="%1$s[]" type="%2$s" value="%3$s" %4$s /><label for="%1$s_%6$s"> %5$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), checked( $value[ array_search( $key, $value, TRUE ) ], $key, FALSE ), wp_kses_post( $label ), esc_attr( $iterator ) );
    568568                        }
    569569                        else
    570570                        {
    571                             $options_markup .= sprintf( '<input id="%1$s_%5$s" name="%1$s[]" type="%2$s" value="%3$s" /><label for="%1$s_%5$s"> %4$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), esc_html( $label ), esc_attr( $iterator ) );
     571                            $options_markup .= sprintf( '<input id="%1$s_%5$s" name="%1$s[]" type="%2$s" value="%3$s" /><label for="%1$s_%5$s"> %4$s</label><br>', esc_attr( $args['uid'] ), esc_attr( $args['type'] ), esc_attr( $key ), wp_kses_post( $label ), esc_attr( $iterator ) );
    572572                        }
    573573                    }
    574574
    575                     printf( '<fieldset>%s</fieldset>', wp_kses_post( $options_markup ) );
     575                    printf( '<fieldset>%s</fieldset>', $options_markup );
    576576                }
    577577                break;
     
    589589        {
    590590            $helper = $args['helper'];
    591             printf( '<span class="helper">%s</span>', esc_html( $helper ) );
     591            printf( '<span class="helper">%s</span>', wp_kses_post( $helper ) );
    592592        }
    593593
     
    595595        {
    596596            $supplimental = $args['supplimental'];
    597             printf( '<p class="description">%s</p>', esc_html( $supplimental ) );
     597            printf( '<p class="description">%s</p>', wp_kses_post( $supplimental ) );
    598598        }
    599599    }
  • hyper-pwa/trunk/cfg/cfg.php

    r3172446 r3180529  
    55}
    66
    7 define( 'HYPER_PWA_VERSION', '4.1.0' );
     7define( 'HYPER_PWA_VERSION', '4.2.0' );
    88
    99define( 'HYPER_PWA_TRANSIENT_SCHEDULE_RECURRENCE', HOUR_IN_SECONDS );
  • hyper-pwa/trunk/hyper-pwa.php

    r3172446 r3180529  
    44Plugin URI:  https://wordpress.org/plugins/hyper-pwa/
    55Description: Provide Manifest and Service Worker, convert WordPress into Progressive Web Apps (PWA).
    6 Version:     4.1.0
     6Version:     4.2.0
    77Author:      Rickey Gu
    88Author URI:  https://flexplat.com
  • hyper-pwa/trunk/readme.txt

    r3172446 r3180529  
    66Tested up to: 6.6.2
    77Requires PHP: 7.2
    8 Stable tag: 4.1.0
     8Stable tag: 4.2.0
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2525
    2626== Highlight ==
    27 This plugin is relying on a 3rd party Software as a Service -- FlexPlat: https://flexplat.com to generate Manifest and Service Workers related files.  The Terms and Conditions is located at: https://flexplat.com/terms-and-conditions/
     27This plugin is relying on a 3rd party Software as a Service -- FlexPlat: https://flexplat.com to generate Manifest and Service Workers related files.  The Terms and Conditions is located at: https://www.termsfeed.com/live/f1e8d2bc-1615-4aa9-bddb-24dcde10b50b
    2828
    2929In detail, to make PWA working, end users will ask your website to provide Manifest and Service Workers related files:
     
    6363== Changelog ==
    6464
     65= 4.2.0
     66(Sat., Nov. 02, 2024)
     67* Bug Fix: Admin Service Worker tab can not show Dynamic Site & Staic Site
     68
    6569= 4.1.0
    6670(Sun., Oct. 20, 2024)
Note: See TracChangeset for help on using the changeset viewer.