Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
wordpress: '5.9'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Install SVN
run: |
if ! command -v svn > /dev/null; then
Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* Contributors: stklcode
* Tags: liveticker, feed, rss
* Requires at least: 5.0
* Tested up to: 6.7
* Tested up to: 6.8
* Requires PHP: 7.2
* Stable tag: 1.3.0
* Stable tag: 1.3.1
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -80,6 +80,13 @@ caching time of 12 hours obviously makes no sense.

## Changelog

### 1.3.1 - 2025-08-16

* Textdomain is no longer loaded explicitly
* Internal filter and action hooks consolidated
* Minor internal code fixes
* Tested with WP 6.8

### 1.3.0 - 2025-03-10

* Requires at least PHP 7.2 and WordPress 5.0
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stklcode/stklcode-liveticker",
"version": "1.3.0",
"version": "1.3.1",
"description": "A simple Liveticker for Wordpress.",
"keywords": [
"wordpress",
Expand Down
2 changes: 1 addition & 1 deletion includes/class-scliveticker.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @var string OPTIONS
*/
const VERSION = '1.3.0';
const VERSION = '1.3.1';

/**
* Options tag.
Expand Down Expand Up @@ -205,7 +205,7 @@
$args = array(
'post_type' => 'scliveticker_tick',
'posts_per_page' => $limit,
'tax_query' => array(

Check warning on line 208 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.

Check warning on line 208 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.

Check warning on line 208 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.
array(
'taxonomy' => 'scliveticker_ticker',
'field' => 'slug',
Expand Down Expand Up @@ -331,7 +331,7 @@
$query_args = array(
'post_type' => 'scliveticker_tick',
'posts_per_page' => $limit,
'tax_query' => array(

Check warning on line 334 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.

Check warning on line 334 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.

Check warning on line 334 in includes/class-scliveticker.php

View workflow job for this annotation

GitHub Actions / check

WordPress.DB.SlowDBQuery.slow_db_query_tax_query

Detected usage of tax_query, possible slow query.
array(
'taxonomy' => 'scliveticker_ticker',
'field' => 'slug',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stklcode-liveticker",
"version": "1.3.0",
"version": "1.3.1",
"description": "A simple Liveticker for Wordpress.",
"author": "Stefan Kalscheuer",
"license": "GPL-2.0+",
Expand Down
2 changes: 1 addition & 1 deletion stklcode-liveticker.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @wordpress-plugin
* Plugin Name: Liveticker (by stklcode)
* Description: A simple Liveticker for WordPress.
* Version: 1.3.0
* Version: 1.3.1
* Author: Stefan Kalscheuer
* Author URI: https://www.stklcode.de
* Text Domain: stklcode-liveticker
Expand Down
Loading