Newsletter - Version 6.0.7

Version Description

  • Fixed the wrong edit mode of duplicated newsletters
  • Fixed the alignment of small images on composer
  • Added addons update notice on status panel
Download this release

Release Info

Developer webagile
Plugin Icon 128x128 Newsletter
Version 6.0.7
Comparing to
See all releases

Code changes from version 6.0.6 to 6.0.7

emails/blocks/image/block.php CHANGED
@@ -12,10 +12,10 @@ $defaults = array(
12
  'image' => '',
13
  'url' => '',
14
  'block_background' => '#ffffff',
15
- 'block_padding_left'=>0,
16
- 'block_padding_right'=>0,
17
- 'block_padding_bottom'=>15,
18
- 'block_padding_top'=>15
19
  );
20
 
21
  $options = array_merge($defaults, $options);
@@ -35,10 +35,7 @@ $url = $options['url'];
35
  ?>
36
 
37
  <?php if (!empty($url)) { ?>
38
-
39
- <a href="<?php echo $url ?>" target="_blank"><img src="<?php echo $image ?>" border="0" alt="" style="max-width: 100%!important; height: auto!important; display: block;"></a>
40
-
41
  <?php } else { ?>
42
- <img src="<?php echo $image ?>" border="0" alt="" style="max-width: 100%!important; height: auto!important; display: block;">
43
-
44
  <?php } ?>
12
  'image' => '',
13
  'url' => '',
14
  'block_background' => '#ffffff',
15
+ 'block_padding_left' => 0,
16
+ 'block_padding_right' => 0,
17
+ 'block_padding_bottom' => 15,
18
+ 'block_padding_top' => 15
19
  );
20
 
21
  $options = array_merge($defaults, $options);
35
  ?>
36
 
37
  <?php if (!empty($url)) { ?>
38
+ <a href="<?php echo $url ?>" target="_blank"><img src="<?php echo $image ?>" border="0" alt="" style="max-width: 100%!important; height: auto!important; display: inline-block;"></a>
 
 
39
  <?php } else { ?>
40
+ <img src="<?php echo $image ?>" border="0" alt="" style="max-width: 100%!important; height: auto!important; display: inline-block;">
 
41
  <?php } ?>
emails/composer.php CHANGED
@@ -5,9 +5,6 @@ require_once NEWSLETTER_INCLUDES_DIR . '/controls.php';
5
  $controls = new NewsletterControls();
6
  $module = NewsletterEmails::instance();
7
 
8
- //wp_enqueue_style('wp-color-picker');
9
- //wp_enqueue_script('wp-color-picker');
10
- // TNP Composer style
11
  wp_enqueue_style('tnpc-style', plugins_url('/tnp-composer/_css/newsletter-builder.css', __FILE__), array(), time());
12
  wp_enqueue_style('tnpc-newsletter-style', home_url('/') . '?na=emails-composer-css');
13
 
