Changeset 2943152
- Timestamp:
- 07/25/2023 02:52:20 PM (3 years ago)
- Location:
- wp-lemme-know
- Files:
-
- 16 edited
- 1 copied
-
assets/banner-1544x500.png (modified) (1 prop) (previous)
-
assets/banner-772x250.png (modified) (1 prop) (previous)
-
assets/icon-128x128.png (modified) (1 prop) (previous)
-
assets/icon-256x256.png (modified) (1 prop) (previous)
-
assets/screenshot-1.png (modified) (1 prop) (previous)
-
assets/screenshot-2.png (modified) (1 prop) (previous)
-
assets/screenshot-3.png (modified) (1 prop) (previous)
-
assets/screenshot-4.png (modified) (1 prop) (previous)
-
tags/0.8.1 (copied) (copied from wp-lemme-know/trunk)
-
tags/0.8.1/LICENSE (modified) (1 diff)
-
tags/0.8.1/plugin.php (modified) (2 diffs)
-
tags/0.8.1/readme.txt (modified) (2 diffs)
-
tags/0.8.1/src/publish.php (modified) (1 diff)
-
trunk/LICENSE (modified) (1 diff)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/publish.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-lemme-know/assets/banner-1544x500.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/assets/banner-772x250.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/assets/icon-128x128.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/assets/icon-256x256.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/assets/screenshot-1.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/assets/screenshot-2.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/assets/screenshot-3.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/assets/screenshot-4.png
-
Property
svn:mime-type
changed from
application/octet-streamtoimage/png
-
Property
svn:mime-type
changed from
-
wp-lemme-know/tags/0.8.1/LICENSE
r2248825 r2943152 1 Copyright (C) 2016-2020 Rafał Toborek. All rights reserved.2 1 This source code is provided under the following license: 3 2 -
wp-lemme-know/tags/0.8.1/plugin.php
r2505517 r2943152 5 5 Plugin URI: https://github.com/clash82/wp-lemme-know 6 6 Description: Sends e-mail notification for subscribers when a new post is published. 7 Version: 0.8. 07 Version: 0.8.1 8 8 Author: Rafał Toborek 9 9 Author URI: https://kontakt.toborek.info … … 68 68 require_once 'src/ajax.php'; 69 69 require_once 'src/sender.php'; 70 71 /** 72 * Jezus żyje! 🧡 73 */ -
wp-lemme-know/tags/0.8.1/readme.txt
r2505517 r2943152 4 4 Tags: notifications, email, newsletter, subscribe2, mailing, smtp 5 5 Requires at least: 4.6 6 Tested up to: 5.76 Tested up to: 6.2 7 7 Requires PHP: 5.4 8 8 Stable tag: trunk … … 27 27 Todo: 28 28 29 * implement Cron-based feature allowing to send e-mails in portions29 * implement Cron-based feature allowing to send e-mails in chunks 30 30 * add e-mail list management (add/edit/remove subscribers manually) 31 31 * add e-mail import/export option -
wp-lemme-know/tags/0.8.1/src/publish.php
r2252469 r2943152 45 45 46 46 $sender = new WP_LemmeKnowNotificationSender( 47 $options->getOption('mailer_type') === 'smtp' ? true : false,47 $options->getOption('mailer_type') === 'smtp', 48 48 $options->getOption('smtp_host'), 49 49 $options->getOption('smtp_port'), -
wp-lemme-know/trunk/LICENSE
r2248825 r2943152 1 Copyright (C) 2016-2020 Rafał Toborek. All rights reserved.2 1 This source code is provided under the following license: 3 2 -
wp-lemme-know/trunk/plugin.php
r2505517 r2943152 5 5 Plugin URI: https://github.com/clash82/wp-lemme-know 6 6 Description: Sends e-mail notification for subscribers when a new post is published. 7 Version: 0.8. 07 Version: 0.8.1 8 8 Author: Rafał Toborek 9 9 Author URI: https://kontakt.toborek.info … … 68 68 require_once 'src/ajax.php'; 69 69 require_once 'src/sender.php'; 70 71 /** 72 * Jezus żyje! 🧡 73 */ -
wp-lemme-know/trunk/readme.txt
r2505517 r2943152 4 4 Tags: notifications, email, newsletter, subscribe2, mailing, smtp 5 5 Requires at least: 4.6 6 Tested up to: 5.76 Tested up to: 6.2 7 7 Requires PHP: 5.4 8 8 Stable tag: trunk … … 27 27 Todo: 28 28 29 * implement Cron-based feature allowing to send e-mails in portions29 * implement Cron-based feature allowing to send e-mails in chunks 30 30 * add e-mail list management (add/edit/remove subscribers manually) 31 31 * add e-mail import/export option -
wp-lemme-know/trunk/src/publish.php
r2252469 r2943152 45 45 46 46 $sender = new WP_LemmeKnowNotificationSender( 47 $options->getOption('mailer_type') === 'smtp' ? true : false,47 $options->getOption('mailer_type') === 'smtp', 48 48 $options->getOption('smtp_host'), 49 49 $options->getOption('smtp_port'),
Note: See TracChangeset
for help on using the changeset viewer.