release: v1.2.2

This commit is contained in:
noschmarrn 2026-04-13 11:14:12 +00:00
parent 5e59e5fa6e
commit 673d131a7c
5 changed files with 12 additions and 5 deletions

View file

@ -3,7 +3,7 @@
![PHP 8.0+](https://img.shields.io/badge/PHP-8.0%2B-blue)
![WordPress 6.0+](https://img.shields.io/badge/WordPress-6.0%2B-21759b)
![License: GPL-2.0](https://img.shields.io/badge/License-GPL--2.0--or--later-green)
![Version](https://img.shields.io/badge/Version-1.2.1-orange)
![Version](https://img.shields.io/badge/Version-1.2.2-orange)
![Tests](https://img.shields.io/badge/Tests-158%20passing-brightgreen)
🇬🇧 [English version → README.md](README.md)

View file

@ -3,7 +3,7 @@
![PHP 8.0+](https://img.shields.io/badge/PHP-8.0%2B-blue)
![WordPress 6.0+](https://img.shields.io/badge/WordPress-6.0%2B-21759b)
![License: GPL-2.0](https://img.shields.io/badge/License-GPL--2.0--or--later-green)
![Version](https://img.shields.io/badge/Version-1.2.1-orange)
![Version](https://img.shields.io/badge/Version-1.2.2-orange)
![Tests](https://img.shields.io/badge/Tests-158%20passing-brightgreen)
🇩🇪 [Deutsche Version → README.de.md](README.de.md)

View file

@ -3,7 +3,7 @@
* Plugin Name: BreznGEO
* Plugin URI: https://brezngeo.com/
* Description: AI-powered meta descriptions, GEO structured data, and llms.txt for WordPress.
* Version: 1.2.1
* Version: 1.2.2
* Requires at least: 6.0
* Requires PHP: 8.0
* Author: NoSchmarrn.dev
@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) {
exit;
}
define( 'BREZNGEO_VERSION', '1.2.1' );
define( 'BREZNGEO_VERSION', '1.2.2' );
define( 'BREZNGEO_FILE', __FILE__ );
define( 'BREZNGEO_DIR', plugin_dir_path( __FILE__ ) );
define( 'BREZNGEO_URL', plugin_dir_url( __FILE__ ) );

View file

@ -16,6 +16,7 @@ class Core {
}
public function init(): void {
load_plugin_textdomain( 'brezngeo', false, dirname( plugin_basename( BREZNGEO_FILE ) ) . '/languages' );
$this->load_dependencies();
$this->register_hooks();
}

View file

@ -3,7 +3,7 @@ Contributors: mifupadev
Tags: seo, ai, meta description, schema, llms.txt
Requires at least: 6.0
Tested up to: 6.9
Stable tag: 1.2.1
Stable tag: 1.2.2
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@ -224,6 +224,9 @@ No data is transmitted during normal page loads or to visitors.
== Changelog ==
= 1.2.2 =
* i18n: Added explicit load_plugin_textdomain() call for reliable translation loading on ClassicPress and other WordPress derivatives.
= 1.2.1 =
* Security: Added ABSPATH direct access guards to all PHP class files.
* i18n: Complete German translation — all 394 UI strings now translated.
@ -265,6 +268,9 @@ No data is transmitted during normal page loads or to visitors.
== Upgrade Notice ==
= 1.2.2 =
Fixes translation loading on ClassicPress and other WordPress derivatives.
= 1.2.1 =
Adds ABSPATH security guards to all files and completes German translation.