Changeset 2693675
- Timestamp:
- 03/14/2022 01:56:46 PM (4 years ago)
- Location:
- sendpress/trunk
- Files:
-
- 5 edited
-
classes/class-sendpress-ajax-loader.php (modified) (1 diff)
-
classes/views/class-sendpress-view-settings-advanced.php (modified) (1 diff)
-
codemirror/package.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
sendpress.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sendpress/trunk/classes/class-sendpress-ajax-loader.php
r2509704 r2693675 392 392 'lastname' => $user->last_name 393 393 ) ); 394 $email_list[] = $email;394 $email_list[] = esc_sql($email); 395 395 } 396 396 SendPress_Data::sync_emails_to_list( $listid, $email_list ); -
sendpress/trunk/classes/views/class-sendpress-view-settings-advanced.php
r1737419 r2693675 217 217 <p><?php _e('Please take care when changing these settings. We have attempted to set these to work on almost all servers. If you have a faster server you may be able to increase the limits below or if you are having troubles you may need to decrease the settings','sendpress'); ?>.</p> 218 218 <hr> 219 <?php _e('Users to Sync per ajax call','sendpress'); ?>: <?php $this->select('sync-per-call',SendPress_Option::get('sync-per-call',250) ); ?> <?php _e('Default','sendpress'); ?>: 250219 <?php _e('Users to Sync per ajax call','sendpress'); ?>: <?php $this->select('sync-per-call',SendPress_Option::get('sync-per-call',250) ,array(1,5,10,15,25,30,35,40,45,50,100,250) ); ?> <?php _e('Default','sendpress'); ?>: 250 220 220 <hr> 221 221 <?php _e('Emails sent per AutoCron execution','sendpress'); ?>: <?php $this->select('autocron-per-call',SendPress_Option::get('autocron-per-call',25), array(1,5,10,15,25,30,35,40,45,50,55,60,65,70,75,80,85,90,95,100) ); ?> <?php _e('Default','sendpress'); ?>: 25<br> -
sendpress/trunk/codemirror/package.json
r1598832 r2693675 8 8 "directories": {"lib": "./lib"}, 9 9 "scripts": {"test": "node ./test/run.js"}, 10 "devDependencies": {"node-static": "0.6.0",11 "phantomjs": "1.9.2-5"},12 10 "bugs": "http://github.com/marijnh/CodeMirror/issues", 13 11 "keywords": ["JavaScript", "CodeMirror", "Editor"], -
sendpress/trunk/readme.txt
r2681564 r2693675 5 5 Requires at least: 4.4 6 6 Tested up to: 5.9 7 Stable tag: 1.22. 2.187 Stable tag: 1.22.3.14 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 118 118 119 119 Previous releases can be downloaded from [GitHub](https://github.com/brewlabs/sendpress/releases) 120 = 1.22.3.14- 2022.3.14 = 121 * Bug fix list sync not syncing all users 122 120 123 = 1.22.2.18- 2022.2.18 = 121 124 * Bug fix for editor not saving content when editing emails -
sendpress/trunk/sendpress.php
r2681564 r2693675 2 2 /* 3 3 Plugin Name: SendPress Newsletters 4 Version: 1.22. 2.184 Version: 1.22.3.14 5 5 Plugin URI: https://sendpress.com 6 6 Description: Easy to manage Newsletters for WordPress. … … 20 20 define( 'SENDPRESS_API_VERSION', 1 ); 21 21 define( 'SENDPRESS_MINIMUM_WP_VERSION', '3.6' ); 22 define( 'SENDPRESS_VERSION', '1.22. 2.18' );22 define( 'SENDPRESS_VERSION', '1.22.3.14' ); 23 23 define( 'SENDPRESS_URL', plugin_dir_url( __FILE__ ) ); 24 24 define( 'SENDPRESS_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.