3 Commits

Author SHA1 Message Date
aa1a49c575 bump version to 1.2.1
All checks were successful
continuous-integration/drone/push Build is passing
2022-02-01 18:29:29 +01:00
b7c236376b fix: cast string to Number when setting attribute (#21)
Co-authored-by: zishan <zishan.khan@roularta.be>
2022-02-01 18:23:37 +01:00
e3a976fe7a declare compatibility with WordPress 5.9
All checks were successful
continuous-integration/drone/push Build is passing
2022-01-26 18:05:23 +01:00
6 changed files with 11 additions and 7 deletions

View File

@ -9,9 +9,9 @@
* Contributors: Stefan Kalscheuer * Contributors: Stefan Kalscheuer
* Tags: liveticker, feed, rss * Tags: liveticker, feed, rss
* Requires at least: 4.7 * Requires at least: 4.7
* Tested up to: 5.8 * Tested up to: 5.9
* Requires PHP: 5.6 * Requires PHP: 5.6
* Stable tag: 1.2.0 * Stable tag: 1.2.1
* License: GPLv2 or later * License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html * License URI: http://www.gnu.org/licenses/gpl-2.0.html
@ -80,6 +80,10 @@ caching time of 12 hours obviously makes no sense.
## Changelog ## Changelog
### 1.2.1 - 2022-02-01
* Fix issue with limit in Gutenberg block.
### 1.2.0 - 2022-01-23 ### 1.2.0 - 2022-01-23
* Requires WordPress 4.7 or above * Requires WordPress 4.7 or above

View File

@ -1,6 +1,6 @@
{ {
"name": "stklcode/stklcode-liveticker", "name": "stklcode/stklcode-liveticker",
"version": "1.2.0", "version": "1.2.1",
"description": "A simple Liveticker for Wordpress.", "description": "A simple Liveticker for Wordpress.",
"keywords": [ "keywords": [
"wordpress", "wordpress",

View File

@ -26,7 +26,7 @@ class SCLiveticker {
* *
* @var string OPTIONS * @var string OPTIONS
*/ */
const VERSION = '1.2.0'; const VERSION = '1.2.1';
/** /**
* Options tag. * Options tag.

View File

@ -1,6 +1,6 @@
{ {
"name": "stklcode-liveticker", "name": "stklcode-liveticker",
"version": "1.2.0", "version": "1.2.1",
"description": "A simple Liveticker for Wordpress.", "description": "A simple Liveticker for Wordpress.",
"author": "Stefan Kalscheuer", "author": "Stefan Kalscheuer",
"license": "GPL-2.0+", "license": "GPL-2.0+",

View File

@ -152,7 +152,7 @@
disabled: props.attributes.unlimited, disabled: props.attributes.unlimited,
value: props.attributes.limit, value: props.attributes.limit,
onChange: function( val ) { onChange: function( val ) {
props.setAttributes( { limit: val } ); props.setAttributes( { limit: Number( val ) } );
}, },
} }
), ),

View File

@ -9,7 +9,7 @@
* @wordpress-plugin * @wordpress-plugin
* Plugin Name: Liveticker (by stklcode) * Plugin Name: Liveticker (by stklcode)
* Description: A simple Liveticker for WordPress. * Description: A simple Liveticker for WordPress.
* Version: 1.2.0 * Version: 1.2.1
* Author: Stefan Kalscheuer * Author: Stefan Kalscheuer
* Author URI: https://www.stklcode.de * Author URI: https://www.stklcode.de
* Text Domain: stklcode-liveticker * Text Domain: stklcode-liveticker