Skip to content

Commit f5f26f6

Browse files
committed
add release notes to readme file
1 parent 0af33e4 commit f5f26f6

5 files changed

+20
-8
lines changed

classes/class-generator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ private static function draw_text( $poster, $layer, &$boundary = array() ) {
391391
/**
392392
* Set empty boundary list to reset boundary for empty layers.
393393
*
394-
* @since 3.0.0
394+
* @since 3.0
395395
*
396396
* @param array $args List of common layer args.
397397
*/

classes/class-snippets.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public static function get_snippets() {
8181
/**
8282
* Filters list of plugin snippets names.
8383
*
84-
* @since 3.0.0
84+
* @since 3.0
8585
*
8686
* @param array $namess List of snippets names.
8787
*/

classes/class-widget.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ public static function autogenerate_poster( $post_id, $post, $update ) {
609609
/**
610610
* Filters fieldset before autogeneration.
611611
*
612-
* @since 3.0.0
612+
* @since 3.0
613613
*
614614
* @param array $fieldset Prepared fieldset data.
615615
* @param string $index Template index.

gulpfile.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ gulp.task( 'styles', ( done ) => {
1919
.pipe(
2020
sassGlob( {
2121
allowEmpty: true,
22-
} ),
22+
} )
2323
)
2424
.pipe(
2525
sass( {
2626
errLogToConsole: true,
27-
} ),
27+
} )
2828
)
2929
.pipe( prefix() )
3030
.pipe( gulp.dest( 'assets/styles/' ) );
@@ -61,13 +61,13 @@ gulp.task( 'scripts', ( done ) => {
6161
],
6262
},
6363
},
64-
} ),
64+
} )
6565
)
6666
.pipe(
6767
rename( ( file ) => {
6868
file.basename = file.basename;
6969
file.extname = '.js';
70-
} ),
70+
} )
7171
)
7272
.pipe( gulp.dest( 'assets/scripts/' ) );
7373

readme.txt

+13-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://wpset.org/about/
44
Tags: social image, sharing image, og image, twitter image, facebook, twitter, telegram, vk.com, ok.ru
55
Requires at least: 5.3
66
Tested up to: 6.4
7-
Stable tag: 2.0.17
7+
Stable tag: 3.0
88
Requires PHP: 5.5
99
License: GPLv2 or later
1010

@@ -30,6 +30,18 @@ Read more on the [plugin page](https://wpset.org/sharing-image/#premium).
3030

3131
== Changelog ==
3232

33+
= 3.0 =
34+
* Updated Poster Editor library
35+
* Redesigned template settings page
36+
* Added new layer settings
37+
* Redesigned template auto-generation
38+
* Added import and export of templates
39+
* Added demo template
40+
* Added template cloning
41+
* Changed the approach to meta tags output
42+
* Added Gutenberg widget
43+
* See the list of updated hooks on the plugin page: https://wpset.org/sharing-image/hooks/
44+
3345
= 2.0.17 =
3446
* Fix missing translation handler in settings editor
3547
* Fix bug with redirect message in settings class

0 commit comments

Comments
 (0)