@@ -44,6 +41,7 @@ To change your subscription follow: {profile_url}.';
44
  } else {
45
 
46
  $email['id'] = $_GET['id'];
 
47
  $email['message'] = $controls->data['body'];
48
  $email['subject'] = $controls->data['subject'];
49
  $email = Newsletter::instance()->save_email($email, ARRAY_A);
5
  $controls = new NewsletterControls();
6
  $module = NewsletterEmails::instance();
7
 
 
 
 
8
  wp_enqueue_style('tnpc-style', plugins_url('/tnp-composer/_css/newsletter-builder.css', __FILE__), array(), time());
9
  wp_enqueue_style('tnpc-newsletter-style', home_url('/') . '?na=emails-composer-css');
10
 
41
  } else {
42
 
43
  $email['id'] = $_GET['id'];
44
+ $email['editor'] = NewsletterEmails::EDITOR_COMPOSER;
45
  $email['message'] = $controls->data['body'];
46
  $email['subject'] = $controls->data['subject'];
47
  $email = Newsletter::instance()->save_email($email, ARRAY_A);
emails/edit.php CHANGED
@@ -116,6 +116,7 @@ if ($controls->is_action('test') || $controls->is_action('save') || $controls->i
116
 
117
  $email['subject'] = $controls->data['subject'];
118
  $email['track'] = $controls->data['track'];
 
119
  $email['private'] = $controls->data['private'];
120
  $email['message_text'] = $controls->data['message_text'];
121
  if ($controls->is_action('send')) {
116
 
117
  $email['subject'] = $controls->data['subject'];
118
  $email['track'] = $controls->data['track'];
119
+ $email['editor'] = $editor_type;
120
  $email['private'] = $controls->data['private'];
121
  $email['message_text'] = $controls->data['message_text'];
122
  if ($controls->is_action('send')) {
main/status.php CHANGED
@@ -768,6 +768,26 @@ $speed = Newsletter::$instance->options['scheduler_max'];
768
  Error: <?php echo esc_html($message) ?><br>
769
  <?php } else { ?>
770
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
771
  <?php } ?>
772
  </td>
773
  </tr>
@@ -1002,6 +1022,13 @@ $speed = Newsletter::$instance->options['scheduler_max'];
1002
  <?php echo NEWSLETTER_CRON_INTERVAL . ' (seconds)'; ?>
1003
  </td>
1004
  </tr>
 
 
 
 
 
 
 
1005
 
1006
  <?php /*
1007
  <tr>
768
  Error: <?php echo esc_html($message) ?><br>
769
  <?php } else { ?>
770
 
771
+ <?php } ?>
772
+ </td>
773
+ </tr>
774
+
775
+ <tr>
776
+ <td>
777
+ Addons update
778
+ </td>
779
+ <td>
780
+ <?php if (NEWSLETTER_EXTENSION_UPDATE) { ?>
781
+ <span class="tnp-ok">OK</span>
782
+ <?php } else { ?>
783
+ <span class="tnp-ko">KO</span>
784
+ <?php } ?>
785
+ </td>
786
+ <td>
787
+ <?php if (!NEWSLETTER_EXTENSION_UPDATE) { ?>
788
+ Addons update has been disabled.
789
+ <?php } else { ?>
790
+
791
  <?php } ?>
792
  </td>
793
  </tr>
1022
  <?php echo NEWSLETTER_CRON_INTERVAL . ' (seconds)'; ?>
1023
  </td>
1024
  </tr>
1025
+
1026
+ <tr>
1027
+ <td>NEWSLETTER_CRON_INTERVAL</td>
1028
+ <td>
1029
+ <?php echo NEWSLETTER_CRON_INTERVAL . ' (seconds)'; ?>
1030
+ </td>
1031
+ </tr>
1032
 
1033
  <?php /*
1034
  <tr>
plugin.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Newsletter
5
  Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
6
  Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
7
- Version: 6.0.6
8
  Author: Stefano Lissa & The Newsletter Team
9
  Author URI: https://www.thenewsletterplugin.com
10
  Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
@@ -29,10 +29,13 @@
29
  */
30
 
31
  // Used as dummy parameter on css and js links
32
- define('NEWSLETTER_VERSION', '6.0.6');
33
 
34
  global $newsletter, $wpdb;
35
 
 
 
 
36
  if (!defined('NEWSLETTER_EMAILS_TABLE'))
37
  define('NEWSLETTER_EMAILS_TABLE', $wpdb->prefix . 'newsletter_emails');
38
 
@@ -1111,7 +1114,7 @@ class Newsletter extends NewsletterModule {
1111
  unset($value->response[$extension->plugin]);
1112
  unset($value->no_update[$extension->plugin]);
1113
 
1114
- if (defined('NEWSLETTER_EXTENSION_UPDATE') && !NEWSLETTER_EXTENSION_UPDATE) {
1115
  return $value;
1116
  }
1117
 
@@ -1185,11 +1188,6 @@ class Newsletter extends NewsletterModule {
1185
  return $extensions;
1186
  }
1187
 
1188
- /**
1189
- * Load plugin textdomain.
1190
- *
1191
- * @since 1.0.0
1192
- */
1193
  function hook_plugins_loaded() {
1194
 
1195
  //do_action('newsletter_loaded', NEWSLETTER_VERSION);
4
  Plugin Name: Newsletter
5
  Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
6
  Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
7
+ Version: 6.0.7
8
  Author: Stefano Lissa & The Newsletter Team
9
  Author URI: https://www.thenewsletterplugin.com
10
  Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
29
  */
30
 
31
  // Used as dummy parameter on css and js links
32
+ define('NEWSLETTER_VERSION', '6.0.7');
33
 
34
  global $newsletter, $wpdb;
35
 
36
+ if (!defined('NEWSLETTER_EXTENSION_UPDATE'))
37
+ define('NEWSLETTER_EXTENSION_UPDATE', true);
38
+
39
  if (!defined('NEWSLETTER_EMAILS_TABLE'))
40
  define('NEWSLETTER_EMAILS_TABLE', $wpdb->prefix . 'newsletter_emails');
41
 
1114
  unset($value->response[$extension->plugin]);
1115
  unset($value->no_update[$extension->plugin]);
1116
 
1117
+ if (!NEWSLETTER_EXTENSION_UPDATE) {
1118
  return $value;
1119
  }
1120
 
1188
  return $extensions;
1189
  }
1190
 
 
 
 
 
 
1191
  function hook_plugins_loaded() {
1192
 
1193
  //do_action('newsletter_loaded', NEWSLETTER_VERSION);
readme.txt CHANGED
@@ -1,97 +1,84 @@
1
  === Newsletter ===
2
- Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing,automation,automated,mailing list
3
  Requires at least: 3.4.0
4
  Tested up to: 5.2.1
5
- Stable tag: 6.0.6
6
  Contributors: satollo,webagile,michael-travan
7
 
8
  Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
9
 
10
  == Description ==
11
 
12
- Newsletter is a **real newsletter and email marketing system** for your WordPress blog: perfect for list building, you can easily create,
13
- send and track e-mails, headache-free. It just works out of box!
14
-
15
- = Find Us =
16
-
17
- Newsletter is a continuously evolving plugin. Stay tuned following us on
18
- [Facebook](https://www.facebook.com/thenewsletterplugin/) or [Twitter](https://twitter.com/newsletterwp).
19
 
20
  = Discover a completely rewritten composer =
21
 
22
- We redesigned our drag and drop composer to make your campaign creation even
23
- easier. Try it!
24
 
25
  = Main Features =
26
 
27
- * **Unlimited subscribers** with statistics
 
28
  * **Unlimited newsletters** with tracking
29
  * **Subscription spam check** with domain/ip black lists, Akismet, captcha
30
  * **Delivery speed** fine control (from 12 emails per hour to as much as your blog can manage)
31
- * **Drag and drop composer** with responsive email layout
32
- * [WPML ready](https://www.thenewsletterplugin.com/documentation/multilanguage)
33
- * [Polylang ready](https://www.thenewsletterplugin.com/documentation/multilanguage)
34
- * [Translatepress ready](https://www.thenewsletterplugin.com/documentation/multilanguage)
35
- * [GDPR ready](https://www.thenewsletterplugin.com/documentation/gdpr-compliancy)
36
- * **Multi-list targeting** with list combinations like all in, at least one, not in and so on
37
  * Customizable **subscription widget**, **page** or **custom form**
38
- * Wordpress User Registration **seamless integration**
39
  * **Single** And **Double Opt-In** plus privacy checkbox for EU laws compliance
40
  * **Subscribers lists** to fine-target your campaigns
41
  * PHP API and REST API for coders and integrations
42
  * SMTP-Ready
43
  * Customizable Themes
44
- * All messages are **fully translatable** from administration panels (no .po/.mo file to edit)
45
  * **Status panel** to check your blog mailing capability and configuration
46
- * **Compatible with every SMTP plugin**: Postman, WP Mail SMTP, Easy WP SMTP, Easy SMTP Mail, WP Mail Bank, ...
47
  * **Subscribers import** from file
48
  * Newsletter with Html and Text message versions
49
 
50
- = GDPR =
51
-
52
- The Newsletter Plugin provides all the technical tools needed to achieve GDPR compliancy and
53
- we're continuously working to improve them and to give support even for specific
54
- use cases.
55
-
56
- The plugin does not collect users' own subscribers data, nor it has any access to those data:
57
- hence, we are not a data processor, so a data processing agreement is not needed.
58
-
59
- Anyway if you configure the plugin to use external services (usually an external mail
60
- delivery service) you should check with that service if some sort of agreement is required.
61
-
62
- = Integration with WordPress registration =
63
 
64
- * Newsletter subscription check box on standard WordPress registration form
65
- * Auto confirmation on first login
66
- * Imports already registered users
67
 
68
  = Free Addons =
69
 
70
- Find and install them from the Addons panel in your blog.
71
 
72
  * [WP Registration Integration](https://www.thenewsletterplugin.com/documentation/wpusers-extension) - connects the WordPress standard and custom registration with Newsletter subscription. Optionally imports all registered users as subscribers.
73
  * [Archive](https://www.thenewsletterplugin.com/documentation/archive-extension) - creates a simple blog page which lists all your sent newsletters
74
  * [Locked Content](https://www.thenewsletterplugin.com/documentation/locked-content-extension) - open up your premium content only after subscription
75
  * [Newsletter REST API](https://www.thenewsletterplugin.com/developers/dev-newsletter-api) - adds a tier of REST api to integrate with the Newsletter core services
 
 
 
76
 
77
  = Professional Addons =
78
 
79
- Need *more power*? Feel *something's missing*? The Newsletter Plugin features can be easily extended through
80
- our **premium, professional Addons**! Let us introduce just two of them : )
81
 
82
- * [Reports](https://www.thenewsletterplugin.com/reports) - improves the internal statistics collection system and provides better reports of data collected for each sent email. And retargeting. Neat.
83
- * [Automated](https://www.thenewsletterplugin.com/automated) - generates and sends your newsletters using your blog last posts, even custom ones like events or products. Just sit and watch!
84
- * [Autoresponder](https://www.thenewsletterplugin.com/autorespoder) - creates email series to follow up your subscribers
85
  * [WooCommerce Integration](https://www.thenewsletterplugin.com/woocommerce) - subscribe customers to a mailing list and generate product newletters.
 
 
 
 
86
  * [Amazon SES and other mail providers integration](https://www.thenewsletterplugin.com/integrations) - seamlessly integrate Amazon SES and other email service providers with The Newsletter Plugin. Hassle-free.
87
  * [Contact Form 7 Integration](https://www.thenewsletterplugin.com/documentation/contact-form-7-extension) - integrate the subscription on Contact Form 7 forms
88
  * [Ninja Forms Integration](https://www.thenewsletterplugin.com/documentation/ninjaforms-extension) - integrate the subscription on Ninja Forms
89
  * [WP Forms Integration](https://www.thenewsletterplugin.com/documentation/wpforms-extension) - integrate the subscription on WP Forms
 
90
  * [Google Analytics](https://www.thenewsletterplugin.com/google-analytics) - track newsletter links with Google UTM tracking paramaters
91
  * [Subscribe on Comment](https://www.thenewsletterplugin.com/documentation/comments-extension) - adds the subscription option to your blog comment form
92
- * Extended Composer Blocks - adds new blocks to the composer
93
  * [Geolocation](https://www.thenewsletterplugin.com/documentation/geolocation-extension) - adds geolocation capability to target subscribers by location
94
 
 
 
 
 
 
 
95
  = Support =
96
 
97
  We provide support for our plugin on [Wordpress.org forums](https://wordpress.org/support/plugin/newsletter) and through our [official forum](https://www.thenewsletterplugin.com/forums).
@@ -100,15 +87,9 @@ Premium Users with an active license have access to one-to-one support via our [
100
 
101
  = Follow Us =
102
 
103
- * **Our Official Website** - https://www.thenewsletterplugin.com/
104
- * **Our Facebook Page** - https://www.facebook.com/thenewsletterplugin
105
- * **Our Twitter Account** - https://twitter.com/newsletterwp
106
-
107
- == Installation ==
108
-
109
- 1. Put the plug-in folder into [wordpress_dir]/wp-content/plugins/
110
- 2. Go into the WordPress admin interface and activate the plugin
111
- 3. Optional: go to the options page and configure the plugin
112
 
113
  == Frequently Asked Questions ==
114
 
@@ -121,12 +102,18 @@ Thank you, The Newsletter Team
121
 
122
  == Screenshots ==
123
 
124
- 1. The plugin dashboard
125
- 2. The responsive email Drag & Drop composer
126
  3. The Reports extension
127
 
128
  == Changelog ==
129
 
 
 
 
 
 
 
130
  = 6.0.6 =
131
 
132
  * Fixed the textual part saving
1
  === Newsletter ===
2
+ Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
3
  Requires at least: 3.4.0
4
  Tested up to: 5.2.1
5
+ Stable tag: 6.0.7
6
  Contributors: satollo,webagile,michael-travan
7
 
8
  Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
9
 
10
  == Description ==
11
 
12
+ Newsletter is a **real newsletter and email marketing system** for your WordPress blog: perfect for list building, you can easily create, send and track e-mails, headache-free. It just works out of box!
 
 
 
 
 
 
13
 
14
  = Discover a completely rewritten composer =
15
 
16
+ We redesigned our drag and drop composer to make your campaign creation even easier. Try it!
 
17
 
18
  = Main Features =
19
 
20
+ * **Easy-to-use Drag and drop composer** to build responsive newsletters
21
+ * **Unlimited subscribers** with statistics
22
  * **Unlimited newsletters** with tracking
23
  * **Subscription spam check** with domain/ip black lists, Akismet, captcha
24
  * **Delivery speed** fine control (from 12 emails per hour to as much as your blog can manage)
25
+ * [WPML ready](https://www.thenewsletterplugin.com/documentation/multilanguage), [Polylang ready](https://www.thenewsletterplugin.com/documentation/multilanguage), [Translatepress ready](https://www.thenewsletterplugin.com/documentation/multilanguage)
26
+ * All messages are **fully translatable** from administration panels (no .po/.mo file to edit)
27
+ * [GDPR ready](https://www.thenewsletterplugin.com/documentation/gdpr-compliancy)
28
+ * **Advanced targeting** with lists combinations like all in, at least one, not in and so on
 
 
29
  * Customizable **subscription widget**, **page** or **custom form**
30
+ * Wordpress Users registration **seamless integration**
31
  * **Single** And **Double Opt-In** plus privacy checkbox for EU laws compliance
32
  * **Subscribers lists** to fine-target your campaigns
33
  * PHP API and REST API for coders and integrations
34
  * SMTP-Ready
35
  * Customizable Themes
 
36
  * **Status panel** to check your blog mailing capability and configuration
37
+ * **Compatible with every SMTP plugin**: Post SMTP (aka Postman), WP Mail SMTP, Easy WP SMTP, Easy SMTP Mail, WP Mail Bank, ...
38
  * **Subscribers import** from file
39
  * Newsletter with Html and Text message versions
40
 
41
+ = Find Us =
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
+ Newsletter is a continuously evolving plugin. Stay tuned following us on [Facebook](https://www.facebook.com/thenewsletterplugin/) or [our site](https://www.thenewsletterplugin.com/).
 
 
44
 
45
  = Free Addons =
46
 
47
+ Improve The Newsletter Plugin with these free addons:
48
 
49
  * [WP Registration Integration](https://www.thenewsletterplugin.com/documentation/wpusers-extension) - connects the WordPress standard and custom registration with Newsletter subscription. Optionally imports all registered users as subscribers.
50
  * [Archive](https://www.thenewsletterplugin.com/documentation/archive-extension) - creates a simple blog page which lists all your sent newsletters
51
  * [Locked Content](https://www.thenewsletterplugin.com/documentation/locked-content-extension) - open up your premium content only after subscription
52
  * [Newsletter REST API](https://www.thenewsletterplugin.com/developers/dev-newsletter-api) - adds a tier of REST api to integrate with the Newsletter core services
53
+ * BuddyPress integration - subscription opt-in inside BuddyPress signup form
54
+
55
+ (*easily add them from our [Addons panel](https://www.thenewsletterplugin.com/documentation/install-extensions)*)
56
 
57
  = Professional Addons =
58
 
59
+ Need *more power*? Feel *something's missing*? The Newsletter Plugin features can be easily extended through our **premium, professional Addons**! Let us introduce just two of them : )
 
60
 
61
+ * Extended Composer Blocks - adds new blocks to the drag & drop composer
 
 
62
  * [WooCommerce Integration](https://www.thenewsletterplugin.com/woocommerce) - subscribe customers to a mailing list and generate product newletters.
63
+ * [Reports](https://www.thenewsletterplugin.com/reports) - improves the internal statistics collection system and provides better reports of data collected for each sent email. And retargeting. Neat.
64
+ * [Automated](https://www.thenewsletterplugin.com/automated) - generates and sends your newsletters using your blog last posts, even custom ones like events or products. Just sit and watch!
65
+ * [Autoresponder](https://www.thenewsletterplugin.com/autoresponder) - creates email series to follow up your subscribers
66
+ * [Leads](https://www.thenewsletterplugin.com/leads) adds a fancy subscription popup box or a fixed bar to your website that will boost your conversion rate
67
  * [Amazon SES and other mail providers integration](https://www.thenewsletterplugin.com/integrations) - seamlessly integrate Amazon SES and other email service providers with The Newsletter Plugin. Hassle-free.
68
  * [Contact Form 7 Integration](https://www.thenewsletterplugin.com/documentation/contact-form-7-extension) - integrate the subscription on Contact Form 7 forms
69
  * [Ninja Forms Integration](https://www.thenewsletterplugin.com/documentation/ninjaforms-extension) - integrate the subscription on Ninja Forms
70
  * [WP Forms Integration](https://www.thenewsletterplugin.com/documentation/wpforms-extension) - integrate the subscription on WP Forms
71
+ * Events Manager and The Events Calendar (By Modern Tribe) integrations - easily add events to your newsletters
72
  * [Google Analytics](https://www.thenewsletterplugin.com/google-analytics) - track newsletter links with Google UTM tracking paramaters
73
  * [Subscribe on Comment](https://www.thenewsletterplugin.com/documentation/comments-extension) - adds the subscription option to your blog comment form
 
74
  * [Geolocation](https://www.thenewsletterplugin.com/documentation/geolocation-extension) - adds geolocation capability to target subscribers by location
75
 
76
+ = GDPR =
77
+
78
+ The Newsletter Plugin provides all the technical tools needed to achieve GDPR compliancy and we're continuously working to improve them and to give support even for specific use cases.
79
+ The plugin does not collect users' own subscribers data, nor it has any access to those data: hence, we are not a data processor, so a data processing agreement is not needed.
80
+ Anyway if you configure the plugin to use external services (usually an external mail delivery service) you should check with that service if some sort of agreement is required.
81
+
82
  = Support =
83
 
84
  We provide support for our plugin on [Wordpress.org forums](https://wordpress.org/support/plugin/newsletter) and through our [official forum](https://www.thenewsletterplugin.com/forums).
87
 
88
  = Follow Us =
89
 
90
+ * **Our Official Website** - [https://www.thenewsletterplugin.com/](https://www.thenewsletterplugin.com/)
91
+ * **Our Facebook Page** - [https://www.facebook.com/thenewsletterplugin](https://www.facebook.com/thenewsletterplugin)
92
+ * **Our Twitter Account** - [https://twitter.com/newsletterwp](https://twitter.com/newsletterwp)
 
 
 
 
 
 
93
 
94
  == Frequently Asked Questions ==
95
 
102
 
103
  == Screenshots ==
104
 
105
+ 1. The responsive email Drag & Drop composer
106
+ 2. The plugin dashboard
107
  3. The Reports extension
108
 
109
  == Changelog ==
110
 
111
+ = 6.0.7 =
112
+
113
+ * Fixed the wrong edit mode of duplicated newsletters
114
+ * Fixed the alignment of small images on composer
115
+ * Added addons update notice on status panel
116
+
117
  = 6.0.6 =
118
 
119
  * Fixed the textual part saving