Plugin Directory

Changeset 1045542


Ignore:
Timestamp:
12/16/2014 09:17:36 AM (11 years ago)
Author:
SarviSolutions
Message:

Updated to 1.0 version

Location:
snow-my-wp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • snow-my-wp/trunk/readme.txt

    r1038649 r1045542  
    11=== Plugin Name ===
    22Contributors: ChetanVengurlekar, SarviSolutions
    3 Donate link: http://
     3Donate link: http://www.sarvisolutions.com/donate/
    44Tags: christmas, snow, snow my website, website snow, snow on my website, christmas celebration, december snow
    55Requires at least: 3.0.1
    66Tested up to: 4.0.1
    7 Stable tag: 0.1
     7Stable tag: 1.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1414This is a plugin for the festive season. This plugin displays a snowfall with various snowflakes colors and sizes. Amaze your website visitors with a snowfall in winter or for that matter any season you want!
    1515
     16If you are facing any problem, let us know here: https://wordpress.org/support/plugin/snow-my-wp
     17
    1618== Installation ==
    1719
    18201. Upload `snow-my-wp.zip` via `wp-admin/plugin-install.php?tab=upload` or upload the unzipped content to the `/wp-content/plugins/` directory of your WordPress installation.
    19 2. Activate the plugin through the 'Plugins' menu in WordPress
     212. Activate the plugin through the `Plugins` menu in WordPress
    20223. You will see the snowfall on all your front-end pages as soon as you activate the plugin.
    2123
    2224== Frequently Asked Questions ==
    2325
    24 = How do I turn off the snow? =
    25 You can deactivate the plugin if you don't want to have a snowfall on your website.
     26= How do I turn off the snow ? =
     27You can deactivate the plugin from `wp-admin/plugin.php` if you want to stop the snowfall on your website.
    2628
    2729== Screenshots ==
    2830
    29 1. Plugin output on Twenty Tweleve - Screenshot 1.
    30 2. Plugin output on Twenty Thirteen - Screenshot 2.
    31 3. Plugin output on Twenty Fourteen - Screenshot 3.
    32 4. Plugin output on Twenty Fifteen - Screenshot 4.
     311. Plugin output on Twenty Tweleve
     322. Plugin output on Twenty Thirteen
     333. Plugin output on Twenty Fourteen
     344. Plugin output on Twenty Fifteen
    3335
    3436== Changelog ==
     37
     38= 1.0 =
     39* This version of the plugin works perfectly with 4.0.1.
    3540
    3641= 0.1 =
     
    3944== Upgrade Notice ==
    4045
     46= 1.0 =
     47* This version of the plugin works perfectly with 4.0.1.
     48
    4149= 0.1 =
    4250Upgrade immediately.
  • snow-my-wp/trunk/snow-my-wp.php

    r1037269 r1045542  
    22/**
    33 * @package Snow_My_WP
    4  * @version 0.1
     4 * @version 1.0
    55 */
    66/*
     
    99Description: A festive plugin for an awesome snowfall on your website.
    1010Author: Chetan Vengurlekar
    11 Version: 0.1
    12 Author URI: http://www.sarvisolutions.com/author/chetan
     11Version: 1.0
     12Author URI: http://www.sarvisolutions.com/
    1313*/
    1414function snow_my_wp() {
     
    1616<!-- snow_my_wp [ start ] -->
    1717<script type="text/javascript">
    18 // Set the number of snowflakes (more than 30 - 40 not recommended)
    19 var maxsnow=50
    20 // Set the colors for the snow. Add as many colors as you like
    21 var colorsnow=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff","#bbf7f9")
    22 // Set the fonts, that create the snowflakes. Add as many fonts as you like
    23 var typesnow=new Array("Times","Arial","Times","Verdana")
    24 // Set the letter that creates your snowflake (recommended: * )
    25 var lettersnow="*"
    26 // Set the speed of sinking (recommended values range from 0.3 to 2)
    27 var sinkspeed=0.6
    28 // Set the maximum-size of your snowflakes
    29 var maxsnowsize=30
    30 // Set the minimal-size of your snowflakes
    31 var minsnowsize=8
    32 // Set the snowing-zone
    33 // Set 1 for all-over-snowing, set 2 for left-side-snowing
    34 // Set 3 for center-snowing, set 4 for right-side-snowing
    35 var snowingzone=1
    36 ///////////////////////////////////////////////////////////////////////////
     18var maxsnow=45 // Number of snowflakes
     19var colorsnow=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff","#bbf7f9") // Colors for the snow
     20var typesnow=new Array("Times","Arial","Times","Verdana")// Fonts for the snowflakes
     21var lettersnow="*" // Letter that creates the snowflake (recommended: * )
     22var sinkspeed=0.75 // Speed of sinking (recommended values range from 0.3 to 2)
     23var maxsnowsize=30 // Maximum size of the snowflakes
     24var minsnowsize=8 // Minimum size of the snowflakes
     25var snowingzone=1 // Snowing zone : Set 1 for all-over-snowing, Set 2 for left-side-snowing, Set 3 for center-snowing, set 4 for right-side-snowing
    3726var snow=new Array()
    3827var marginbottom
Note: See TracChangeset for help on using the changeset viewer.