Plugin Directory

Changeset 2943152


Ignore:
Timestamp:
07/25/2023 02:52:20 PM (3 years ago)
Author:
clash82
Message:

Update to version 0.8.1 from GitHub

Location:
wp-lemme-know
Files:
16 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-lemme-know/assets/banner-1544x500.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/assets/banner-772x250.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/assets/icon-128x128.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/assets/screenshot-1.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/assets/screenshot-2.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/assets/screenshot-3.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/assets/screenshot-4.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • wp-lemme-know/tags/0.8.1/LICENSE

    r2248825 r2943152  
    1 Copyright (C) 2016-2020 Rafał Toborek. All rights reserved.
    21This source code is provided under the following license:
    32
  • wp-lemme-know/tags/0.8.1/plugin.php

    r2505517 r2943152  
    55Plugin URI:  https://github.com/clash82/wp-lemme-know
    66Description: Sends e-mail notification for subscribers when a new post is published.
    7 Version:     0.8.0
     7Version:     0.8.1
    88Author:      Rafał Toborek
    99Author URI:  https://kontakt.toborek.info
     
    6868require_once 'src/ajax.php';
    6969require_once 'src/sender.php';
     70
     71/**
     72 * Jezus żyje! 🧡
     73 */
  • wp-lemme-know/tags/0.8.1/readme.txt

    r2505517 r2943152  
    44Tags: notifications, email, newsletter, subscribe2, mailing, smtp
    55Requires at least: 4.6
    6 Tested up to: 5.7
     6Tested up to: 6.2
    77Requires PHP: 5.4
    88Stable tag: trunk
     
    2727Todo:
    2828
    29 * implement Cron-based feature allowing to send e-mails in portions
     29* implement Cron-based feature allowing to send e-mails in chunks
    3030* add e-mail list management (add/edit/remove subscribers manually)
    3131* add e-mail import/export option
  • wp-lemme-know/tags/0.8.1/src/publish.php

    r2252469 r2943152  
    4545
    4646    $sender = new WP_LemmeKnowNotificationSender(
    47         $options->getOption('mailer_type') === 'smtp' ? true : false,
     47        $options->getOption('mailer_type') === 'smtp',
    4848        $options->getOption('smtp_host'),
    4949        $options->getOption('smtp_port'),
  • wp-lemme-know/trunk/LICENSE

    r2248825 r2943152  
    1 Copyright (C) 2016-2020 Rafał Toborek. All rights reserved.
    21This source code is provided under the following license:
    32
  • wp-lemme-know/trunk/plugin.php

    r2505517 r2943152  
    55Plugin URI:  https://github.com/clash82/wp-lemme-know
    66Description: Sends e-mail notification for subscribers when a new post is published.
    7 Version:     0.8.0
     7Version:     0.8.1
    88Author:      Rafał Toborek
    99Author URI:  https://kontakt.toborek.info
     
    6868require_once 'src/ajax.php';
    6969require_once 'src/sender.php';
     70
     71/**
     72 * Jezus żyje! 🧡
     73 */
  • wp-lemme-know/trunk/readme.txt

    r2505517 r2943152  
    44Tags: notifications, email, newsletter, subscribe2, mailing, smtp
    55Requires at least: 4.6
    6 Tested up to: 5.7
     6Tested up to: 6.2
    77Requires PHP: 5.4
    88Stable tag: trunk
     
    2727Todo:
    2828
    29 * implement Cron-based feature allowing to send e-mails in portions
     29* implement Cron-based feature allowing to send e-mails in chunks
    3030* add e-mail list management (add/edit/remove subscribers manually)
    3131* add e-mail import/export option
  • wp-lemme-know/trunk/src/publish.php

    r2252469 r2943152  
    4545
    4646    $sender = new WP_LemmeKnowNotificationSender(
    47         $options->getOption('mailer_type') === 'smtp' ? true : false,
     47        $options->getOption('mailer_type') === 'smtp',
    4848        $options->getOption('smtp_host'),
    4949        $options->getOption('smtp_port'),
Note: See TracChangeset for help on using the changeset viewer.