Skip to content

Commit ad5b6ed

Browse files
authored
Release
1 parent c491489 commit ad5b6ed

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog for Simple WP Site Exporter
22

3-
## Unreleased
3+
## 1.9.2 - February 28, 2026
44

55
### Critical Bug Fixes
66

GEMINI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This is a secure WordPress site export plugin that creates complete site backups
77
## Plugin Details
88

99
- **Name:** Simple WP Site Exporter
10-
- **Version:** 1.9.1
10+
- **Version:** 1.9.2
1111
- **WordPress Compatibility:** 6.5+
1212
- **PHP Compatibility:** 7.4+
1313
- **License:** GPL-3.0-or-later

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![PHP Compatible](https://img.shields.io/badge/PHP-7.4%2B-purple.svg?logo=php)](https://www.php.net/)
77

88
## Current Version
9-
[![Version](https://img.shields.io/badge/Version-1.9.1-orange.svg?logo=github)](https://github.com/EngineScript/simple-wp-site-exporter/releases/latest/download/simple-wp-site-exporter-1.9.1.zip)
9+
[![Version](https://img.shields.io/badge/Version-1.9.2-orange.svg?logo=github)](https://github.com/EngineScript/simple-wp-site-exporter/releases/latest/download/simple-wp-site-exporter-1.9.2.zip)
1010

1111
## Description
1212
A WordPress plugin that exports your entire site, including files and database, as a secure, downloadable ZIP archive.

languages/simple-wp-site-exporter.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file is distributed under the same license as the Simple WP Site Exporter plugin.
44
msgid ""
55
msgstr ""
6-
"Project-Id-Version: Simple WP Site Exporter 1.9.1\n"
6+
"Project-Id-Version: Simple WP Site Exporter 1.9.2\n"
77
"Report-Msgid-Bugs-To: https://github.com/EngineScript/simple-wp-site-exporter/issues\n"
88
"POT-Creation-Date: 2025-09-29 12:00+0000\n"
99
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: enginescript
33
Tags: backup, export, migration, site export, database export
44
Requires at least: 6.5
55
Tested up to: 6.9
6-
Stable tag: 1.9.1
6+
Stable tag: 1.9.2
77
Requires PHP: 7.4
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -89,7 +89,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
8989

9090
== Changelog ==
9191

92-
= Unreleased =
92+
= 1.9.2 =
9393
* **Critical Fix**: Fixed bug where automatic export file cleanup via WordPress cron was completely broken due to referer validation blocking cron-triggered deletions
9494
* **Critical Fix**: Fixed deletion success/failure notices being lost after redirect
9595
* **Security**: Fixed 9 instances of double-escaped WP_Error messages that could display garbled text to users

simple-wp-site-exporter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Simple WP Site Exporter
44
* Description: Exports the site files and database as a zip archive.
5-
* Version: 1.9.1
5+
* Version: 1.9.2
66
* Author: EngineScript
77
* Requires at least: 6.5
88
* Tested up to: 6.9
@@ -22,7 +22,7 @@
2222

2323
// Define plugin version.
2424
if ( ! defined( 'ES_WP_SITE_EXPORTER_VERSION' ) ) {
25-
define( 'ES_WP_SITE_EXPORTER_VERSION', '1.9.1' );
25+
define( 'ES_WP_SITE_EXPORTER_VERSION', '1.9.2' );
2626
}
2727

2828
// Define allowed file extensions for export operations.

0 commit comments

Comments
 (0)