Plugin Directory

Changeset 2041078


Ignore:
Timestamp:
02/28/2019 03:17:09 AM (7 years ago)
Author:
wpnook
Message:

1.0.4 release

Location:
site-announcements/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • site-announcements/trunk/README.txt

    r1756534 r2041078  
    44Tags: announcements, news, users, messages
    55Requires at least: 4.0
    6 Tested up to: 4.8.2
     6Tested up to: 5.1
    77Stable tag: trunk
    88License: GPLv2 or later
     
    4444== Changelog ==
    4545
     46= 1.0.4 =
     47* Fixes color-picker issue
     48
    4649= 1.0.3 =
    4750* Fixes custom text color issue when content is empty
  • site-announcements/trunk/admin/js/cw-site-announcements-admin.js

    r1702794 r2041078  
    22    'use strict';
    33
    4     $(function() {
    5         $('.color-picker').wpColorPicker();
     4    $(document).ready( function(e) {
     5        $(function() {
     6            $('.color-picker').wpColorPicker();
     7        });
     8
     9        $('#cw_enable_url').on('change', function(e) {
     10            $('#cw_announcement_url').val('');
     11            $('.cw_announcement_url').toggle();
     12        });
     13
     14        $('#cw_is_announcement_closable').on('change', function(e) {
     15            $('.cw_closable_settings').toggle();
     16        });
    617    });
    718
    8     $('#cw_enable_url').on('change', function(e) {
    9         $('#cw_announcement_url').val('');
    10         $('.cw_announcement_url').toggle();
    11     });
    12 
    13     $('#cw_is_announcement_closable').on('change', function(e) {
    14         $('.cw_closable_settings').toggle();
    15     });
    16 
    17 
    1819})( jQuery );
  • site-announcements/trunk/includes/class-cw-site-announcements.php

    r1756534 r2041078  
    7070
    7171        $this->plugin_name = 'cw-site-announcements';
    72         $this->version = '1.0.3';
     72        $this->version = '1.0.4';
    7373
    7474        $this->load_dependencies();
  • site-announcements/trunk/site-announcements.php

    r1756534 r2041078  
    1616 * Plugin Name:       Site Announcements
    1717 * Plugin URI:        https://codewrangler.io
    18  * Description:       This is a short description of what the plugin does. It's displayed in the WordPress admin area.
    19  * Version:           1.0.3
     18 * Description:       Site Announcements allows you to broadcast site-wide messages to your visitors
     19 * Version:           1.0.4
    2020 * Author:            CodeWrangler, Inc.
    2121 * Author URI:        https://codewrangler.io
Note: See TracChangeset for help on using the changeset viewer.