Skip to content

Commit 0978477

Browse files
authored
Release
1 parent 6c0d065 commit 0978477

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

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

3-
## Unreleased
3+
## 1.8.1 - July 11, 2025
44
### Documentation Workflow Updates
5-
- **Version Control**: Removed `changelog.txt` file to streamline documentation; maintaining only `readme.txt` (WordPress.org) and `CHANGELOG.md` (developers)
5+
- **Version Control**: Removed `changelog.txt` file to streamline documentation; maintaining only `readme.txt` (WordPress.org) and `CHANGELOG.md` (for developers).
66

77
### Code Standards Compliance
8-
- **Indentation**: Fixed tab indentation violations in `sse_handle_secure_download()` and `sse_handle_export_deletion()` functions to use spaces as required by WordPress coding standards
8+
- **Indentation**: Fixed tab indentation violations in `sse_handle_secure_download()` and `sse_handle_export_deletion()` functions to use spaces as required by WordPress coding standards.
99

10-
## 1.8.0 - June 26, 2025
10+
## 1.8.1 - June 26, 2025
1111
### WordPress Standards Compliance Enhancement
1212
- **WordPress Baseline**: Updated minimum WordPress version requirement from 6.0 to 6.5+ for better compatibility
1313
- **Internationalization**: Added complete i18n support with `load_plugin_textdomain()` and `.pot` file generation

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.0-orange.svg?logo=github)](https://github.com/EngineScript/Simple-WP-Site-Exporter/releases/latest/download/simple-wp-site-exporter-1.8.0.zip)
9+
[![Version](https://img.shields.io/badge/Version-1.8.1-orange.svg?logo=github)](https://github.com/EngineScript/Simple-WP-Site-Exporter/releases/latest/download/simple-wp-site-exporter-1.8.1.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.8.0\n"
6+
"Project-Id-Version: Simple WP Site Exporter 1.8.1\n"
77
"Report-Msgid-Bugs-To: https://github.com/EngineScript/Simple-WP-Site-Exporter/issues\n"
88
"POT-Creation-Date: 2025-06-26 12:00+0000\n"
99
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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.0
6+
Stable tag: 1.8.1
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.0
5+
* Version: 1.8.1
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.0' );
20+
define( 'ES_WP_SITE_EXPORTER_VERSION', '1.8.1' );
2121
}
2222

2323
/**

0 commit comments

Comments
 (0)