Plugin Directory

Changeset 2432601


Ignore:
Timestamp:
12/06/2020 02:51:50 PM (5 years ago)
Author:
d3wp
Message:

show on mobile is enabled by default

Location:
wp-snow-effect
Files:
42 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-snow-effect/trunk/README.txt

    r2430096 r2432601  
    66Tested up to: 5.5.3
    77Requires PHP: 5.6
    8 Stable tag: 1.1.12
     8Stable tag: 1.1.13
    99License:GPL2
    1010 
     
    6060
    6161== Changelog ==
     62
     63= 1.1.13 =
     64* Display on mobile is enabled by default
    6265
    6366= 1.1.12 =
     
    116119
    117120== Upgrade Notice ==
     121
     122= 1.1.13 =
     123* Display on mobile is enabled by default
    118124
    119125= 1.1.12 =
  • wp-snow-effect/trunk/admin/settings/settings.php

    r1782979 r2432601  
    113113                    'pages',
    114114                    'posts',
    115                     'archives'
     115                    'archives',
     116                    'mobile',
    116117                ),
    117118                'choices' => array(
  • wp-snow-effect/trunk/public/class-wp-snow-effect-public.php

    r1783370 r2432601  
    5151    public function __construct($plugin_name, $version)
    5252    {
    53         $default_settings = 'a:15:{s:19:"settings_flakes_num";s:2:"30";s:26:"settings_falling_speed_min";s:1:"1";s:26:"settings_falling_speed_max";s:1:"3";s:23:"settings_flake_min_size";s:2:"10";s:23:"settings_flake_max_size";s:2:"20";s:22:"settings_vertical_size";s:3:"800";s:18:"settings_fade_away";s:1:"1";s:21:"settings_show_on_home";s:4:"home";s:22:"settings_show_on_pages";s:5:"pages";s:22:"settings_show_on_posts";s:5:"posts";s:25:"settings_show_on_archives";s:8:"archives";s:23:"settings_show_on_mobile";s:1:"0";s:19:"settings_flake_type";s:6:"#10053";s:21:"settings_flake_zindex";s:6:"100000";s:20:"settings_flake_color";s:7:"#efefef";}';
     53        $default_settings = 'a:16:{s:19:"settings_flakes_num";s:2:"30";s:26:"settings_falling_speed_min";s:1:"1";s:26:"settings_falling_speed_max";s:1:"3";s:23:"settings_flake_min_size";s:2:"10";s:23:"settings_flake_max_size";s:2:"20";s:22:"settings_vertical_size";s:3:"800";s:18:"settings_fade_away";s:1:"1";s:21:"settings_show_on_home";s:4:"home";s:22:"settings_show_on_pages";s:5:"pages";s:22:"settings_show_on_posts";s:5:"posts";s:25:"settings_show_on_archives";s:8:"archives";s:23:"settings_show_on_mobile";s:6:"mobile";s:21:"settings_on_spec_page";s:0:"";s:19:"settings_flake_type";s:6:"#10053";s:21:"settings_flake_zindex";s:6:"100000";s:20:"settings_flake_color";s:7:"#efefef";}';
    5454        $this->plugin_name = $plugin_name;
    5555        $this->version = $version;
Note: See TracChangeset for help on using the changeset viewer.