Skip to content

Commit abbc608

Browse files
authored
Release
1 parent 904894b commit abbc608

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog for Simple WP Site Exporter
22

33
## Unreleased
4+
5+
## 1.9.0 - August 23, 2025
46
### Performance Enhancements
57
- **Export Locking**: Implemented a lock using transients (`sse_export_lock`) to prevent concurrent export processes and reduce server load.
68
- **User-Configurable File Size Limits**: Added a user-friendly dropdown in the export form to exclude files larger than selected sizes (100MB, 500MB, 1GB, or no limit).

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.8.4-orange.svg?logo=github)](https://github.com/EngineScript/simple-wp-site-exporter/releases/latest/download/simple-wp-site-exporter-1.8.4.zip)
9+
[![Version](https://img.shields.io/badge/Version-1.9.0-orange.svg?logo=github)](https://github.com/EngineScript/simple-wp-site-exporter/releases/latest/download/simple-wp-site-exporter-1.9.0.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
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.8.4\n"
6+
"Project-Id-Version: Simple WP Site Exporter 1.9.0\n"
77
"Report-Msgid-Bugs-To: https://github.com/EngineScript/simple-wp-site-exporter/issues\n"
8-
"POT-Creation-Date: 2025-06-26 12:00+0000\n"
8+
"POT-Creation-Date: 2025-08-23 12:00+0000\n"
99
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1010
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1111
"Language-Team: LANGUAGE <LL@li.org>\n"

readme.txt

Lines changed: 1 addition & 1 deletion
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.8
6-
Stable tag: 1.8.4
6+
Stable tag: 1.9.0
77
Requires PHP: 7.4
88
License: GPLv3 or later
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html

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.8.4
5+
* Version: 1.9.0
66
* Author: EngineScript
77
* License: GPL v3 or later
88
* Text Domain: simple-wp-site-exporter
@@ -17,7 +17,7 @@
1717

1818
// Define plugin version.
1919
if ( ! defined( 'ES_WP_SITE_EXPORTER_VERSION' ) ) {
20-
define( 'ES_WP_SITE_EXPORTER_VERSION', '1.8.4' );
20+
define( 'ES_WP_SITE_EXPORTER_VERSION', '1.9.0' );
2121
}
2222

2323
// Define allowed file extensions for export operations.

0 commit comments

Comments
 (0)