prepare release of v1.3.0 (#31)
17
README.md
@ -6,14 +6,14 @@
|
|||||||
|
|
||||||
# Liveticker (by stklcode)
|
# Liveticker (by stklcode)
|
||||||
|
|
||||||
* Contributors: Stefan Kalscheuer
|
* Contributors: stklcode
|
||||||
* Tags: liveticker, feed, rss
|
* Tags: liveticker, feed, rss
|
||||||
* Requires at least: 5.0
|
* Requires at least: 5.0
|
||||||
* Tested up to: 6.6
|
* Tested up to: 6.7
|
||||||
* Requires PHP: 7.2
|
* Requires PHP: 7.2
|
||||||
* Stable tag: 1.2.3
|
* Stable tag: 1.3.0
|
||||||
* License: GPLv2 or later
|
* License: GPLv2 or later
|
||||||
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
|
||||||
A simple ajaxified liveticker plugin for WordPress.
|
A simple ajaxified liveticker plugin for WordPress.
|
||||||
|
|
||||||
@ -42,8 +42,8 @@ Alternatively you can also use _Copmposer_.
|
|||||||
|
|
||||||
### Requirements ###
|
### Requirements ###
|
||||||
|
|
||||||
* PHP 5.6 or above
|
* PHP 7.2 or above
|
||||||
* WordPress 4.7 or above
|
* WordPress 5.0 or above
|
||||||
|
|
||||||
## Frequently asked questions
|
## Frequently asked questions
|
||||||
|
|
||||||
@ -80,6 +80,11 @@ caching time of 12 hours obviously makes no sense.
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### 1.3.0 - 2025-03-10
|
||||||
|
|
||||||
|
* Requires at least PHP 7.2 and WordPress 5.0
|
||||||
|
* Sorting direction can now be changed for liveticker blocks
|
||||||
|
|
||||||
### 1.2.3 - 2025-02-04
|
### 1.2.3 - 2025-02-04
|
||||||
|
|
||||||
* Escape ticker ID in shortcode output
|
* Escape ticker ID in shortcode output
|
||||||
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 26 KiB |
@ -26,7 +26,7 @@ class SCLiveticker {
|
|||||||
*
|
*
|
||||||
* @var string OPTIONS
|
* @var string OPTIONS
|
||||||
*/
|
*/
|
||||||
const VERSION = '1.2.3';
|
const VERSION = '1.3.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Options tag.
|
* Options tag.
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with Liveticker (by stklcode). If not, see http://www.gnu.org/licenses/gpl-2.0.html.
|
* along with Liveticker (by stklcode). If not, see https://www.gnu.org/licenses/gpl-2.0.html.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Exit if accessed directly.
|
// Exit if accessed directly.
|
||||||
|